c++ - managed dll in native code (via com) .is it in process or out process com server? -
i needed use managed dynamic linked library(c#) in native code(c++).i found solution here was. (http://support.microsoft.com/kb/828736).
but thing bothering me is..
1) managed dynamic linked libraries used in native code through com act in process com servers ? . if yes how can be?
2)if no, how can dynamic linked library act out process com server without being carried executable .
this in-proc configuration. it's not more "impossible" using p/invoke mechanism directly. when run regasm
makes necessary changes registry when client calls cocreateinstance()
com knows needs p/invoke functions corresponding .net assembly.
Comments
Post a Comment