zig/test/standalone/windows_entry_points/wmain.c

7 lines
No EOL
148 B
C

#include <stdio.h>
#include <windows.h>
int wmain(int argc, wchar_t *argv[ ], wchar_t *envp[ ]) {
printf("hello from wmain\n");
return 0;
}