Add my copyright for changes in arm-gen.c
[tinycc.git] / win32 / examples / hello_dll.c
blob7adba77ec58dfb852b59eeb0c8e85a82b7ea293d
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;