]> git.sesse.net Git - vlc/blob - plugins/macosx/macosx.h
New interface for MacOS X, courtesy of Florian G. Pflug.
[vlc] / plugins / macosx / macosx.h
1 /*****************************************************************************
2  * macosx.h : MacOS X plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $$
6  *
7  * Authors: Florian G. Pflug <fgp@phlo.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * The vout struct as access from both, the output and the interface module
26  *****************************************************************************/
27 #include <QuickTime/QuickTime.h>
28
29 #define OSX_INTF_VOUT_QDPORT_CHANGE     0x0001
30 #define OSX_INTF_VOUT_SIZE_CHANGE       0x0002
31 #define OSX_VOUT_INTF_REQUEST_QDPORT    0x0004
32 #define OSX_VOUT_INTF_RELEASE_QDPORT    0x0008
33
34 /* This struct is included as the _FIRST_ member in vout_sys_t */
35 /* That way the interface can cast the vout_sys_t to osx_com_t */
36 /* and doesn't need the definition of vout_sys_t */
37 #ifndef OSX_COM_TYPE
38     #define OSX_COM_TYPE osx_com_t
39     #define OSX_COM_STRUCT osx_com_s
40 #endif
41 typedef struct OSX_COM_STRUCT {
42     vlc_mutex_t lock ;
43     unsigned int i_changes ;
44     
45     CGrafPtr p_qdport ;
46 } OSX_COM_TYPE ;