1#include <windows.h>
2#include <stdio.h>
3
4int APIENTRY wWinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PWSTR cmdline, int cmdshow) {
5    printf("hello from wWinMain\n");
6    return 0;
7}