23 lines
684 B
C
23 lines
684 B
C
|
#if defined(_WIN32)
|
||
|
#define RMDEF __declspec(dllexport) extern "C" inline
|
||
|
#else
|
||
|
#define RMDEF
|
||
|
#endif
|
||
|
|
||
|
extern "C" {
|
||
|
RMDEF int getThree ();
|
||
|
RMDEF int getFour ();
|
||
|
|
||
|
RMDEF void testSource (const AugSettings& settings);
|
||
|
|
||
|
RMDEF void printPreview (const AugSettings& settings,
|
||
|
const std::string& matchPath,
|
||
|
const std::string& filePath);
|
||
|
|
||
|
RMDEF void printStringExample (char* someString);
|
||
|
|
||
|
RMDEF void printAugTree (const AugSettings& settings,
|
||
|
const std::string& matchPath,
|
||
|
const std::string& filePath);
|
||
|
}
|