ReconstructMe SDK  2.0.819-89134
Real-time 3D reconstruction engine
 All Classes Files Functions Typedefs Enumerations Enumerator Groups Pages
defines.h
Go to the documentation of this file.
1 
11 #ifndef REME_DEFINES_H
12 #define REME_DEFINES_H
13 
14 #define REME_VERSION_MAJOR 2
15 #define REME_VERSION_MINOR 0
16 #define REME_VERSION_BUILD 819
17 #define REME_VERSION_REVISION 89134
18 
19 #define REME_SUCCESS(err) ((err) == 0)
20 #define REME_FAILED(err) ((err) != 0)
21 
22 #ifdef __cplusplus
23  # define REME_BEGIN_DECLS extern "C" {
24  # define REME_END_DECLS }
25 #else
26  # define REME_BEGIN_DECLS
27  # define REME_END_DECLS
28 #endif
29 
30 #endif