Blame include/cdio/version.h

Packit dd8086
/** \file version.h
Packit dd8086
 *
Packit dd8086
 *  \brief A file containing the libcdio package version
Packit dd8086
 *  number (20000) and OS build name.
Packit dd8086
 */
Packit dd8086
Packit dd8086
/*! CDIO_VERSION is a C-Preprocessor macro of a string that shows what
Packit dd8086
    version is used.  cdio_version_string has the same value, but it is a
Packit dd8086
    constant variable that can be accessed at run time. */
Packit dd8086
#define CDIO_VERSION "2.0.0 x86_64-pc-linux-gnu"
Packit dd8086
extern const char *cdio_version_string; /**< = CDIO_VERSION */
Packit dd8086
Packit dd8086
/*! LIBCDIO_VERSION_NUM is a C-Preprocessor macro that can be used for
Packit dd8086
    testing in the C preprocessor. libcdio_version_num has the same
Packit dd8086
    value, but it is a constant variable that can be accessed at run
Packit dd8086
    time.  */
Packit dd8086
#define LIBCDIO_VERSION_NUM 20000
Packit dd8086
Packit dd8086
extern const unsigned int libcdio_version_num; /**< = LIBCDIO_VERSION_NUM */