demoII2_2.cpp
上传用户:husern
上传日期:2018-01-20
资源大小:42486k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // DEMOII2_2.CPP - a simple message box
  2. #define WIN32_LEAN_AND_MEAN 
  3. #include <windows.h>        // the main windows headers 
  4. #include <windowsx.h>       // a lot of cool macros
  5. // main entry point for all windows programs
  6. int WINAPI WinMain(HINSTANCE hinstance,
  7.        HINSTANCE hprevinstance,
  8.        LPSTR lpcmdline,
  9.        int ncmdshow)
  10. {
  11. // call message box api with NULL for parent window handle
  12. MessageBox(NULL, "THERE CAN BE ONLY ONE!!!",
  13.                  "MY FIRST WINDOWS PROGRAM",
  14.                   MB_OK | MB_ICONEXCLAMATION);
  15. // exit program
  16. return(0);
  17. } // end WinMain