blob: 345924cab94dbea848898a8f4e403734d3763dad (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $Id: version.h,v 1.2 2004/04/11 12:20:31 miguelfreitas Exp $ */
/** \file version.h
* \brief A file simply containing the library version number.
*/
/*! CDIO_VERSION can as a string in programs to show what version is used. */
#define CDIO_VERSION "0.68"
/*! LIBCDIO_VERSION_NUM can be used for testing in the C preprocessor */
#define LIBCDIO_VERSION_NUM 68
|