Is there a data type in eVC++ that is the equivalent of __int64
? None of the aliases compile. And I cannot find any of the long types in Math.h
.
A third party library would also be acceptable.
"long long" is a synonym for "__int64" in VC++... maybe that works?
Assuming you are using EVC++ 4.0...
You'll first need to make sure you have the Pocket PC 2003 SDK installed. If you are on win mobile 5.0 and up and are still attempting to use EVC++4.0 I will fight you (Ron Burgundy). The PPC 2003 SDK can be found here.
After it's install, update the linker to find the newly installed SDK header files with the macro definition of LONGLONG. To do this:
Good luck!