Accessing MC++ objects from C++ dll

  • Thread starter Thread starter Daniel =?iso-8859-1?Q?Lidstr=F6m?=
  • Start date Start date
D

Daniel =?iso-8859-1?Q?Lidstr=F6m?=

Hi,

I've got a DLL compiled with managed extensions. Now I wish to access
objects created in this DLL from another DLL compiled without extensions.
How is that possible? I do not want to communicate between the dlls through
function calls. I want to be able to get a reference or a pointer to the
managed objects. Surely this must be possible?
 
No, it's not. The only possibility is through COM interop.

Willy.

PS. Please post C++/MC++ questions to -
microsoft.public.dotnet.languages.vc.
 
Back
Top