Callback from native to .net in CF2.0

  • Thread starter Thread starter Markus Forrer
  • Start date Start date
M

Markus Forrer

Is it possible in CF2.0 to create a callback from native code to the .net
application?

Thanks!
Markus
 
Which way? Do you want your managed app to use an unmanaged function
pointer for a callback, or you want your unmanaged app to call back into
your managed code? The first is available with
Marshal.GetFunctionPointerForDelegate, the second isn't directly available,
you'd have to put in a workaround.

--
Chris Tacke
Co-founder
OpenNETCF.org
Are you using the SDF? Let's do a case study.
Email us at d c s @ o p e n n e t c f . c o m
http://www.opennetcf.org/donate
 
Hi Chris

I need the second one! The unmanaged DLL should call back the managed app.

Thanks for your hints!
Markus
 
Back
Top