testLib5.c 178 B

12345678910
  1. #if defined(_WIN32) || defined(__CYGWIN__)
  2. #define testLib5_EXPORT __declspec(dllexport)
  3. #else
  4. #define testLib5_EXPORT
  5. #endif
  6. testLib5_EXPORT int testLib5(void)
  7. {
  8. return 0;
  9. }