blob: a9f38099dba5d31cf63d48f4a0c4bcc4c76ad74d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <windows.h>
#include <stdio.h>
extern int wmain(int, WCHAR**);
int WINAPI
WinMain(HINSTANCE current, HINSTANCE prev, LPSTR cmdline, int showcmd)
{
return wmain(0, NULL);
}
|