vlc.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc.h: global header for libvlc
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2008 the VideoLAN team
  5.  * $Id: 0f34b57f3f53f2bfdaad3fdc544752c902d37461 $
  6.  *
  7.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  8.  *          Samuel Hocevar <sam@zoy.org>
  9.  *          Gildas Bazin <gbazin@netcourrier.com>
  10.  *          Derk-Jan Hartman <hartman at videolan dot org>
  11.  *          Pierre d'Herbemont <pdherbemont@videolan.org>
  12.  *
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  *
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  *
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  26.  *****************************************************************************/
  27. #ifndef VLC_VLC_H
  28. #define VLC_VLC_H 1
  29. /**
  30.  * file
  31.  * This file defines libvlc new external API
  32.  */
  33. # ifdef __cplusplus
  34. extern "C" {
  35. # endif
  36. #include <vlc/libvlc_structures.h>
  37. #include <vlc/libvlc.h>
  38. #include <vlc/libvlc_media.h>
  39. #include <vlc/libvlc_media_player.h>
  40. #include <vlc/libvlc_media_list.h>
  41. #include <vlc/libvlc_media_list_view.h>
  42. #include <vlc/libvlc_media_list_player.h>
  43. #include <vlc/libvlc_media_library.h>
  44. #include <vlc/libvlc_media_discoverer.h>
  45. #include <vlc/libvlc_events.h>
  46. #include <vlc/libvlc_vlm.h>
  47. #include <vlc/deprecated.h>
  48. # ifdef __cplusplus
  49. }
  50. # endif
  51. #endif /* _VLC_VLC_H */