Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   ctypes.com - unable to call function, read property (http://www.velocityreviews.com/forums/t329874-ctypes-com-unable-to-call-function-read-property.html)

Roman Yakovenko 04-14-2004 02:33 PM

ctypes.com - unable to call function, read property
 
Hi. I am trying for the first time to use ctypes.com module.
I have question: I have reference to object that implements IDiaSession interface.

IDiaSession._methods_ = IUnknown._methods_ + [
STDMETHOD(HRESULT, "_get_loadAddress", POINTER(c_ulonglong)),
STDMETHOD(HRESULT, "getEnumDebugStreams", POINTER(POINTER(IDiaEnumDebugStreams))),

I can't find out how I call _get_loadAddress and getEnumDebugStreams methods.
I know that in com "get_" is a prefix for property. What should I do ?
Also "_get_loadAddress" defined as property.


Thanks for help.

Roman



All times are GMT. The time now is 11:40 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57