home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_12 / 2n12032a < prev    next >
Text File  |  1991-08-20  |  282b  |  13 lines

  1.  
  2. #include <windows.h>
  3.  
  4. int PASCAL WinMain( HANDLE hInstance, HANDLE hPrevInstance,
  5.         LPSTR lpszCmdLine, int nCmdShow )
  6.         {
  7.         MessageBox( NULL, "This is a simple "
  8.         "one line Windows program",
  9.         "Simple Window Program",
  10.         MB_OK | MB_ICONEXCLAMTION );
  11.         return( 0 );
  12.         }
  13.