Windows CE CONTENT |
Develop Your Own Console ApplicationsThe first thing is to get the source and library needed to compile a Consle Application. To make a new Console Application, create a new 'Win32
Application Project', be sure to check the platforms
'Win32 (WCE MIPS)' and 'Win32 (WCE SH)'. In your source code, you have to:
Here is the "Hello world!" sample source code: #include <conslib.h> #include <tchar.h> TCHAR AppName[] = TEXT("Hello") ; int Main( DWORD argc, LPTSTR argv[] ) { Cputs( TEXT("Hello World") ) ; return 0 ; } Take your time to look inside conslib.h and find all the functions you can use. Also see the 'mem.c' and 'cecalc.c' as examples. Site Maintained by Daniel A. Francesch e-mail: wce@geocities.com This page was last updated on February 03, 1998 This page hosted by Get your own Free Home Page |