]> git.sesse.net Git - vlc/blob - src/control/libvlc_internal.h
309e92093840a8809d2d363b42209159b6604fed
[vlc] / src / control / libvlc_internal.h
1 /*****************************************************************************
2  * libvlc_internal.h : Definition of opaque structures for libvlc exported API
3  * Also contains some internal utility functions
4  *****************************************************************************
5  * Copyright (C) 2005 the VideoLAN team
6  * $Id: control_structures.h 13752 2005-12-15 10:14:42Z oaubert $
7  *
8  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _LIBVLC_INTERNAL_H
26 #define _LIBVLC_INTERNAL_H 1
27
28 # ifdef __cplusplus
29 extern "C" {
30 # endif
31
32 #include <vlc/vlc.h>
33 #include <vlc/libvlc_structures.h>
34     
35 /***************************************************************************
36  * Internal creation and destruction functions
37  ***************************************************************************/
38 VLC_EXPORT (libvlc_int_t *, libvlc_InternalCreate, ( void ) );
39 VLC_EXPORT (int, libvlc_InternalInit, ( libvlc_int_t *, int, char *ppsz_argv[] ) );
40 VLC_EXPORT (int, libvlc_InternalCleanup, ( libvlc_int_t * ) );
41 VLC_EXPORT (int, libvlc_InternalDestroy, ( libvlc_int_t *, vlc_bool_t ) );
42
43 VLC_EXPORT (int, libvlc_InternalAddIntf, ( libvlc_int_t *, const char *, vlc_bool_t,
44                             vlc_bool_t, int, const char *const * ) );
45
46 /***************************************************************************
47  * Opaque structures for libvlc API
48  ***************************************************************************/
49
50 struct libvlc_callback_entry_t
51 {
52     libvlc_instance_t *p_instance;
53     libvlc_callback_t f_callback;
54     libvlc_event_type_t i_event_type;
55     void *p_user_data;
56 };
57
58 struct libvlc_callback_entry_list_t
59 {
60     struct libvlc_callback_entry_t *elmt;
61     struct libvlc_callback_entry_list_t *next;
62     struct libvlc_callback_entry_list_t *prev;
63 };
64     
65 struct libvlc_instance_t
66 {
67     libvlc_int_t *p_libvlc_int;
68     vlm_t        *p_vlm;
69     int           b_playlist_locked;
70     vlc_mutex_t   instance_lock;
71     struct libvlc_callback_entry_list_t *p_callback_list;
72 };
73
74 struct libvlc_input_t
75 {
76     int i_input_id;  ///< Input object id. We don't use a pointer to
77                      /// avoid any crash
78     struct libvlc_instance_t *p_instance; ///< Parent instance
79 };
80
81 #define RAISENULL( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
82                                 return NULL; }
83 #define RAISEVOID( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
84                                 return; }
85 #define RAISEZERO( psz,a... ) { libvlc_exception_raise( p_e, psz,##a ); \
86                                 return 0; }
87
88 # ifdef __cplusplus
89 }
90 # endif
91
92 #endif