testLib3Imp.c 190 B

1234567
  1. #if defined(_WIN32) || defined(__CYGWIN__)
  2. # define testLib3Imp_EXPORT __declspec(dllexport)
  3. #else
  4. # define testLib3Imp_EXPORT
  5. #endif
  6. testLib3Imp_EXPORT int testLib3Imp(void) { return 0; }