1 //+---------------------------------------------------------------------------
3 // dll.c - Windows DLL example - dynamically linked part
8 __declspec(dllexport
) const char *hello_data
= "(not set)";
10 __declspec(dllexport
) void hello_func (void)
12 MessageBox (0, hello_data
, "From DLL", MB_ICONINFORMATION
);