I Have a mixed mode DLL containing a unmanaged part (DllMain) and a managed C++ part.
I calculate some folders in DllMain and I want to share/send data to the managed part when it is called.
I load DLL using LoadLibrary from another C++ program.
How can I share data or send data from DllMain to the managed part ?
I have to share/send some char*.
Thanks
You need to export a native function from the managed DLL, which native DLL can call upon. Or, you can have an interface (C++ interface), powered by a
CreateThisObject
or similar, which will instantiate the derived-class (of interface). This interface, as well as the creation-function will be given by managed DLL, and native DLL will simply use it as normal C++ class.Kind-of pseudo-code is presented below