This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / apps / tests / simple / simple.c
1 /*
2  * The simplest Windows program you will ever write.
3  *
4  * This source code is in the PUBLIC DOMAIN and has NO WARRANTY.
5  *
6  * Colin Peters <colinp at ma.kcom.ne.jp>, July 1, 2001.
7  */
8 #include <windows.h>
9
10 int STDCALL
11 WinMain (HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpCmd, int nShow)
12 {
13         MessageBox (NULL, "Hello, ReactOS!", "Hello", MB_OK);
14         return 0;
15 }