]> git.sesse.net Git - vlc/blob - include/interface.h
* ./include/modules_inner.h: replaced _X with __VLC_SYMBOL because _X was
[vlc] / include / interface.h
1 /*****************************************************************************
2  * interface.h: interface access for other threads
3  * This library provides basic functions for threads to interact with user
4  * interface, such as message output.
5  *****************************************************************************
6  * Copyright (C) 1999, 2000 VideoLAN
7  * $Id: interface.h,v 1.26 2002/01/07 02:12:29 sam Exp $
8  *
9  * Authors: Vincent Seguin <seguin@via.ecp.fr>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * intf_thread_t: describe an interface thread
28  *****************************************************************************
29  * This structe describes all interface-specific data of the main (interface)
30  * thread.
31  *****************************************************************************/
32 typedef struct intf_thread_s
33 {
34     boolean_t           b_die;                                 /* `die' flag */
35
36     /* Specific interfaces */
37     p_intf_console_t    p_console;                                /* console */
38     p_intf_sys_t        p_sys;                           /* system interface */
39     
40     /* Plugin used and shortcuts to access its capabilities */
41     struct module_s *   p_module;
42     int              ( *pf_open )   ( struct intf_thread_s * );
43     void             ( *pf_close )  ( struct intf_thread_s * );
44     void             ( *pf_run )    ( struct intf_thread_s * );
45
46     /* Interface callback */
47     void             ( *pf_manage ) ( struct intf_thread_s * );
48
49     /* XXX: new message passing stuff will go here */
50     vlc_mutex_t         change_lock;
51     boolean_t           b_menu_change;
52     boolean_t           b_menu;
53     
54 } intf_thread_t;
55
56 /*****************************************************************************
57  * Prototypes
58  *****************************************************************************/
59 intf_thread_t * intf_Create             ( void );
60 void            intf_Destroy            ( intf_thread_t * p_intf );
61