ReconstructMe SDK  1.1.739-75658
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 1
15 #define REME_VERSION_MINOR 1
16 #define REME_VERSION_BUILD 739
17 #define REME_VERSION_REVISION 75658
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