Go to the documentation of this file.00001 #ifndef LIBUVC_CONFIG_H
00002 #define LIBUVC_CONFIG_H
00003
00004 #define LIBUVC_VERSION_MAJOR 0
00005 #define LIBUVC_VERSION_MINOR 0
00006 #define LIBUVC_VERSION_PATCH 5
00007 #define LIBUVC_VERSION_STR "0.0.5"
00008 #define LIBUVC_VERSION_INT \
00009 ((0 << 16) | \
00010 (0 << 8) | \
00011 (5))
00012
00017 #define LIBUVC_VERSION_GTE(major, minor, patch) \
00018 (LIBUVC_VERSION_INT >= (((major) << 16) | ((minor) << 8) | (patch)))
00019
00020 #define LIBUVC_HAS_JPEG 1
00021
00022 #endif // !def(LIBUVC_CONFIG_H)