ReconstructMe SDK  2.6.43-0
Real-time 3D reconstruction engine
defines.h
Go to the documentation of this file.
1 
11 #ifndef REME_DEFINES_H
12 #define REME_DEFINES_H
13 
15 #define REME_VERSION_MAJOR 2
16 
18 #define REME_VERSION_MINOR 6
19 
21 #define REME_VERSION_BUILD 43
22 
24 #define REME_VERSION_REVISION 0
25 
27 #define REME_SUCCESS(err) ((err) == 0)
28 
30 #define REME_FAILED(err) ((err) != 0)
31 
32 #ifdef __cplusplus
33 
34 # define REME_BEGIN_DECLS extern "C" {
35 
36 # define REME_END_DECLS }
37 #else
38 
39 # define REME_BEGIN_DECLS
40 
41 # define REME_END_DECLS
42 #endif
43 
44 #endif