Can you create CF binaries in Managed C++?

  • Thread starter Thread starter John Paulsson
  • Start date Start date
and I assume that makes it impossible to expose managed functions inside a
DLL for use by a native CE application?

(the plan was to expose the functionality inside a C# DLL, by creating a
managed C++ wrapper DLL for use by the Win32 CE application). On a PC, you
could do it that way, or through COM interoperability, which, isn't
supported by the CE framework either.

// John
 
Yup. Managed code cannot be hosted in/called by native code in either this
or the next CF version. CF 2.0 supports COM interop but again native code
will only be able to *call back* into managed code.

Cheers
Daniel
 
Bummer, well, thanks for your feedback Daniel. Guess I'll have to develop
the DLL in native C++ then if I want CERapiInvoke to be able to call my
exposed DLL functions.
 
Back
Top