main.c
#include <stdio.h> #include <stdlib.h> void __stdcall __declspec(dllexport) test(int x) { printf("%d\n", x); }
編譯
$ i686-w64-mingw32-gcc -shared main.c -o main.dll