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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * headers.c: Test for public headers usability
  3.  *****************************************************************************
  4.  * Copyright (C) 2007 Rémi Denis-Courmont
  5.  * $Id: cf2413695f38d7b6681b1d658de32d536571c39a $
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20.  *****************************************************************************/
  21. /* config.h is NOT installed, headers MUST NOT depend on it.
  22.  # include <config.h> */
  23. /* One thing we don't check is the CPPFLAGS - these MUST be exposed publicly,
  24.  * e.g. using pkg-config or the broken old vlc-config. */
  25. #define PACKAGE "vlc"
  26. /* Because we are from src/ __LIBVLC__ is defined, but we don't want that,
  27.  * as we act here as a third-party program just linking to libvlc */
  28. #ifdef __LIBVLC__
  29. # undef __LIBVLC__
  30. #endif
  31. #include <vlc/vlc.h>
  32. #include <vlc/deprecated.h>
  33. #include <vlc/libvlc.h>
  34. #include <vlc/libvlc_structures.h>
  35. #include <vlc/libvlc_events.h>
  36. #include <vlc/libvlc_media.h>
  37. #include <vlc/libvlc_media_discoverer.h>
  38. #include <vlc/libvlc_media_library.h>
  39. #include <vlc/libvlc_media_list.h>
  40. #include <vlc/libvlc_media_list_player.h>
  41. #include <vlc/libvlc_media_list_view.h>
  42. #include <vlc/libvlc_media_player.h>
  43. #include <vlc/libvlc_vlm.h>
  44. #include <vlc/mediacontrol.h>
  45. #include <vlc/mediacontrol_structures.h>
  46. #include <stdio.h>
  47. int main (void)
  48. {
  49.     puts ("Public headers can be used for external compilation.");
  50.     return 0;
  51. }