1 //+---------------------------------------------------------------------------
3 // dll.c - Windows DLL example - dynamically linked part
7 #define DLL_EXPORT __declspec(dllexport)
9 DLL_EXPORT
void HelloWorld (void)
11 MessageBox (0, "Hello World!", "From DLL", MB_ICONINFORMATION
);