aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/windows_entry_points/winmain.c
blob: c5c0de243489bf0d46433503781ff52ffbfb5628 (plain)
1
2
3
4
5
6
7
#include <windows.h>
#include <stdio.h>

int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PSTR cmdline, int cmdshow) {
    printf("hello from WinMain\n");
    return 0;
}