testLib3Imp.c 337 B

12345678910
  1. #if defined(_WIN32) || defined(__CYGWIN__)
  2. # define testLib3Imp_EXPORT __declspec(dllexport)
  3. # define testLib3ImpDep_IMPORT __declspec(dllimport)
  4. #else
  5. # define testLib3Imp_EXPORT
  6. # define testLib3ImpDep_IMPORT
  7. #endif
  8. testLib3ImpDep_IMPORT int testLib3ImpDep(void);
  9. testLib3Imp_EXPORT int testLib3Imp(void) { return testLib3ImpDep(); }