00001 /***************************************************************************** 00002 * vlc.h: global header for libvlc 00003 ***************************************************************************** 00004 * Copyright (C) 1998-2008 VLC authors and VideoLAN 00005 * $Id: 8f39094bd4b15c99288cecd001f76fcc10565daa $ 00006 * 00007 * Authors: Vincent Seguin <seguin@via.ecp.fr> 00008 * Samuel Hocevar <sam@zoy.org> 00009 * Gildas Bazin <gbazin@netcourrier.com> 00010 * Derk-Jan Hartman <hartman at videolan dot org> 00011 * Pierre d'Herbemont <pdherbemont@videolan.org> 00012 * 00013 * This program is free software; you can redistribute it and/or modify it 00014 * under the terms of the GNU Lesser General Public License as published by 00015 * the Free Software Foundation; either version 2.1 of the License, or 00016 * (at your option) any later version. 00017 * 00018 * This program is distributed in the hope that it will be useful, 00019 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 * GNU Lesser General Public License for more details. 00022 * 00023 * You should have received a copy of the GNU Lesser General Public License 00024 * along with this program; if not, write to the Free Software Foundation, 00025 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00026 *****************************************************************************/ 00027 00028 #ifndef VLC_VLC_H 00029 #define VLC_VLC_H 1 00030 00031 /** 00032 * \file 00033 * This file defines libvlc new external API 00034 */ 00035 00036 # ifdef __cplusplus 00037 extern "C" { 00038 # endif 00039 00040 #include <vlc/libvlc_structures.h> 00041 #include <vlc/libvlc.h> 00042 #include <vlc/libvlc_media.h> 00043 #include <vlc/libvlc_media_player.h> 00044 #include <vlc/libvlc_media_list.h> 00045 #include <vlc/libvlc_media_list_player.h> 00046 #include <vlc/libvlc_media_library.h> 00047 #include <vlc/libvlc_media_discoverer.h> 00048 #include <vlc/libvlc_events.h> 00049 #include <vlc/libvlc_vlm.h> 00050 #include <vlc/deprecated.h> 00051 00052 # ifdef __cplusplus 00053 } 00054 # endif 00055 00056 #endif /* _VLC_VLC_H */
1.7.1