Files
fancycode-MemoryModule/example/SampleDLL/SampleDLL.cpp
T
2019-02-24 17:01:53 +01:00

18 lines
186 B
C++

#include "SampleDLL.h"
extern "C" {
SAMPLEDLL_API int addNumbers(int a, int b)
{
return a + b;
}
#ifdef _WIN64
SAMPLEDLL_API void throwException(void)
{
throw 42;
}
#endif
}