MLT 7.20.0
mlt_version.h
Go to the documentation of this file.
1
22#ifndef MLT_VERSION_H
23#define MLT_VERSION_H
24
25// Add quotes around any #define variables
26#define MLT_STRINGIZE2(s) #s
27#define MLT_STRINGIZE(s) MLT_STRINGIZE2(s)
28
29#define LIBMLT_VERSION_MAJOR 7
30#define LIBMLT_VERSION_MINOR 20
31#define LIBMLT_VERSION_REVISION 0
32#define LIBMLT_VERSION_INT \
33 ((LIBMLT_VERSION_MAJOR << 16) + (LIBMLT_VERSION_MINOR << 8) + LIBMLT_VERSION_REVISION)
34#define LIBMLT_VERSION \
35 MLT_STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION)
36
37extern int mlt_version_get_int();
38extern int mlt_version_get_major();
39extern int mlt_version_get_minor();
40extern int mlt_version_get_revision();
41extern char *mlt_version_get_string();
42
43#endif
int mlt_version_get_minor()
Definition mlt_version.c:39
int mlt_version_get_major()
Definition mlt_version.c:34
char * mlt_version_get_string()
Definition mlt_version.c:29
int mlt_version_get_revision()
Definition mlt_version.c:44
int mlt_version_get_int()
Definition mlt_version.c:24