DllExportl.h 412 B

1234567891011121314151617181920
  1. #pragma once
  2. #include "../../Common/CameraBaseClass\IBaseCamCommon.h"
  3. #include "EntityCamera.h"
  4. #include <QVector>
  5. #define DLL_API __declspec(dllexport) // 导出
  6. /* 导出函数声明 为显式链接做准备的导出函数*/
  7. extern "C"
  8. {
  9. DLL_API SDKINFO getSDKInfo();
  10. DLL_API bool initEnv();
  11. DLL_API CameraSerial cameraSerial();
  12. DLL_API ICamera* createCamera(QString CameraSerial);
  13. DLL_API bool closeEnv();
  14. }