cpplib.cpp 186 B

12345678910
  1. #if defined _WIN32
  2. #define DLL_PUBLIC __declspec(dllexport)
  3. #else
  4. #define DLL_PUBLIC __attribute__ ((visibility ("default")))
  5. #endif
  6. int DLL_PUBLIC cppfunc() {
  7. return 42;
  8. }