/usr/include/ogmrip/ogmrip-version.h is in libogmrip-dev 1.0.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | #ifndef __OGMRIP_VERSION_H__
#define __OGMRIP_VERSION_H__
#include <glib.h>
G_BEGIN_DECLS
/**
* OGMRIP_MAJOR_VERSION:
*
* Compile time major version of OGMRip
*/
#define OGMRIP_MAJOR_VERSION (1)
/**
* OGMRIP_MINOR_VERSION:
*
* Compile time minor version of OGMRip
*/
#define OGMRIP_MINOR_VERSION (0)
/**
* OGMRIP_MICRO_VERSION:
*
* Compile time micro version of OGMRip
*/
#define OGMRIP_MICRO_VERSION (1)
/**
* OGMRIP_CHECK_VERSION:
* @major: A major version number
* @minor: A minor version number
* @micro: A micro version number
*
* Checks whether version is equal or greather than major.minor.micro
*/
#define OGMRIP_CHECK_VERSION(major,minor,micro) \
((OGMRIP_MAJOR_VERSION > (major)) || \
(OGMRIP_MAJOR_VERSION == (major) && OGMRIP_MINOR_VERSION > (minor)) || \
(OGMRIP_MAJOR_VERSION == (major) && OGMRIP_MINOR_VERSION == (minor) && OGMRIP_MICRO_VERSION >= (micro)))
/**
* MPLAYER_CHECK_VERSION:
* @major: A major version number
* @minor: A minor version number
* @rc: An rc version number
* @pre: A pre version number
*
* Check if version is equal or greather than major.minor, major.minor-rc or
* major.minor-pre, in that order
*/
#define MPLAYER_CHECK_VERSION(major,minor,rc,pre) \
(ogmrip_check_mplayer_version (major, minor, rc, pre))
gboolean ogmrip_check_mplayer (void);
gboolean ogmrip_check_mencoder (void);
gboolean ogmrip_check_mplayer_version (gint major,
gint minor,
gint rc,
gint pre);
gboolean ogmrip_check_mplayer_dts (void);
gboolean ogmrip_check_mplayer_nosub (void);
G_END_DECLS
#endif /* __OGMRIP_VERSION_H__ */
|