by Moose or Chuck » Jul 20, 2001 @ 3:39pm
Yep. WindowsCE uses C++ just like any other OS in the world. But you'll need a special compiler to build apps for the various processors.<br><br>Here you go, download this for free if you've got a phat pipe, or order it for 8$ s&h. Then you can get started. But the PocketPC doesn't have directX, only GAPI, which is quite different. And be sure to use UNICODE.<br><br>(ex: <br>MessageBox(NULL,"Message","TITLE",MB_CANCEL) is bad, it uses strings. On the PocketPC you'd have to write the code like this:<br>MessageBox(NULL,TEXT("Message" ),TEXT("TITLE" ),MB_CANCEL)<br>It's not really a nuissance, but you just have to remember that.)<br><br>Those two things, GAPI and UNICODE, are the only real differences, except some stripped down header files and less functions built in.<br><br>EDIT: Those miserable smilies!