QuakeGod
2021-07-29 3b04f942bd51c0453cbb64167cbdb7de69159bd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
 
#ifndef _MV_INCLUDE_H_
#define _MV_INCLUDE_H_
 
#include "CameraParams.h"
 
/**
 *  @brief  ¶¯Ì¬¿âµ¼Èëµ¼³ö¶¨Òå
 */
#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_ */