summaryrefslogtreecommitdiff
path: root/example-cross-compile-cpp/win.cc
blob: abb0f6d3d47fc1aa12a5ec74957eac14ff2153c5 (plain) (blame)
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);
}