summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/win32gui/app.cpp
blob: a875b28b69f394ba33d5be64980e905ac67ffdb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <windows.h>

int STDCALL
WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmd, int nShow)
{
        MessageBox (NULL, "Hello, Windows!", "Hello", MB_OK);
        return 0;
}