home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / con_32 / test04.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-30  |  513 b   |  17 lines

  1. #include <windows.h>    // for Windows - stuff
  2. #include <stdio.h>        // for prototypes ( printf... )
  3. #include <iostreams.h>
  4. #include "win32con.h"    // for WIN32sCON_ForceConsoleInit()
  5.  
  6. int PASCAL WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow )
  7. {
  8.     // you only have to include the following call:
  9.     WIN32sCON_ForceConsoleInit();
  10.  
  11.     // after this you can use printf.. for outputting debug-messages
  12.     printf( "test04.cpp: printf from a Windows-program!\n" );
  13.     return( 0 );
  14. }
  15.  
  16.  
  17.