SampleDLL.h 188 B

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