]> git.sesse.net Git - vlc/blob - include/videolan/vlc.h
* ./src/interface/main.c: we no longer segfault if argc == 0.
[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.7 2002/04/24 00:36:24 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 #if defined( __VLC__ ) || defined( __PLUGIN__ ) || defined( __BUILTIN__ )
30 #   include "defs.h"
31 #   include "config.h"
32
33 #   if defined( __PLUGIN__ ) || defined( __BUILTIN__ )
34 #       include "modules_inner.h"
35 #   endif
36
37 #   include "common.h"
38
39 #   include "os_specific.h"
40
41 #   include "intf_msg.h"
42 #   include "threads.h"
43 #   include "mtime.h"
44 #   include "modules.h"
45
46 #   include "main.h"
47 #   include "configuration.h"
48 #endif
49
50 int main( int i_argc, char *ppsz_argv[], char *ppsz_env[] );
51