]> git.sesse.net Git - mlt/blob - src/framework/mlt_version.c
A little debugging.
[mlt] / src / framework / mlt_version.c
1 /**
2  * \file mlt_version.c
3  * \brief contains version information
4  *
5  * Copyright (C) 2010 Ushodaya Enterprises Limited
6  * \author Jonathan Thomas <Jonathan.Oomph@gmail.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "mlt_version.h"
24
25 int mlt_version_get_int( )
26 {
27         return LIBMLT_VERSION_INT;
28 }
29
30 char *mlt_version_get_string( )
31 {
32         return LIBMLT_VERSION;
33 }
34
35 int mlt_version_get_major( )
36 {
37         return LIBMLT_VERSION_MAJOR;
38 }
39
40 int mlt_version_get_minor( )
41 {
42         return LIBMLT_VERSION_MINOR;
43 }
44
45 int mlt_version_get_revision( )
46 {
47         return LIBMLT_VERSION_REVISION;
48 }
49
50