SampleDLL.cpp 121 B

123456789
  1. #include "SampleDLL.h"
  2. extern "C"
  3. {
  4. SAMPLEDLL_API int addNumbers(int a, int b)
  5. {
  6. return a + b;
  7. }
  8. }