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

  1. #include <windows.h>    // for Windows - stuff
  2. #include <stdio.h>        // for prototypes ( printf... )
  3. #include "win32con.h"    // for WIN32sCON_InitConsole()
  4.  
  5. int PASCAL WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow )
  6. {
  7.     // you only have to include the following call
  8.     WIN32sCON_ForceConsoleInit();    // this is the same as _InitEasyWin() in 16bit
  9.     // now you can use stdio-routines to output to an extra window
  10.     printf( "debug-message\n" );
  11.  
  12.     MessageBox( NULL, "Hello", "test03.c", MB_OK );
  13.     return( 0 );
  14. }