QVisu
Qt-based visualization for smart homes
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
libvlc_version.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * libvlc_version.h
3  *****************************************************************************
4  * Copyright (C) 2010 RĂ©mi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20 
32 #ifndef LIBVLC_VERSION_H
33 # define LIBVLC_VERSION_H 1
34 
36 # define LIBVLC_VERSION_MAJOR (2)
37 
39 # define LIBVLC_VERSION_MINOR (1)
40 
42 # define LIBVLC_VERSION_REVISION (5)
43 
44 # define LIBVLC_VERSION_EXTRA (0)
45 
47 # define LIBVLC_VERSION(maj,min,rev,extra) \
48  ((maj << 24) | (min << 16) | (rev << 8) | (extra))
49 
51 # define LIBVLC_VERSION_INT \
52  LIBVLC_VERSION(LIBVLC_VERSION_MAJOR, LIBVLC_VERSION_MINOR, \
53  LIBVLC_VERSION_REVISION, LIBVLC_VERSION_EXTRA)
54 
55 #endif