empty_1.cpp 198 B

123456789101112131415161718192021
  1. #ifdef IS_LIB
  2. # ifdef _WIN32
  3. __declspec(dllexport)
  4. # endif
  5. int internal_empty_1()
  6. {
  7. return 0;
  8. }
  9. #else
  10. # ifdef _WIN32
  11. __declspec(dllexport)
  12. # endif
  13. int empty_1()
  14. {
  15. return 0;
  16. }
  17. #endif