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