> Yes, they are and both COM DLL's...
>
[quoted text clipped - 28 lines]
> | Thanks,
> | - Manoj
Yes, they are regular DLL's that also expose some COM interfaces, that's
right.
The public COM interfaces are polished in the mscoree.idl, while the public
C style interfaces are in the mscorree.h file in the framework SDK. The
mscorwks.dll are not published, that means they are private and should
therefore not be used from user code.
Willy.
| Thanks a lot for the quick reply!
|
[quoted text clipped - 41 lines]
| > | Thanks,
| > | - Manoj
Huihong - 28 Feb 2006 19:37 GMT
You can take a look of all of the exports from mscoree.dll from my
deprotector source code. The sample code may help you understand more
about mscoree.dll, the COM interfaces is defined in
c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.tlb
The deprotector programs I provided replace the whole mscoree.dll, so
it hooks every functions inside mscoree.dll. so you can monitor which
methods are being invoked.
http://www.remotesoft.com/deprotector/ then click Source code
Willy Denoyette [MVP] - 28 Feb 2006 20:05 GMT
I don't need this, I'm having a source code license and I'm not interested
in non public and documented interfaces anyway. Also tlb files do not
necessarily represent accurately the COM interfaces of a COM server, the IDL
files do.
Willy.
| You can take a look of all of the exports from mscoree.dll from my
| deprotector source code. The sample code may help you understand more
[quoted text clipped - 6 lines]
|
| http://www.remotesoft.com/deprotector/ then click Source code
Manoj Agarwal - 01 Mar 2006 13:47 GMT
Thanks for the reply and the prompt help :)
> Yes, they are regular DLL's that also expose some COM interfaces, that's
> right.
[quoted text clipped - 56 lines]
> | > | Thanks,
> | > | - Manoj