Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
windows_entry_points
wwinmain.c
pretty
plain
permalink
blame
history
•
7 lines
•
183 B
1
#include <windows.h>
2
#include <stdio.h>
3
4
int APIENTRY wWinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PWSTR cmdline, int cmdshow) {
5
printf("hello from wWinMain\n");
6
return 0;
7
}