You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
|
|
|
|
#ifndef _MV_INCLUDE_H_
|
|
|
|
|
|
#define _MV_INCLUDE_H_
|
|
|
|
|
|
|
|
|
|
|
|
#include "CameraParams.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @brief <EFBFBD><EFBFBD>̬<EFBFBD><EFBFBD>뵼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
*/
|
|
|
|
|
|
#ifndef MV_CAMCTRL_API
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
#if defined(MV_CAMCTRL_EXPORTS)
|
|
|
|
|
|
#define MV_CAMCTRL_API __declspec(dllexport)
|
|
|
|
|
|
#else
|
|
|
|
|
|
#define MV_CAMCTRL_API __declspec(dllimport)
|
|
|
|
|
|
#endif
|
|
|
|
|
|
#else
|
|
|
|
|
|
#ifndef __stdcall
|
|
|
|
|
|
#define __stdcall
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef MV_CAMCTRL_API
|
|
|
|
|
|
#define MV_CAMCTRL_API
|
|
|
|
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
|
|
#include <objbase.h> // interface
|
|
|
|
|
|
#else
|
|
|
|
|
|
#define interface struct
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
namespace MvCamCtrl
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
typedef void ITransportLayer;
|
|
|
|
|
|
typedef void* TlProxy;
|
|
|
|
|
|
class MvCamera;
|
|
|
|
|
|
class CTlRefs;
|
|
|
|
|
|
class CDevRefs;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _MV_INCLUDE_H_ */
|