00001 /***************************************************************************** 00002 * intf.h: MacOS X interface module 00003 ***************************************************************************** 00004 * Copyright (C) 2002-2007 the VideoLAN team 00005 * $Id$ 00006 * 00007 * Authors: Jon Lech Johansen <jon-vl@nanocrew.net> 00008 * Christophe Massiot <massiot@via.ecp.fr> 00009 * Derk-Jan Hartman <hartman at videolan dot org> 00010 * Felix Kühne <fkuehne at videolan dot org> 00011 * 00012 * This program is free software; you can redistribute it and/or modify 00013 * it under the terms of the GNU General Public License as published by 00014 * the Free Software Foundation; either version 2 of the License, or 00015 * (at your option) any later version. 00016 * 00017 * This program is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00020 * GNU General Public License for more details. 00021 * 00022 * You should have received a copy of the GNU General Public License 00023 * along with this program; if not, write to the Free Software 00024 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. 00025 *****************************************************************************/ 00026 00027 #ifdef HAVE_CONFIG_H 00028 # include "config.h" 00029 #endif 00030 00031 #include <vlc_common.h> 00032 #include <vlc_interface.h> 00033 #include <vlc_playlist.h> 00034 #include <vlc_vout.h> 00035 #include <vlc_aout.h> 00036 #include <vlc_input.h> 00037 00038 #include <Cocoa/Cocoa.h> 00039 00040 /***************************************************************************** 00041 * Local prototypes. 00042 *****************************************************************************/ 00043 00044 /***************************************************************************** 00045 * intf_sys_t: description and status of the interface 00046 *****************************************************************************/ 00047 struct intf_sys_t 00048 { 00049 int nothing_for_now; 00050 00051 vlc_mutex_t lock; 00052 vlc_cond_t wait; 00053 }; 00054
1.5.6