mlt 0.7.6

mlt_version.h

Go to the documentation of this file.
00001 
00023 #ifndef _MLT_VERSION_H_
00024 #define _MLT_VERSION_H_
00025 
00026 // Add quotes around any #define variables
00027 #define STRINGIZE2(s)           #s
00028 #define STRINGIZE(s)            STRINGIZE2(s)
00029 
00030 #define LIBMLT_VERSION_MAJOR    0
00031 #define LIBMLT_VERSION_MINOR    7
00032 #define LIBMLT_VERSION_REVISION 7
00033 #define LIBMLT_VERSION_INT      ((LIBMLT_VERSION_MAJOR<<16)+(LIBMLT_VERSION_MINOR<<8)+LIBMLT_VERSION_REVISION)
00034 #define LIBMLT_VERSION          STRINGIZE(LIBMLT_VERSION_MAJOR.LIBMLT_VERSION_MINOR.LIBMLT_VERSION_REVISION)
00035 
00036 extern int mlt_version_get_int( );
00037 extern int mlt_version_get_major( );
00038 extern int mlt_version_get_minor( );
00039 extern int mlt_version_get_revision( );
00040 extern char *mlt_version_get_string( );
00041 
00042 #endif
TWiki Appliance - Powered by TurnKey Linux