Unmanaged code for Window CE.NET 4.1

  • Thread starter Thread starter Chris Pair [Bentley Civil]
  • Start date Start date
C

Chris Pair [Bentley Civil]

I have a managed .net application for deployment on PPC and Windows CE.NET
4.1 Most of the code is managed C# but some code is unmanaged C++ code
compiled in EVC 3.0 targeted for Pocket PC 2002 ARM processor. Everything
works fine on the PPC. Will have to rebuild the unmanaged code so that it
will run on Windows CE.NET 4.1?

Thanks,

Chris
 
Depends on what the code does. If it uses any PPC-specific APIs (things
that required you to link with aygshell.lib, then there's a good chance it
won't work. If you just called normal Win32 APIs, then it probably will
(provided the processor is right, of course).

Paul T.
 
Thanks Paul,

The code just calls Win32 APIs, so I think I will be OK.

Chris
 
Back
Top