1 2 3 4 5 6 7 8 9
#include <windows.h> #include <winuser.h> __declspec(dllimport) void say(const char*); int main() { say("hello dll"); MessageBoxA(nullptr, "world", "hello", 0); }