home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group20 / test.c < prev    next >
C/C++ Source or Header  |  1999-05-22  |  458b  |  21 lines

  1. /*
  2.  * This source code is in the PUBLIC DOMAIN and has NO WARRANTY.
  3.  *
  4.  * Colin Peters <colin@bird.fu.is.saga-u.ac.jp>, April 15, 1997.
  5.  */
  6.  
  7. #include <windows.h>
  8. #include <stdio.h>
  9.  
  10. int STDCALL
  11. WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmd, int nShow)
  12. {
  13.     char text[80];
  14.  
  15.     printf ("Enter message box text:");
  16.     fgets(text, 80, stdin);
  17.     MessageBox (NULL, text, "Test", MB_OK);
  18.     printf ("\nHello after message box.\n");
  19.     return 0;
  20. }
  21.