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