SampleDLL.h 193 B

123456789101112
  1. extern "C"
  2. {
  3. #ifdef SAMPLEDLL_EXPORTS
  4. #define SAMPLEDLL_API __declspec(dllexport)
  5. #else
  6. #define SAMPLEDLL_API __declspec(dllimport)
  7. #endif
  8. SAMPLEDLL_API int addNumbers(int a, int b);
  9. }