Win32FrisrtApp

#include <windows.h>
#include <tchar.h>

int WINAPI WinMain(
	_In_ HINSTANCE hInstance,
	_In_opt_ HINSTANCE hPrevInstance,
	_In_ LPSTR     lpCmdLine,
	_In_ int       nCmdShow
) {
	MessageBox(NULL, _T("First_App"), _T("Title"), MB_OKCANCEL);
	return 0;
};

posted @ 2023-12-08 21:41  Arborblog  阅读(2)  评论(0编辑  收藏  举报