summaryrefslogblamecommitdiff
path: root/example-cross-compile-cpp/windll.cc
blob: 890117c89c3fe10fb5e0780badb42c026c42e891 (plain) (tree)
1
2
3
4
5




                                                 
#include <stdio.h>

__declspec(dllexport) void say(const char* str) {
  if (str) puts(str);
}