mirror of
https://github.com/EricPlayZ/EGameTools.git
synced 2025-07-18 17:37:53 +08: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;
|
|
}
|
|
|
|
}
|