testLib3.c 316 B

12345678910111213
  1. #if defined(_WIN32) || defined(__CYGWIN__)
  2. # define testLib3_EXPORT __declspec(dllexport)
  3. # define testLib3Imp_IMPORT __declspec(dllimport)
  4. #else
  5. # define testLib3_EXPORT
  6. # define testLib3Imp_IMPORT
  7. #endif
  8. testLib3Imp_IMPORT int testLib3Imp(void);
  9. testLib3_EXPORT int testLib3(void)
  10. {
  11. return testLib3Imp();
  12. }