Hello,
Can any body give me the idea how to extract information from win 32 dll's.
e.g
class name
all methods which dll exports.
name of methods, parameter types(in,out) & return type of that method.
all variables (private,public,protected).
all data structures listed
we can do the same job from tlb file whichs generated from idl which stores all COM exposed interfaces,co-classes,records, enums and etc..
MS provided TypeLib for this purpose. but from DLL perspective can we do the same job as we can do from tlb using ITypeLib of MS?
What OLEView do with TLB files : parse them, extract every single info(e.g methods,parameter names,their nature in/out, all interfaces types dispinterfaces or simple interfaces, modules and records etc..)
Same information want to extract from win32 dll's. But as win dlls always not generate tlb file or idl file, so how does the way to go..?