0
0
mirror of https://git.sdf.org/deCloudflare/deCloudflare/ synced 2024-06-03 16:30:48 +00:00
deCloudflare/tool/PGListUtil/src/PGListUtil/PGListUtil.cpp

10 lines
301 B
C++

#include <windows.h>
#include "WindowMain.h"
#include "resource.h"
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) {
WindowMain::Init(hInstance);
DialogBox(hInstance, (LPTSTR)IDD_MAIN, NULL, (DLGPROC)(WindowMain::DlgProcMain));
return 0;
}