testing-repository/cpp/MessageBox-test/main.cpp

16 lines
430 B
C++
Raw Normal View History

2020-10-23 12:03:48 +08:00
#include <windows.h>
#include <stdio.h>
/* The 'main' function of Win32 GUI programs: this is where execution starts */
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance, LPSTR lpCmdLine,
int nCmdShow)
{
char str[20];
int rel=640;
sprintf(str,"Xeinit LTS Version:5.2.%d",rel);
MessageBox(NULL,str,"hello",MB_OK|MB_ICONINFORMATION);
return 0;
}