Files
MemoryModule/tests/SampleDLL.cpp
T
2015-03-01 01:04:17 +01:00

11 lines
106 B
C++

#include "SampleDLL.h"
extern "C" {
SAMPLEDLL_API int addNumbers(int a, int b)
{
return a + b;
}
}