]> git.sesse.net Git - vlc/blob - include/videolan/vlc.h
* ./BUGS: added a list of known bugs. Please add your findings!
[vlc] / include / videolan / vlc.h
1 /*****************************************************************************
2  * vlc.h: global header for vlc
3  *****************************************************************************
4  * Copyright (C) 1998, 1999, 2000 VideoLAN
5  * $Id: vlc.h,v 1.3 2002/01/04 14:01:34 sam Exp $
6  *
7  * Authors: Samuel Hocevar <sam@via.ecp.fr>
8  *          Vincent Seguin <seguin@via.ecp.fr>
9  *          Gildas Bazin <gbazin@netcourrier.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Required vlc headers
28  *****************************************************************************/
29 #include "defs.h"
30 #include "config.h"
31 #include "int_types.h"
32
33 #if defined( PLUGIN ) || defined( BUILTIN )
34 #   include "modules_inner.h"
35 #endif
36
37 #include "common.h"
38
39 #ifdef SYS_BEOS
40 #   include "beos_specific.h"
41 #endif
42 #ifdef SYS_DARWIN
43 #   include "darwin_specific.h"
44 #endif
45 #ifdef WIN32
46 #   include "win32_specific.h"
47 #endif
48
49 #include "intf_msg.h"
50 #include "threads.h"
51 #include "mtime.h"
52 #include "modules.h"
53
54 #include "main.h"
55