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