Getting Types in Win32 Dll
Posted
by Usman
on Stack Overflow
See other posts from Stack Overflow
or by Usman
Published on 2010-06-10T07:06:05Z
Indexed on
2010/06/10
7:32 UTC
Read the original article
Hit count: 640
Hello,
I want to know the types and details in a plain Win32DLL just like we can get in case of COM.In COM every thing embed inside idl and results in TLB, here we get every thing , MSFT exposes APIS by which we can extract types.
In case of Win32 I strongly needed types defined in it and all details of that type(e.g what are members in it and their types as well). Parsing PE file and looking up export table only gives the exported functions. I want all custom types(Win32 interfaces,classes and members details with types) defined in it.
How?
Regards Usman
© Stack Overflow or respective owner