MLT 7.40.0
Multimedia Framework
mlt_version.h
Go to the documentation of this file.
1
22#ifndef MLT_VERSION_H
23#define MLT_VERSION_H
24#include "mlt_export.h"
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 40
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
37MLT_EXPORT int mlt_version_get_int();
38MLT_EXPORT int mlt_version_get_major();
39MLT_EXPORT int mlt_version_get_minor();
40MLT_EXPORT int mlt_version_get_revision();
41MLT_EXPORT char *mlt_version_get_string();
42
43#endif
MLT_EXPORT int mlt_version_get_int()
Definition mlt_version.c:24
MLT_EXPORT int mlt_version_get_minor()
Definition mlt_version.c:39
MLT_EXPORT char * mlt_version_get_string()
Definition mlt_version.c:29
MLT_EXPORT int mlt_version_get_major()
Definition mlt_version.c:34
MLT_EXPORT int mlt_version_get_revision()
Definition mlt_version.c:44