Thanks Jeff. I missed that windll was inside ctypes. Next question in my quest to open a process and read its memory: from win32.win32security import GetSecurityInfo, SetSecurityInfo
How do I get access to those in IronPython ? -Bye -Richard On Wed, Sep 22, 2010 at 10:54 AM, Jeff Hardy <[email protected]> wrote: > On Tue, Sep 21, 2010 at 9:59 PM, Richard Steventon <[email protected]> > wrote: >> I am trying to figure out how to read process memory in IronPython. >> In CPython, it would be windll.kernel32.ReadProcessMemory(). > > Hi Richard, > It's the same in IronPython: > > from ctypes import windll > windll.kernel32.ReadProcessMemory(...) > > Does that not work for some reason? > > - Jeff > _______________________________________________ > Users mailing list > [email protected] > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > _______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
