win32 merge
[tinycc.git] / win32 / examples / hello_dll.c
blobd7397587af199f18031700f5c09150607e511d5a
1 //+---------------------------------------------------------------------------
2 //
3 // HELLO_DLL.C - Windows DLL example - main application part
4 //
6 #include <windows.h>
8 void HelloWorld (void);
10 int WINAPI WinMain(
11 HINSTANCE hInstance,
12 HINSTANCE hPrevInstance,
13 LPSTR lpCmdLine,
14 int nCmdShow)
16 HelloWorld();
17 return 0;