tccpp: tcc_warning("extra tokens after directive")
[tinycc.git] / win32 / examples / dll.c
blob052a0564477ecfe4fcbe1088646d9c536271e4dc
1 //+---------------------------------------------------------------------------
2 //
3 // dll.c - Windows DLL example - dynamically linked part
4 //
6 #include <windows.h>
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);