demoII2_2.cpp
资源名称:Source.rar [点击查看]
上传用户:husern
上传日期:2018-01-20
资源大小:42486k
文件大小:1k
源码类别:
游戏
开发平台:
Visual C++
- // DEMOII2_2.CPP - a simple message box
- #define WIN32_LEAN_AND_MEAN
- #include <windows.h> // the main windows headers
- #include <windowsx.h> // a lot of cool macros
- // main entry point for all windows programs
- int WINAPI WinMain(HINSTANCE hinstance,
- HINSTANCE hprevinstance,
- LPSTR lpcmdline,
- int ncmdshow)
- {
- // call message box api with NULL for parent window handle
- MessageBox(NULL, "THERE CAN BE ONLY ONE!!!",
- "MY FIRST WINDOWS PROGRAM",
- MB_OK | MB_ICONEXCLAMATION);
- // exit program
- return(0);
- } // end WinMain