1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #ifndef VISION_LIB
| #define VISION_LIB
|
| #ifdef EXPORT_DLL_BASE_VISION
| #include "IClsDisplay.h"
| #define EXPORTED_VISION _declspec(dllexport)
| #else
| #define EXPORTED_VISION _declspec(dllimport)
| #endif
|
| extern "C" EXPORTED_VISION IClsDisplay* ClsDisplay_Create(void);
| extern "C" EXPORTED_VISION void ClsDisplay_Free(IClsDisplay *pClsDisplay);
|
| #endif
|
|