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

  1. #include <stdio.h>        // for prototypes ( printf... )
  2. #include "win32con.h"   // for WIN32sCON_AutoFinish
  3.  
  4. int    main( int argc, char *argv[], char *env[] )
  5. {
  6.     // the following line will close the console emulation automatically
  7.     // after the program finishes:
  8.     WIN32sCON_AutoFinish = 1;
  9.  
  10.     printf( "test06.cpp:\n" );
  11.     printf("This program will finish and close the console-emulation.\n" );
  12.     return( 0 );
  13. }