mirror of
https://github.com/vxcontrol/MemoryModule.git
synced 2026-06-30 22:17:55 -04:00
11 lines
106 B
C++
11 lines
106 B
C++
#include "SampleDLL.h"
|
|
|
|
extern "C" {
|
|
|
|
SAMPLEDLL_API int addNumbers(int a, int b)
|
|
{
|
|
return a + b;
|
|
}
|
|
|
|
}
|