mirror of
https://github.com/frida/tinycc
synced 2024-11-24 16:49:44 +03:00
13 lines
313 B
C
13 lines
313 B
C
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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);
|
|
}
|