#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
PSTR szCmdLine,
int iCmdShow)
{
int i = MessageBox(NULL,
TEXT("我爱你"),
TEXT(""),
MB_OK | MB_DEFBUTTON1 | MB_ICONSTOP);
return 0;
}