configure: support DESTDIR for RPM packagers etc.
[tinycc.git] / win32 / examples / dll.c
blob4202e99ca138c24da0f1134e58dd5a4732420aca
1 //+---------------------------------------------------------------------------
2 //
3 // dll.c - Windows DLL example - dynamically linked part
4 //
6 #include <windows.h>
8 #define DLL_EXPORT __declspec(dllexport)
11 DLL_EXPORT void HelloWorld (void)
13 MessageBox (0, "Hello World!", "From DLL", MB_ICONINFORMATION);