1234567891011121314151617181920 |
- #pragma once
- #include "../../Common/CameraBaseClass\IBaseCamCommon.h"
- #include "EntityCamera.h"
- #include <QVector>
- #define DLL_API __declspec(dllexport) // 导出
- /* 导出函数声明 为显式链接做准备的导出函数*/
- extern "C"
- {
- DLL_API SDKINFO getSDKInfo();
- DLL_API bool initEnv();
- DLL_API CameraSerial cameraSerial();
- DLL_API ICamera* createCamera(QString CameraSerial);
- DLL_API bool closeEnv();
- }
|