blob: 9ab0ac930d22429b106de4d148b51cb5cf546002 [file] [log] [blame]
#ifndef LIBUVC_CONFIG_H
#define LIBUVC_CONFIG_H
#define LIBUVC_VERSION_MAJOR 0
#define LIBUVC_VERSION_MINOR 0
#define LIBUVC_VERSION_PATCH 6
#define LIBUVC_VERSION_STR "0.0.6"
#define LIBUVC_VERSION_INT \
((0 << 16) | \
(0 << 8) | \
(6))
/** @brief Test whether libuvc is new enough
* This macro evaluates true iff the current version is
* at least as new as the version specified.
*/
#define LIBUVC_VERSION_GTE(major, minor, patch) \
(LIBUVC_VERSION_INT >= (((major) << 16) | ((minor) << 8) | (patch)))
/* #define LIBUVC_HAS_JPEG 1 */
#endif // !def(LIBUVC_CONFIG_H)