init: Win32 demo

This commit is contained in:
2025-07-12 21:30:54 +08:00
commit 89a2b26650
9 changed files with 244 additions and 0 deletions

10
win32v1/win32v1.cpp Normal file
View File

@ -0,0 +1,10 @@
// WindowsProject1.cpp : 定义应用程序的入口点。
//
#include "framework.h"
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow) {
MessageBox(NULL, TEXT("Hello windows,are you there?"), TEXT("Hello world"), 1);
return 0;
}