Files
EGameTools/Ultimate-ASI-Loader-x64/external/MemoryModule/tests/SampleDLL.cpp
2024-12-30 16:11:23 +02:00

11 lines
106 B
C++

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