testLib4.c 178 B

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