]> git.sesse.net Git - vlc/blob - include/vlc/libvlc.h
vlc/libvlc.h: Fix libvlc_media_discoverer_media_list prototype.
[vlc] / include / vlc / libvlc.h
1 /*****************************************************************************
2  * libvlc.h:  libvlc_* new external API
3  *****************************************************************************
4  * Copyright (C) 1998-2005 the VideoLAN team
5  * $Id: vlc.h 13701 2005-12-12 17:58:56Z zorglub $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Paul Saman <jpsaman _at_ m2x _dot_ nl>
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 /**
26  * \defgroup libvlc Libvlc
27  * This is libvlc, the base library of the VLC program.
28  *
29  * @{
30  */
31
32
33 #ifndef _LIBVLC_H
34 #define _LIBVLC_H 1
35
36 #include <vlc/vlc.h>
37 #include <vlc/libvlc_structures.h>
38
39 # ifdef __cplusplus
40 extern "C" {
41 # endif
42
43 /*****************************************************************************
44  * Exception handling
45  *****************************************************************************/
46 /** defgroup libvlc_exception Exceptions
47  * \ingroup libvlc
48  * LibVLC Exceptions handling
49  * @{
50  */
51
52 /**
53  * Initialize an exception structure. This can be called several times to reuse
54  * an exception structure.
55  * \param p_exception the exception to initialize
56  */
57 VLC_PUBLIC_API void libvlc_exception_init( libvlc_exception_t *p_exception );
58
59 /**
60  * Has an exception been raised ?
61  * \param p_exception the exception to query
62  * \return 0 if no exception raised, 1 else
63  */
64 VLC_PUBLIC_API int libvlc_exception_raised( libvlc_exception_t *p_exception );
65
66 /**
67  * Raise an exception
68  * \param p_exception the exception to raise
69  * \param psz_message the exception message
70  */
71 VLC_PUBLIC_API void libvlc_exception_raise( libvlc_exception_t *p_exception, const char *psz_format, ... );
72
73 /**
74  * Clear an exception object so it can be reused.
75  * The exception object must be initialized
76  * \param p_exception the exception to clear
77  */
78 VLC_PUBLIC_API void libvlc_exception_clear( libvlc_exception_t * );
79
80 /**
81  * Get exception message
82  * \param p_exception the exception to query
83  * \return the exception message or NULL if not applicable (exception not raised
84  * for example)
85  */
86 VLC_PUBLIC_API char* libvlc_exception_get_message( libvlc_exception_t *p_exception );
87
88 /**@} */
89
90 /*****************************************************************************
91  * Core handling
92  *****************************************************************************/
93
94 /** defgroup libvlc_core Core
95  * \ingroup libvlc
96  * LibVLC Core
97  * @{
98  */
99
100 /**
101  * Create an initialized libvlc instance
102  * \param argc the number of arguments
103  * \param argv command-line-type arguments
104  * \param exception an initialized exception pointer
105  */
106 VLC_PUBLIC_API libvlc_instance_t * libvlc_new( int , char **, libvlc_exception_t *);
107
108 /**
109  * Returns a libvlc instance identifier for legacy APIs. Use of this
110  * function is discouraged, you should convert your program to use the
111  * new API.
112  * \param p_instance the instance
113  */
114 VLC_PUBLIC_API int libvlc_get_vlc_id( libvlc_instance_t *p_instance );
115
116 /**
117  * Destroy a libvlc instance.
118  * \param p_instance the instance to destroy
119  */
120 VLC_PUBLIC_API void libvlc_destroy( libvlc_instance_t *, libvlc_exception_t * );
121
122 /** @}*/
123
124 /*****************************************************************************
125  * Tree
126  *****************************************************************************/
127 /** defgroup libvlc_tree Tree
128  * \ingroup libvlc
129  * LibVLC Tree. A tree holds an item plus several subtrees.
130  * @{
131  */
132 VLC_PUBLIC_API libvlc_tree_t *
133     libvlc_tree_new_with_media_list_as_item( libvlc_media_list_t * p_mlist,
134                                              libvlc_exception_t * p_e );
135
136 VLC_PUBLIC_API libvlc_tree_t *
137     libvlc_tree_new_with_string_as_item( const char * psz,
138                                          libvlc_exception_t * p_e );
139 VLC_PUBLIC_API void
140     libvlc_tree_release( libvlc_tree_t * p_tree );
141
142 VLC_PUBLIC_API void
143     libvlc_tree_retain( libvlc_tree_t * p_tree );
144
145 VLC_PUBLIC_API char *
146     libvlc_tree_item_as_string( libvlc_tree_t * p_tree,
147                                 libvlc_exception_t * p_e );
148
149 VLC_PUBLIC_API libvlc_media_list_t *
150     libvlc_tree_item_as_media_list( libvlc_tree_t * p_tree,
151                                     libvlc_exception_t * p_e );
152
153 VLC_PUBLIC_API int
154     libvlc_tree_subtree_count( libvlc_tree_t * p_tree, libvlc_exception_t * p_e );
155
156 VLC_PUBLIC_API libvlc_tree_t *
157     libvlc_tree_subtree_at_index( libvlc_tree_t * p_tree,
158                               int index,
159                               libvlc_exception_t * p_e );
160
161 VLC_PUBLIC_API void
162     libvlc_tree_insert_subtree_at_index( libvlc_tree_t * p_tree,
163                                          libvlc_tree_t * p_subtree,
164                                          int index,
165                                          libvlc_exception_t * p_e );
166
167 VLC_PUBLIC_API void
168     libvlc_tree_remove_subtree_at_index( libvlc_tree_t * p_tree,
169                                          int index,
170                                          libvlc_exception_t * p_e );
171
172 /**@} */
173
174
175
176 /*****************************************************************************
177  * Media descriptor
178  *****************************************************************************/
179 /** defgroup libvlc_media_descriptor Media Descriptor
180  * \ingroup libvlc
181  * LibVLC Media Descriptor
182  * @{
183  */
184  
185 /**
186  * Create a media descriptor with the given mrl.
187  * \param p_instance the instance
188  * \param psz_mrl the mrl to read
189  */
190 VLC_PUBLIC_API libvlc_media_descriptor_t * libvlc_media_descriptor_new(
191                                    libvlc_instance_t *p_instance,
192                                    const char * psz_mrl,
193                                    libvlc_exception_t *p_e );
194
195 VLC_PUBLIC_API void libvlc_media_descriptor_retain(
196                                    libvlc_media_descriptor_t *p_meta_desc );
197
198 VLC_PUBLIC_API void libvlc_media_descriptor_release(
199                                    libvlc_media_descriptor_t *p_meta_desc );
200
201 VLC_PUBLIC_API char * libvlc_media_descriptor_get_mrl( libvlc_media_descriptor_t * p_md,
202                                                        libvlc_exception_t * p_e );
203
204 /**
205  * Read the meta of the media descriptor.
206  * \param p_meta_desc the media descriptor to read
207  * \param p_meta_desc the meta to read
208  */
209 VLC_PUBLIC_API char * libvlc_media_descriptor_get_meta(
210                                    libvlc_media_descriptor_t *p_meta_desc,
211                                    libvlc_meta_t e_meta,
212                                    libvlc_exception_t *p_e );
213
214 /* Tags */
215 VLC_PUBLIC_API void libvlc_media_descriptor_add_tag( libvlc_media_descriptor_t *p_md,
216                                                      const char * key,
217                                                      const libvlc_tag_t tag,
218                                                      libvlc_exception_t *p_e );
219
220 VLC_PUBLIC_API void libvlc_media_descriptor_remove_tag( libvlc_media_descriptor_t *p_md,
221                                                          const char * key,
222                                                          const libvlc_tag_t tag,
223                                                          libvlc_exception_t *p_e );
224
225 VLC_PUBLIC_API int
226     libvlc_media_descriptor_tags_count_for_key( libvlc_media_descriptor_t *p_md,
227                                                 const char * key,
228                                                 libvlc_exception_t *p_e );
229
230 VLC_PUBLIC_API libvlc_tag_t
231     libvlc_media_descriptor_tag_at_index_for_key( libvlc_media_descriptor_t *p_md,
232                                                   int i,
233                                                   const char * key,
234                                                   libvlc_exception_t *p_e );
235
236 /** @}*/
237
238 /*****************************************************************************
239  * Playlist
240  *****************************************************************************/
241 /** defgroup libvlc_playlist Playlist
242  * \ingroup libvlc
243  * LibVLC Playlist handling
244  * @{
245  */
246
247 /**
248  * Set loop variable
249  */
250 VLC_PUBLIC_API void libvlc_playlist_loop( libvlc_instance_t* , vlc_bool_t,
251                                           libvlc_exception_t * );
252
253 /**
254  * Start playing. You can give some additionnal playlist item options
255  * that will be added to the item before playing it.
256  * \param p_instance the instance
257  * \param i_id the item to play. If this is a negative number, the next
258  * item will be selected. Else, the item with the given ID will be played
259  * \param i_options the number of options to add to the item
260  * \param ppsz_options the options to add to the item
261  * \param p_exception an initialized exception
262  */
263 VLC_PUBLIC_API void libvlc_playlist_play( libvlc_instance_t*, int, int, char **,
264                                           libvlc_exception_t * );
265
266 /**
267  * Pause a running playlist, resume if it was stopped
268  * \param p_instance the instance to pause
269  * \param p_exception an initialized exception
270  */
271 VLC_PUBLIC_API void libvlc_playlist_pause( libvlc_instance_t *, libvlc_exception_t * );
272
273 /**
274  * Checks if the playlist is running
275  * \param p_instance the instance
276  * \param p_exception an initialized exception
277  * \return 0 if the playlist is stopped or paused, 1 if it is running
278  */
279 VLC_PUBLIC_API int libvlc_playlist_isplaying( libvlc_instance_t *, libvlc_exception_t * );
280
281 /**
282  * Get the number of items in the playlist
283  * \param p_instance the instance
284  * \param p_exception an initialized exception
285  * \return the number of items
286  */
287 VLC_PUBLIC_API int libvlc_playlist_items_count( libvlc_instance_t *, libvlc_exception_t * );
288
289 /**
290  * Lock the playlist instance
291  * \param p_instance the instance
292  */
293 VLC_PUBLIC_API void libvlc_playlist_lock( libvlc_instance_t * );
294
295 /**
296  * Unlock the playlist instance
297  * \param p_instance the instance
298  */
299 VLC_PUBLIC_API void libvlc_playlist_unlock( libvlc_instance_t * );
300
301 /**
302  * Stop playing
303  * \param p_instance the instance to stop
304  * \param p_exception an initialized exception
305  */
306 VLC_PUBLIC_API void libvlc_playlist_stop( libvlc_instance_t *, libvlc_exception_t * );
307
308 /**
309  * Go to next playlist item (starts playback if it was stopped)
310  * \param p_instance the instance to use
311  * \param p_exception an initialized exception
312  */
313 VLC_PUBLIC_API void libvlc_playlist_next( libvlc_instance_t *, libvlc_exception_t * );
314
315 /**
316  * Go to previous playlist item (starts playback if it was stopped)
317  * \param p_instance the instance to use
318  * \param p_exception an initialized exception
319  */
320 VLC_PUBLIC_API void libvlc_playlist_prev( libvlc_instance_t *, libvlc_exception_t * );
321
322 /**
323  * Remove all playlist items
324  * \param p_instance the instance
325  * \param p_exception an initialized exception
326  */
327 VLC_PUBLIC_API void libvlc_playlist_clear( libvlc_instance_t *, libvlc_exception_t * );
328
329 /**
330  * Add an item at the end of the playlist
331  * If you need more advanced options, \see libvlc_playlist_add_extended
332  * \param p_instance the instance
333  * \param psz_uri the URI to open, using VLC format
334  * \param psz_name a name that you might want to give or NULL
335  * \return the identifier of the new item
336  */
337 VLC_PUBLIC_API int libvlc_playlist_add( libvlc_instance_t *, const char *, const char *,
338                                         libvlc_exception_t * );
339
340 /**
341  * Add an item at the end of the playlist, with additional input options
342  * \param p_instance the instance
343  * \param psz_uri the URI to open, using VLC format
344  * \param psz_name a name that you might want to give or NULL
345  * \param i_options the number of options to add
346  * \param ppsz_options strings representing the options to add
347  * \param p_exception an initialized exception
348  * \return the identifier of the new item
349  */
350 VLC_PUBLIC_API int libvlc_playlist_add_extended( libvlc_instance_t *, const char *,
351                                                  const char *, int, const char **,
352                                                  libvlc_exception_t * );
353
354 /**
355  * Delete the playlist item with the given ID.
356  * \param p_instance the instance
357  * \param i_id the id to remove
358  * \param p_exception an initialized exception
359  * \return
360  */
361 VLC_PUBLIC_API int libvlc_playlist_delete_item( libvlc_instance_t *, int,
362                                                 libvlc_exception_t * );
363
364 /* Get the input that is currently being played by the playlist
365  * \param p_instance the instance to use
366  * \param p_exception an initialized excecption
367  * \return an input object
368  */
369 VLC_PUBLIC_API libvlc_media_instance_t * libvlc_playlist_get_media_instance(
370                                 libvlc_instance_t *, libvlc_exception_t * );
371
372 /** @}*/
373
374 /*****************************************************************************
375  * Media Instance
376  *****************************************************************************/
377 /** defgroup libvlc_media_instance Media Instance
378  * \ingroup libvlc
379  * LibVLC Media Instance
380  * @{
381  */
382
383 /** Create an empty Media Instance object
384  * \param p_libvlc_instance the libvlc instance in which the Media Instance
385  * should be (not used for now).
386  */
387 VLC_PUBLIC_API libvlc_media_instance_t * libvlc_media_instance_new( libvlc_instance_t *, libvlc_exception_t * );
388
389 /** Create a Media Instance object from a Media Descriptor
390  * \param p_md the media descriptor. Afterwards the p_md can safely be
391  * destroyed.
392  */
393 VLC_PUBLIC_API libvlc_media_instance_t * libvlc_media_instance_new_from_media_descriptor( libvlc_media_descriptor_t *, libvlc_exception_t * );
394
395 /** Release a media_instance after use
396  * \param p_mi the Media Instance to free
397  */
398 VLC_PUBLIC_API void libvlc_media_instance_release( libvlc_media_instance_t * );
399 VLC_PUBLIC_API void libvlc_media_instance_retain( libvlc_media_instance_t * );
400
401 /** Set the media descriptor that will be used by the media_instance. If any,
402  * previous md will be released.
403  * \param p_mi the Media Instance 
404  * \param p_md the Media Descriptor. Afterwards the p_md can safely be
405  * destroyed.
406  */
407 VLC_PUBLIC_API void libvlc_media_instance_set_media_descriptor( libvlc_media_instance_t *, libvlc_media_descriptor_t *, libvlc_exception_t * );
408
409 /** Get the media descriptor used by the media_instance (if any). A copy of
410  * the md is returned. NULL is returned if no media instance is associated.
411  * \param p_mi the Media Instance 
412  */
413 VLC_PUBLIC_API libvlc_media_descriptor_t * libvlc_media_instance_get_media_descriptor( libvlc_media_instance_t *, libvlc_exception_t * );
414
415 /** Get the Event Manager from which the media instance send event.
416  * \param p_mi the Media Instance 
417  */
418 VLC_PUBLIC_API libvlc_event_manager_t * libvlc_media_instance_event_manager ( libvlc_media_instance_t *, libvlc_exception_t * );
419
420 VLC_PUBLIC_API void libvlc_media_instance_play ( libvlc_media_instance_t *, libvlc_exception_t * );
421 VLC_PUBLIC_API void libvlc_media_instance_pause ( libvlc_media_instance_t *, libvlc_exception_t * );
422 VLC_PUBLIC_API void libvlc_media_instance_stop ( libvlc_media_instance_t *, libvlc_exception_t * );
423
424 VLC_PUBLIC_API void libvlc_media_instance_set_drawable ( libvlc_media_instance_t *, libvlc_drawable_t, libvlc_exception_t * );
425
426 /// \bug This might go away ... to be replaced by a broader system
427 VLC_PUBLIC_API vlc_int64_t libvlc_media_instance_get_length     ( libvlc_media_instance_t *, libvlc_exception_t *);
428 VLC_PUBLIC_API vlc_int64_t libvlc_media_instance_get_time       ( libvlc_media_instance_t *, libvlc_exception_t *);
429 VLC_PUBLIC_API void        libvlc_media_instance_set_time       ( libvlc_media_instance_t *, vlc_int64_t, libvlc_exception_t *);
430 VLC_PUBLIC_API float       libvlc_media_instance_get_position   ( libvlc_media_instance_t *, libvlc_exception_t *);
431 VLC_PUBLIC_API void        libvlc_media_instance_set_position   ( libvlc_media_instance_t *, float, libvlc_exception_t *);
432 VLC_PUBLIC_API vlc_bool_t  libvlc_media_instance_will_play      ( libvlc_media_instance_t *, libvlc_exception_t *);
433 VLC_PUBLIC_API float       libvlc_media_instance_get_rate       ( libvlc_media_instance_t *, libvlc_exception_t *);
434 VLC_PUBLIC_API void        libvlc_media_instance_set_rate       ( libvlc_media_instance_t *, float, libvlc_exception_t *);
435 VLC_PUBLIC_API int         libvlc_media_instance_get_state      ( libvlc_media_instance_t *, libvlc_exception_t *);
436
437 /**
438  * Does this input have a video output ?
439  * \param p_input the input
440  * \param p_exception an initialized exception
441  */
442 VLC_PUBLIC_API vlc_bool_t  libvlc_media_instance_has_vout( libvlc_media_instance_t *, libvlc_exception_t *);
443 VLC_PUBLIC_API float       libvlc_media_instance_get_fps( libvlc_media_instance_t *, libvlc_exception_t *);
444
445
446 /** @} */
447
448 /*****************************************************************************
449  * Tag Query
450  *****************************************************************************/
451 /** defgroup libvlc_tag_query Tag Query
452  * \ingroup libvlc
453  * LibVLC Tag query
454  * @{
455  */
456 VLC_PUBLIC_API libvlc_tag_query_t * 
457     libvlc_tag_query_new( libvlc_instance_t *, libvlc_exception_t * );
458
459 VLC_PUBLIC_API void 
460     libvlc_tag_query_release( libvlc_tag_query_t * );
461
462 VLC_PUBLIC_API void 
463     libvlc_tag_query_retain( libvlc_tag_query_t * );
464
465 VLC_PUBLIC_API vlc_bool_t 
466     libvlc_tag_query_match( libvlc_tag_query_t *, libvlc_media_descriptor_t *,
467                             libvlc_exception_t * );
468
469 /** @} */
470
471 /*****************************************************************************
472  * Media List
473  *****************************************************************************/
474 /** defgroup libvlc_media_list MediaList
475  * \ingroup libvlc
476  * LibVLC Media List
477  * @{
478  */
479 VLC_PUBLIC_API libvlc_media_list_t *
480     libvlc_media_list_new( libvlc_instance_t *, libvlc_exception_t * );
481
482 VLC_PUBLIC_API void
483     libvlc_media_list_release( libvlc_media_list_t * );
484
485 VLC_PUBLIC_API void
486     libvlc_media_list_retain( libvlc_media_list_t * );
487
488 VLC_PUBLIC_API void
489     libvlc_media_list_add_file_content( libvlc_media_list_t * p_mlist,
490                                         const char * psz_uri,
491                                         libvlc_exception_t * p_e );
492
493 VLC_PUBLIC_API void
494     libvlc_media_list_set_name( libvlc_media_list_t *,
495                                 const char * psz_name,
496                                 libvlc_exception_t *);
497
498 VLC_PUBLIC_API char *
499     libvlc_media_list_name( libvlc_media_list_t *,
500                             libvlc_exception_t *);
501
502 VLC_PUBLIC_API void
503     libvlc_media_list_add_media_descriptor( libvlc_media_list_t *,
504                                             libvlc_media_descriptor_t *,
505                                             libvlc_exception_t * );
506 VLC_PUBLIC_API void
507     libvlc_media_list_insert_media_descriptor( libvlc_media_list_t *,
508                                                libvlc_media_descriptor_t *,
509                                                int,
510                                                libvlc_exception_t * );
511 VLC_PUBLIC_API void
512     libvlc_media_list_remove_index( libvlc_media_list_t *, int,
513                                     libvlc_exception_t * );
514
515 VLC_PUBLIC_API int
516     libvlc_media_list_count( libvlc_media_list_t * p_mlist,
517                              libvlc_exception_t * p_e );
518
519 VLC_PUBLIC_API libvlc_media_descriptor_t *
520     libvlc_media_list_item_at_index( libvlc_media_list_t *, int,
521                                      libvlc_exception_t * );
522 VLC_PUBLIC_API int
523     libvlc_media_list_index_of_item( libvlc_media_list_t *,
524                                      libvlc_media_descriptor_t *,
525                                      libvlc_exception_t * );
526
527 VLC_PUBLIC_API void
528     libvlc_media_list_lock( libvlc_media_list_t * );
529 VLC_PUBLIC_API void
530     libvlc_media_list_unlock( libvlc_media_list_t * );
531
532 VLC_PUBLIC_API libvlc_event_manager_t *
533     libvlc_media_list_event_manager( libvlc_media_list_t *,
534                                     libvlc_exception_t * );
535 /** @} */
536
537 /*****************************************************************************
538  * Dynamic Media List
539  *****************************************************************************/
540 /** defgroup libvlc_media_list MediaList
541  * \ingroup libvlc
542  * LibVLC Media List
543  * @{ */
544
545 VLC_PUBLIC_API libvlc_dynamic_media_list_t *
546     libvlc_dynamic_media_list_new(  libvlc_media_list_t * p_mlist,
547                                     libvlc_tag_query_t * p_query,
548                                     libvlc_tag_t tag,
549                                     libvlc_exception_t * p_e );
550 VLC_PUBLIC_API void
551     libvlc_dynamic_media_list_release( libvlc_dynamic_media_list_t * p_dmlist );
552
553 VLC_PUBLIC_API void
554     libvlc_dynamic_media_list_retain( libvlc_dynamic_media_list_t * p_dmlist );
555
556 libvlc_media_list_t *
557     libvlc_dynamic_media_list_media_list( libvlc_dynamic_media_list_t * p_dmlist,
558                                           libvlc_exception_t * p_e );
559
560 /** @} */
561
562 /*****************************************************************************
563  * Media Library
564  *****************************************************************************/
565 /** defgroup libvlc_media_library Media Library
566  * \ingroup libvlc
567  * LibVLC Media Library
568  * @{
569  */
570 VLC_PUBLIC_API libvlc_media_library_t *
571     libvlc_media_library_new( libvlc_instance_t * p_inst,
572                               libvlc_exception_t * p_e );
573 VLC_PUBLIC_API void
574     libvlc_media_library_release( libvlc_media_library_t * p_mlib );
575 VLC_PUBLIC_API void
576     libvlc_media_library_retain( libvlc_media_library_t * p_mlib );
577
578
579 VLC_PUBLIC_API void
580     libvlc_media_library_load( libvlc_media_library_t * p_mlib,
581                                libvlc_exception_t * p_e );
582
583 VLC_PUBLIC_API void
584     libvlc_media_library_save( libvlc_media_library_t * p_mlib,
585                                libvlc_exception_t * p_e );
586
587 VLC_PUBLIC_API libvlc_media_list_t *
588     libvlc_media_library_media_list( libvlc_media_library_t * p_mlib,
589                                      libvlc_exception_t * p_e );
590
591
592 /** @} */
593
594 /*****************************************************************************
595  * Media List Player
596  *****************************************************************************/
597 /** defgroup libvlc_media_list_player MediaListPlayer
598  * \ingroup libvlc
599  * LibVLC Media List Player
600  * @{
601  */
602 VLC_PUBLIC_API libvlc_media_list_player_t *
603     libvlc_media_list_player_new( libvlc_instance_t * p_instance,
604                                   libvlc_exception_t * p_e );
605 VLC_PUBLIC_API void
606     libvlc_media_list_player_release( libvlc_media_list_player_t * p_mlp );
607
608 VLC_PUBLIC_API void
609     libvlc_media_list_player_set_media_instance(
610                                      libvlc_media_list_player_t * p_mlp,
611                                      libvlc_media_instance_t * p_mi,
612                                      libvlc_exception_t * p_e );
613
614 VLC_PUBLIC_API void
615     libvlc_media_list_player_set_media_list(
616                                      libvlc_media_list_player_t * p_mlp,
617                                      libvlc_media_list_t * p_mlist,
618                                      libvlc_exception_t * p_e );
619
620 VLC_PUBLIC_API void
621     libvlc_media_list_player_play( libvlc_media_list_player_t * p_mlp,
622                                    libvlc_exception_t * p_e );
623
624 VLC_PUBLIC_API void
625     libvlc_media_list_player_play_item_at_index(
626                                    libvlc_media_list_player_t * p_mlp,
627                                    int i_index,
628                                    libvlc_exception_t * p_e );
629
630 VLC_PUBLIC_API void
631     libvlc_media_list_player_stop( libvlc_media_list_player_t * p_mlp,
632                                    libvlc_exception_t * p_e );
633 VLC_PUBLIC_API void
634     libvlc_media_list_player_next( libvlc_media_list_player_t * p_mlp,
635                                    libvlc_exception_t * p_e );
636
637 /** @} */
638
639 /** defgroup libvlc_video Video
640  * \ingroup libvlc
641  * LibVLC Video handling
642  * @{
643  */
644
645 /**
646  * Does this input have a video output ?
647  * \param p_input the input
648  * \param p_exception an initialized exception
649  */
650 VLC_PUBLIC_API vlc_bool_t  libvlc_input_has_vout( libvlc_media_instance_t *, libvlc_exception_t *);
651 VLC_PUBLIC_API float       libvlc_input_get_fps( libvlc_media_instance_t *, libvlc_exception_t *);
652
653 /**
654  * Toggle fullscreen status on video output
655  * \param p_input the input
656  * \param p_exception an initialized exception
657  */
658 VLC_PUBLIC_API void libvlc_toggle_fullscreen( libvlc_media_instance_t *, libvlc_exception_t * );
659
660 /**
661  * Enable or disable fullscreen on a video output
662  * \param p_input the input
663  * \param b_fullscreen boolean for fullscreen status
664  * \param p_exception an initialized exception
665  */
666 VLC_PUBLIC_API void libvlc_set_fullscreen( libvlc_media_instance_t *, int, libvlc_exception_t * );
667
668 /**
669  * Get current fullscreen status
670  * \param p_input the input
671  * \param p_exception an initialized exception
672  * \return the fullscreen status (boolean)
673  */
674 VLC_PUBLIC_API int libvlc_get_fullscreen( libvlc_media_instance_t *, libvlc_exception_t * );
675
676 /**
677  * Get current video height
678  * \param p_input the input
679  * \param p_exception an initialized exception
680  * \return the video height
681  */
682 VLC_PUBLIC_API int libvlc_video_get_height( libvlc_media_instance_t *, libvlc_exception_t * );
683
684 /**
685  * Get current video width
686  * \param p_input the input
687  * \param p_exception an initialized exception
688  * \return the video width
689  */
690 VLC_PUBLIC_API int libvlc_video_get_width( libvlc_media_instance_t *, libvlc_exception_t * );
691
692 /**
693  * Get current video aspect ratio
694  * \param p_input the input
695  * \param p_exception an initialized exception
696  * \return the video aspect ratio
697  */
698 VLC_PUBLIC_API char *libvlc_video_get_aspect_ratio( libvlc_media_instance_t *, libvlc_exception_t * );
699
700 /**
701  * Set new video aspect ratio
702  * \param p_input the input
703  * \param psz_aspect new video aspect-ratio
704  * \param p_exception an initialized exception
705  */
706 VLC_PUBLIC_API void libvlc_video_set_aspect_ratio( libvlc_media_instance_t *, char *, libvlc_exception_t * );
707
708 /**
709  * Get current video subtitle
710  * \param p_input the input
711  * \param p_exception an initialized exception
712  * \return the video subtitle selected
713  */
714 VLC_PUBLIC_API int libvlc_video_get_spu( libvlc_media_instance_t *, libvlc_exception_t * );
715
716 /**
717  * Set new video subtitle
718  * \param p_input the input
719  * \param i_spu new video subtitle to select
720  * \param p_exception an initialized exception
721  */
722 VLC_PUBLIC_API void libvlc_video_set_spu( libvlc_media_instance_t *, int , libvlc_exception_t * );
723
724 /**
725  * Get current crop filter geometry
726  * \param p_input the input
727  * \param p_exception an initialized exception
728  * \return the crop filter geometry
729  */
730 VLC_PUBLIC_API char *libvlc_video_get_crop_geometry( libvlc_media_instance_t *, libvlc_exception_t * );
731
732 /**
733  * Set new crop filter geometry
734  * \param p_input the input
735  * \param psz_geometry new crop filter geometry
736  * \param p_exception an initialized exception
737  */
738 VLC_PUBLIC_API void libvlc_video_set_crop_geometry( libvlc_media_instance_t *, char *, libvlc_exception_t * );
739
740 /**
741  * Get current teletext page requested.
742  * \param p_input the input
743  * \param p_exception an initialized exception
744  * \return the current teletext page requested.
745  */
746 VLC_PUBLIC_API int libvlc_video_get_teletext( libvlc_media_instance_t *, libvlc_exception_t * );
747
748 /**
749  * Set new teletext page to retrieve
750  * \param p_input the input
751  * \param i_page teletex page number requested
752  * \param p_exception an initialized exception
753  */
754 VLC_PUBLIC_API void libvlc_video_set_teletext( libvlc_media_instance_t *, int, libvlc_exception_t * );
755
756 /**
757  * Take a snapshot of the current video window
758  * \param p_input the input
759  * \param psz_filepath the path where to save the screenshot to
760  * \param p_exception an initialized exception
761  */
762 VLC_PUBLIC_API void libvlc_video_take_snapshot( libvlc_media_instance_t *, char *, libvlc_exception_t * );
763
764 VLC_PUBLIC_API int libvlc_video_destroy( libvlc_media_instance_t *, libvlc_exception_t *);
765
766 /**
767  * Resize the current video output window
768  * \param p_instance libvlc instance
769  * \param width new width for video output window
770  * \param height new height for video output window
771  * \param p_exception an initialized exception
772  * \return the success status (boolean)
773  */
774 VLC_PUBLIC_API void libvlc_video_resize( libvlc_media_instance_t *, int, int, libvlc_exception_t *);
775
776 /**
777  * change the parent for the current the video output
778  * \param p_instance libvlc instance
779  * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32)
780  * \param p_exception an initialized exception
781  * \return the success status (boolean)
782  */
783 VLC_PUBLIC_API int libvlc_video_reparent( libvlc_media_instance_t *, libvlc_drawable_t, libvlc_exception_t * );
784
785 /**
786  * Tell windowless video output to redraw rectangular area (MacOS X only)
787  * \param p_instance libvlc instance
788  * \param area coordinates within video drawable
789  * \param p_exception an initialized exception
790  */
791 VLC_PUBLIC_API void libvlc_video_redraw_rectangle( libvlc_media_instance_t *, const libvlc_rectangle_t *, libvlc_exception_t * );
792
793 /**
794  * Set the default video output parent
795  *  this settings will be used as default for all video outputs
796  * \param p_instance libvlc instance
797  * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32)
798  * \param p_exception an initialized exception
799  */
800 VLC_PUBLIC_API void libvlc_video_set_parent( libvlc_instance_t *, libvlc_drawable_t, libvlc_exception_t * );
801
802 /**
803  * Set the default video output parent
804  *  this settings will be used as default for all video outputs
805  * \param p_instance libvlc instance
806  * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32)
807  * \param p_exception an initialized exception
808  */
809 VLC_PUBLIC_API libvlc_drawable_t libvlc_video_get_parent( libvlc_instance_t *, libvlc_exception_t * );
810
811 /**
812  * Set the default video output size
813  *  this settings will be used as default for all video outputs
814  * \param p_instance libvlc instance
815  * \param width new width for video drawable
816  * \param height new height for video drawable
817  * \param p_exception an initialized exception
818  */
819 VLC_PUBLIC_API void libvlc_video_set_size( libvlc_instance_t *, int, int, libvlc_exception_t * );
820
821 /**
822  * Set the default video output viewport for a windowless video output (MacOS X only)
823  *  this settings will be used as default for all video outputs
824  * \param p_instance libvlc instance
825  * \param view coordinates within video drawable
826  * \param clip coordinates within video drawable
827  * \param p_exception an initialized exception
828  */
829 VLC_PUBLIC_API void libvlc_video_set_viewport( libvlc_instance_t *, const libvlc_rectangle_t *, const libvlc_rectangle_t *, libvlc_exception_t * );
830
831 /** @} */
832
833 /** defgroup libvlc_audio Audio
834  * \ingroup libvlc
835  * LibVLC Audio handling
836  * @{
837  */
838
839 /**
840  * Toggle mute status
841  * \param p_instance libvlc instance
842  * \param p_exception an initialized exception
843  * \return void
844  */
845 VLC_PUBLIC_API void libvlc_audio_toggle_mute( libvlc_instance_t *, libvlc_exception_t * );
846
847 /**
848  * Get current mute status
849  * \param p_instance libvlc instance
850  * \param p_exception an initialized exception
851  * \return the mute status (boolean)
852  */
853 VLC_PUBLIC_API vlc_bool_t libvlc_audio_get_mute( libvlc_instance_t *, libvlc_exception_t * );
854
855 /**
856  * Set mute status
857  * \param p_instance libvlc instance
858  * \param status If status is VLC_TRUE then mute, otherwise unmute
859  * \param p_exception an initialized exception
860  * \return void
861  */
862 VLC_PUBLIC_API void libvlc_audio_set_mute( libvlc_instance_t *, vlc_bool_t , libvlc_exception_t * );
863
864 /**
865  * Get current audio level
866  * \param p_instance libvlc instance
867  * \param p_exception an initialized exception
868  * \return the audio level (int)
869  */
870 VLC_PUBLIC_API int libvlc_audio_get_volume( libvlc_instance_t *, libvlc_exception_t * );
871
872 /**
873  * Set current audio level
874  * \param p_instance libvlc instance
875  * \param i_volume the volume (int)
876  * \param p_exception an initialized exception
877  */
878 VLC_PUBLIC_API void libvlc_audio_set_volume( libvlc_instance_t *, int, libvlc_exception_t *);
879
880 /**
881 +  * Get current audio track
882 +  * \param p_input input instance
883 +  * \param p_exception an initialized exception
884 +  * \return the audio track (int)
885 +  */
886 VLC_PUBLIC_API int libvlc_audio_get_track( libvlc_media_instance_t *, libvlc_exception_t * );
887
888 /**
889  * Set current audio track
890  * \param p_input input instance
891  * \param i_track the track (int)
892  * \param p_exception an initialized exception
893  */
894 VLC_PUBLIC_API void libvlc_audio_set_track( libvlc_media_instance_t *, int, libvlc_exception_t * );
895
896 /**
897  * Get current audio channel
898  * \param p_instance input instance
899  * \param p_exception an initialized exception
900  * \return the audio channel (int)
901  */
902 VLC_PUBLIC_API int libvlc_audio_get_channel( libvlc_instance_t *, libvlc_exception_t * );
903
904 /**
905  * Set current audio channel
906  * \param p_instance input instance
907  * \param i_channel the audio channel (int)
908  * \param p_exception an initialized exception
909  */
910 VLC_PUBLIC_API void libvlc_audio_set_channel( libvlc_instance_t *, int, libvlc_exception_t * );
911
912 /** @} */
913
914 /*****************************************************************************
915  * Services/Media Discovery
916  *****************************************************************************/
917 /** defgroup libvlc_media_discoverer Media Discoverer
918  * \ingroup libvlc
919  * LibVLC Media Discoverer
920  * @{
921  */
922
923 VLC_PUBLIC_API libvlc_media_discoverer_t *
924 libvlc_media_discoverer_new_from_name( libvlc_instance_t * p_inst,
925                                        const char * psz_name,
926                                        libvlc_exception_t * p_e );
927 VLC_PUBLIC_API void   libvlc_media_discoverer_release( libvlc_media_discoverer_t * p_mdis );
928 VLC_PUBLIC_API char * libvlc_media_discoverer_localized_name( libvlc_media_discoverer_t * p_mdis );
929
930 VLC_PUBLIC_API libvlc_media_list_t * libvlc_media_discoverer_media_list( libvlc_media_discoverer_t * p_mdis );
931
932 /**@} */
933
934 /*****************************************************************************
935  * VLM
936  *****************************************************************************/
937 /** defgroup libvlc_vlm VLM
938  * \ingroup libvlc
939  * LibVLC VLM
940  * @{
941  */
942
943 /**
944  * Add a broadcast, with one input
945  * \param p_instance the instance
946  * \param psz_name the name of the new broadcast
947  * \param psz_input the input MRL
948  * \param psz_output the output MRL (the parameter to the "sout" variable)
949  * \param i_options number of additional options
950  * \param ppsz_options additional options
951  * \param b_enabled boolean for enabling the new broadcast
952  * \param b_loop Should this broadcast be played in loop ?
953  * \param p_exception an initialized exception
954  */
955 VLC_PUBLIC_API void libvlc_vlm_add_broadcast( libvlc_instance_t *, char *, char *, char* ,
956                                               int, char **, int, int, libvlc_exception_t * );
957
958 /**
959  * Delete a media (vod or broadcast)
960  * \param p_instance the instance
961  * \param psz_name the media to delete
962  * \param p_exception an initialized exception
963  */
964 VLC_PUBLIC_API void libvlc_vlm_del_media( libvlc_instance_t *, char *, libvlc_exception_t * );
965
966 /**
967  * Enable or disable a media (vod or broadcast)
968  * \param p_instance the instance
969  * \param psz_name the media to work on
970  * \param b_enabled the new status
971  * \param p_exception an initialized exception
972  */
973 VLC_PUBLIC_API void libvlc_vlm_set_enabled( libvlc_instance_t *, char *, int,
974                                             libvlc_exception_t *);
975
976 /**
977  * Set the output for a media
978  * \param p_instance the instance
979  * \param psz_name the media to work on
980  * \param psz_output the output MRL (the parameter to the "sout" variable)
981  * \param p_exception an initialized exception
982  */
983 VLC_PUBLIC_API void libvlc_vlm_set_output( libvlc_instance_t *, char *, char*,
984                                            libvlc_exception_t *);
985
986 /**
987  * Set a media's input MRL. This will delete all existing inputs and
988  * add the specified one.
989  * \param p_instance the instance
990  * \param psz_name the media to work on
991  * \param psz_input the input MRL
992  * \param p_exception an initialized exception
993  */
994 VLC_PUBLIC_API void libvlc_vlm_set_input( libvlc_instance_t *, char *, char*,
995                                           libvlc_exception_t *);
996
997 /**
998  * Add a media's input MRL. This will add the specified one.
999  * \param p_instance the instance
1000  * \param psz_name the media to work on
1001  * \param psz_input the input MRL
1002  * \param p_exception an initialized exception
1003  */
1004 VLC_PUBLIC_API void libvlc_vlm_add_input( libvlc_instance_t *, char *, char *,
1005                                           libvlc_exception_t *p_exception );
1006 /**
1007  * Set output for a media
1008  * \param p_instance the instance
1009  * \param psz_name the media to work on
1010  * \param b_loop the new status
1011  * \param p_exception an initialized exception
1012  */
1013 VLC_PUBLIC_API void libvlc_vlm_set_loop( libvlc_instance_t *, char *, int,
1014                                          libvlc_exception_t *);
1015
1016 /**
1017  * Edit the parameters of a media. This will delete all existing inputs and
1018  * add the specified one.
1019  * \param p_instance the instance
1020  * \param psz_name the name of the new broadcast
1021  * \param psz_input the input MRL
1022  * \param psz_output the output MRL (the parameter to the "sout" variable)
1023  * \param i_options number of additional options
1024  * \param ppsz_options additional options
1025  * \param b_enabled boolean for enabling the new broadcast
1026  * \param b_loop Should this broadcast be played in loop ?
1027  * \param p_exception an initialized exception
1028  */
1029 VLC_PUBLIC_API void libvlc_vlm_change_media( libvlc_instance_t *, char *, char *, char* ,
1030                                              int, char **, int, int, libvlc_exception_t * );
1031
1032 /**
1033  * Plays the named broadcast.
1034  * \param p_instance the instance
1035  * \param psz_name the name of the broadcast
1036  * \param p_exception an initialized exception
1037  */
1038 VLC_PUBLIC_API void libvlc_vlm_play_media ( libvlc_instance_t *, char *, libvlc_exception_t * );
1039
1040 /**
1041  * Stops the named broadcast.
1042  * \param p_instance the instance
1043  * \param psz_name the name of the broadcast
1044  * \param p_exception an initialized exception
1045  */ 
1046 VLC_PUBLIC_API void libvlc_vlm_stop_media ( libvlc_instance_t *, char *, libvlc_exception_t * );
1047
1048 /**
1049  * Pauses the named broadcast.
1050  * \param p_instance the instance
1051  * \param psz_name the name of the broadcast
1052  * \param p_exception an initialized exception
1053  */ 
1054 VLC_PUBLIC_API void libvlc_vlm_pause_media( libvlc_instance_t *, char *, libvlc_exception_t * );
1055     
1056 /**
1057  * Seeks in the named broadcast.
1058  * \param p_instance the instance
1059  * \param psz_name the name of the broadcast
1060  * \param f_percentage the percentage to seek to
1061  * \param p_exception an initialized exception
1062  */ 
1063 VLC_PUBLIC_API void libvlc_vlm_seek_media( libvlc_instance_t *, char *,
1064                                            float, libvlc_exception_t * );
1065    
1066 /**
1067  * Return information of the named broadcast.
1068  * \param p_instance the instance
1069  * \param psz_name the name of the broadcast
1070  * \param p_exception an initialized exception
1071  */ 
1072 VLC_PUBLIC_API char* libvlc_vlm_show_media( libvlc_instance_t *, char *, libvlc_exception_t * );
1073
1074 #define LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( attr, returnType, getType, default)\
1075 returnType libvlc_vlm_get_media_## attr( libvlc_instance_t *, \
1076                         char *, int , libvlc_exception_t * );
1077
1078 VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( position, float, Float, -1);
1079 VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( time, int, Integer, -1);
1080 VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( length, int, Integer, -1);
1081 VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( rate, int, Integer, -1);
1082 VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( title, int, Integer, 0);
1083 VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( chapter, int, Integer, 0);
1084 VLC_PUBLIC_API LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( seekable, int, Bool, 0);
1085
1086 #undef LIBVLC_VLM_GET_MEDIA_ATTRIBUTE
1087
1088 /** @} */
1089
1090 /*****************************************************************************
1091  * Message log handling
1092  *****************************************************************************/
1093
1094 /** defgroup libvlc_log Log
1095  * \ingroup libvlc
1096  * LibVLC Message Logging
1097  * @{
1098  */
1099
1100 /**
1101  * Returns the VLC messaging verbosity level
1102  * \param p_instance libvlc instance
1103  * \param exception an initialized exception pointer
1104  */
1105 VLC_PUBLIC_API unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance,
1106                                                   libvlc_exception_t *p_e );
1107
1108 /**
1109  * Set the VLC messaging verbosity level
1110  * \param p_log libvlc log instance
1111  * \param exception an initialized exception pointer
1112  */
1113 VLC_PUBLIC_API void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level,
1114                                               libvlc_exception_t *p_e );
1115
1116 /**
1117  * Open an instance to VLC message log 
1118  * \param p_instance libvlc instance
1119  * \param exception an initialized exception pointer
1120  */
1121 VLC_PUBLIC_API libvlc_log_t *libvlc_log_open( const libvlc_instance_t *, libvlc_exception_t *);
1122
1123 /**
1124  * Close an instance of VLC message log 
1125  * \param p_log libvlc log instance
1126  * \param exception an initialized exception pointer
1127  */
1128 VLC_PUBLIC_API void libvlc_log_close( libvlc_log_t *, libvlc_exception_t *);
1129
1130 /**
1131  * Returns the number of messages in log
1132  * \param p_log libvlc log instance
1133  * \param exception an initialized exception pointer
1134  */
1135 VLC_PUBLIC_API unsigned libvlc_log_count( const libvlc_log_t *, libvlc_exception_t *);
1136
1137 /**
1138  * Clear all messages in log
1139  *  the log should be cleared on a regular basis to avoid clogging
1140  * \param p_log libvlc log instance
1141  * \param exception an initialized exception pointer
1142  */
1143 VLC_PUBLIC_API void libvlc_log_clear( libvlc_log_t *, libvlc_exception_t *);
1144
1145 /**
1146  * Allocate and returns a new iterator to messages in log
1147  * \param p_log libvlc log instance
1148  * \param exception an initialized exception pointer
1149  */
1150 VLC_PUBLIC_API libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *, libvlc_exception_t *);
1151
1152 /**
1153  * Releases a previoulsy allocated iterator
1154  * \param p_log libvlc log iterator 
1155  * \param exception an initialized exception pointer
1156  */
1157 VLC_PUBLIC_API void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e );
1158
1159 /**
1160  * Returns whether log iterator has more messages 
1161  * \param p_log libvlc log iterator
1162  * \param exception an initialized exception pointer
1163  */
1164 VLC_PUBLIC_API int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e );
1165
1166 /**
1167  * Returns next log message
1168  *   the content of message must not be freed
1169  * \param p_log libvlc log iterator
1170  * \param exception an initialized exception pointer
1171  */
1172 VLC_PUBLIC_API libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter,
1173                                                                struct libvlc_log_message_t *buffer,
1174                                                                libvlc_exception_t *p_e );
1175
1176 /** @} */
1177
1178 /*****************************************************************************
1179  * Event handling
1180  *****************************************************************************/
1181
1182 /** defgroup libvlc_callbacks Callbacks
1183  * \ingroup libvlc
1184  * LibVLC Events
1185  * @{
1186  */
1187
1188 /**
1189  * Register for an event notification
1190  * \param p_event_manager the event manager to which you want to attach to
1191  * Generally it is obtained by vlc_my_object_event_manager() where my_object
1192  * Is the object you want to listen to.
1193  * \param i_event_type the desired event to which we want to listen
1194  * \param f_callback the function to call when i_event_type occurs
1195  * \param user_data user provided data to carry with the event
1196  * \param p_e an initialized exception pointer
1197  */
1198 VLC_PUBLIC_API void libvlc_event_attach( libvlc_event_manager_t *p_event_manager,
1199                                          libvlc_event_type_t i_event_type,
1200                                          libvlc_callback_t f_callback,
1201                                          void *user_data,
1202                                          libvlc_exception_t *p_e );
1203
1204 /**
1205  * Unregister an event notification
1206  * \param p_event_manager the event manager
1207  * \param i_event_type the desired event to which we want to unregister
1208  * \param f_callback the function to call when i_event_type occurs
1209  * \param p_e an initialized exception pointer
1210  */
1211 VLC_PUBLIC_API void libvlc_event_detach( libvlc_event_manager_t *p_event_manager,
1212                                          libvlc_event_type_t i_event_type,
1213                                          libvlc_callback_t f_callback,
1214                                          void *p_user_data,
1215                                          libvlc_exception_t *p_e );
1216
1217
1218 /**
1219  * Get an event type name 
1220  * \param i_event_type the desired event
1221  */
1222 #define libvlc_event_type_name(a) #a
1223
1224 /** @} */
1225
1226
1227 # ifdef __cplusplus
1228 }
1229 # endif
1230
1231 #endif /* <vlc/libvlc.h> */