Newer
Older
UbixOS / contrib / tcc / win32 / examples / dll.c
@Christopher W. Olsen Christopher W. Olsen on 29 Jan 2020 313 bytes TinyCC
//+---------------------------------------------------------------------------
//
//  dll.c - Windows DLL example - dynamically linked part
//

#include <windows.h>
#define DLL_EXPORT __declspec(dllexport)

DLL_EXPORT void HelloWorld (void)
{
    MessageBox (0, "Hello World!", "From DLL", MB_ICONINFORMATION);
}