MLT 6.26.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 6
30#define LIBMLT_VERSION_MINOR 26
31#define LIBMLT_VERSION_REVISION 1
32#define LIBMLT_VERSION_INT ((LIBMLT_VERSION_MAJOR<<16)+(LIBMLT_VERSION_MINOR<<8)+LIBMLT_VERSION_REVISION)
33#define LIBMLT_VERSION MLT_STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION)
34
35extern int mlt_version_get_int( );
36extern int mlt_version_get_major( );
37extern int mlt_version_get_minor( );
38extern int mlt_version_get_revision( );
39extern char *mlt_version_get_string( );
40
41#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