SampleDLL.cpp 106 B

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