MLT  7.24.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 24
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 
37 extern int mlt_version_get_int();
38 extern int mlt_version_get_major();
39 extern int mlt_version_get_minor();
40 extern int mlt_version_get_revision();
41 extern 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