testLib3Imp.c 335 B

12345678910111213
  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)
  10. {
  11. return testLib3ImpDep();
  12. }