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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * intf.h: MacOS X interface module
  3.  *****************************************************************************
  4.  * Copyright (C) 2002-2007 the VideoLAN team
  5.  * $Id: 93ab46c657e18763ef1b7bd92b471afe64dde5a1 $
  6.  *
  7.  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
  8.  *          Christophe Massiot <massiot@via.ecp.fr>
  9.  *          Derk-Jan Hartman <hartman at videolan dot org>
  10.  *          Felix Kühne <fkuehne at videolan dot org>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. #   include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_interface.h>
  31. #include <vlc_playlist.h>
  32. #include <vlc_vout.h>
  33. #include <vlc_aout.h>
  34. #include <vlc_input.h>
  35. #include <Cocoa/Cocoa.h>
  36. /*****************************************************************************
  37.  * Local prototypes.
  38.  *****************************************************************************/
  39. /*****************************************************************************
  40.  * intf_sys_t: description and status of the interface
  41.  *****************************************************************************/
  42. struct intf_sys_t
  43. {
  44.     int nothing_for_now;
  45.     vlc_mutex_t lock;
  46.     vlc_cond_t wait;
  47. };