Pocket PC 2003 custom setup.dll and processors

  • Thread starter Thread starter Walter
  • Start date Start date
W

Walter

Is this a correct statement?

PocketPC 2003 only supports ARM processors. So if you
need to create a custom setup.dll all you will need in
your .ini file will be the following section:

....
[DefaultInstall.ARMV4]
CopyFiles=Files.ARMV4
CESetupDLL=Setup.dll
....

You will not need to include any of the other ones:
[DefaultInstall.SH3]
....
[DefaultInstall.MIPS]
....
[DefaultInstall.X86]
....
[DefaultInstall.WCE420X86]
....


And the Setup.dll if compiled in eMbedded C++ will need
to be compiled for ARMV4 ...

Thanks
 
Well, yes, if you make it:
a) eVC 4.0 SP2
b) if this is a .NET CF application, you need to specify vsd_setup.dll
(available in the CompactFrameworkSDK\v1.0.5000\Windows
CE\wce400\<processor>
 
Back
Top