Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
standalone
windows_entry_points
wmain.c
pretty
plain
permalink
blame
history
•
7 lines
•
148 B
1
#include <stdio.h>
2
#include <windows.h>
3
4
int wmain(int argc, wchar_t *argv[ ], wchar_t *envp[ ]) {
5
printf("hello from wmain\n");
6
return 0;
7
}