How to convert COM proxy-stub dll to type library ?
-
hi experts, i get a COM server registered (a proxy-stub dll where the interface in), but i don't know the definition of the interface. is it possible to convert the proxy-stub dll to a COM type library , so i can know the interface ? or are there other ways to know the interface ?
-
hi experts, i get a COM server registered (a proxy-stub dll where the interface in), but i don't know the definition of the interface. is it possible to convert the proxy-stub dll to a COM type library , so i can know the interface ? or are there other ways to know the interface ?
Have a look here, and at the following answer http://www.codeproject.com/Messages/3294656/Re-using-interface.aspx[^]
-
hi experts, i get a COM server registered (a proxy-stub dll where the interface in), but i don't know the definition of the interface. is it possible to convert the proxy-stub dll to a COM type library , so i can know the interface ? or are there other ways to know the interface ?
If you only want to view the interface definitions, you can use a tool called
OLE/COM Object Viewer
that comes along with Visual Studio. From this tool select the menu optionFile -> View TypeLib...
and point to the proxy-stub dll. But for this to work, the type library has to be packed into the DLL.«_Superman_» _I love work. It gives me something to do between weekends.