]> git.sesse.net Git - vlc/blob - include/vlc/libvlc.h
Remove libvlc_set_video_drawable, libvlc_video_set_parent offers the same functionality
[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  *
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /**
25  * \defgroup libvlc Libvlc
26  * This is libvlc, the base library of the VLC program.
27  *
28  * @{
29  */
30
31
32 #ifndef _LIBVLC_H
33 #define _LIBVLC_H 1
34
35 #include <vlc/vlc.h>
36
37 # ifdef __cplusplus
38 extern "C" {
39 # endif
40
41 /*****************************************************************************
42  * Exception handling
43  *****************************************************************************/
44 /** defgroup libvlc_exception Exceptions
45  * \ingroup libvlc
46  * LibVLC Exceptions handling
47  * @{
48  */
49
50 struct libvlc_exception_t
51 {
52     int b_raised;
53     char *psz_message;
54 };
55 typedef struct libvlc_exception_t libvlc_exception_t;
56
57 /**
58  * Initialize an exception structure. This can be called several times to reuse
59  * an exception structure.
60  * \param p_exception the exception to initialize
61  */
62 void libvlc_exception_init( libvlc_exception_t *p_exception );
63
64 /**
65  * Has an exception been raised ?
66  * \param p_exception the exception to query
67  * \return 0 if no exception raised, 1 else
68  */
69 int libvlc_exception_raised( libvlc_exception_t *p_exception );
70
71 /**
72  * Raise an exception
73  * \param p_exception the exception to raise
74  * \param psz_message the exception message
75  */
76 void libvlc_exception_raise( libvlc_exception_t *p_exception, const char *psz_format, ... );
77
78 /**
79  * Clear an exception object so it can be reused.
80  * The exception object must be initialized
81  * \param p_exception the exception to clear
82  */
83 void libvlc_exception_clear( libvlc_exception_t * );
84
85 /**
86  * Get exception message
87  * \param p_exception the exception to query
88  * \return the exception message or NULL if not applicable (exception not raised
89  * for example)
90  */
91 char* libvlc_exception_get_message( libvlc_exception_t *p_exception );
92
93 /**@} */
94
95 /*****************************************************************************
96  * Core handling
97  *****************************************************************************/
98
99 /** defgroup libvlc_core Core
100  * \ingroup libvlc
101  * LibVLC Core
102  * @{
103  */
104
105 /** This structure is opaque. It represents a libvlc instance */
106 typedef struct libvlc_instance_t libvlc_instance_t;
107
108 /**
109  * Create an initialized libvlc instance
110  * \param argc the number of arguments
111  * \param argv command-line-type arguments
112  * \param exception an initialized exception pointer
113  */
114 libvlc_instance_t * libvlc_new( int , char **, libvlc_exception_t *);
115
116 /**
117  * Returns a libvlc instance identifier for legacy APIs. Use of this
118  * function is discouraged, you should convert your program to use the
119  * new API.
120  * \param p_instance the instance
121  */
122 int libvlc_get_vlc_id( libvlc_instance_t *p_instance );
123
124 /**
125  * Destroy a libvlc instance.
126  * \param p_instance the instance to destroy
127  */
128 void libvlc_destroy( libvlc_instance_t *, libvlc_exception_t * );
129
130 /** @}*/
131
132 /*****************************************************************************
133  * Playlist
134  *****************************************************************************/
135 /** defgroup libvlc_playlist Playlist
136  * \ingroup libvlc
137  * LibVLC Playlist handling
138  * @{
139  */
140
141 /**
142  * Set loop variable
143  */
144 void libvlc_playlist_loop( libvlc_instance_t* , vlc_bool_t, libvlc_exception_t * );
145
146 /**
147  * Start playing. You can give some additionnal playlist item options
148  * that will be added to the item before playing it.
149  * \param p_instance the instance
150  * \param i_id the item to play. If this is a negative number, the next
151  * item will be selected. Else, the item with the given ID will be played
152  * \param i_options the number of options to add to the item
153  * \param ppsz_options the options to add to the item
154  * \param p_exception an initialized exception
155  */
156 void libvlc_playlist_play( libvlc_instance_t*, int, int, char **,
157                            libvlc_exception_t * );
158
159 /**
160  * Pause a running playlist, resume if it was stopped
161  * \param p_instance the instance to pause
162  * \param p_exception an initialized exception
163  */
164 void libvlc_playlist_pause( libvlc_instance_t *, libvlc_exception_t * );
165
166 /**
167  * Checks if the playlist is running
168  * \param p_instance the instance
169  * \param p_exception an initialized exception
170  * \return 0 if the playlist is stopped or paused, 1 if it is running
171  */
172 int libvlc_playlist_isplaying( libvlc_instance_t *, libvlc_exception_t * );
173
174 /**
175  * Get the number of items in the playlist
176  * \param p_instance the instance
177  * \param p_exception an initialized exception
178  * \return the number of items
179  */
180 int libvlc_playlist_items_count( libvlc_instance_t *, libvlc_exception_t * );
181
182 /**
183  * Stop playing
184  * \param p_instance the instance to stop
185  * \param p_exception an initialized exception
186  */
187 void libvlc_playlist_stop( libvlc_instance_t *, libvlc_exception_t * );
188
189 /**
190  * Go to next playlist item (starts playback if it was stopped)
191  * \param p_instance the instance to use
192  * \param p_exception an initialized exception
193  */
194 void libvlc_playlist_next( libvlc_instance_t *, libvlc_exception_t * );
195
196 /**
197  * Go to previous playlist item (starts playback if it was stopped)
198  * \param p_instance the instance to use
199  * \param p_exception an initialized exception
200  */
201 void libvlc_playlist_prev( libvlc_instance_t *, libvlc_exception_t * );
202
203 /**
204  * Remove all playlist items
205  * \param p_instance the instance
206  * \param p_exception an initialized exception
207  */
208 void libvlc_playlist_clear( libvlc_instance_t *, libvlc_exception_t * );
209
210 /**
211  * Add an item at the end of the playlist
212  * If you need more advanced options, \see libvlc_playlist_add_extended
213  * \param p_instance the instance
214  * \param psz_uri the URI to open, using VLC format
215  * \param psz_name a name that you might want to give or NULL
216  * \return the identifier of the new item
217  */
218 int libvlc_playlist_add( libvlc_instance_t *, const char *, const char *,
219                          libvlc_exception_t * );
220
221 /**
222  * Add an item at the end of the playlist, with additional input options
223  * \param p_instance the instance
224  * \param psz_uri the URI to open, using VLC format
225  * \param psz_name a name that you might want to give or NULL
226  * \param i_options the number of options to add
227  * \param ppsz_options strings representing the options to add
228  * \param p_exception an initialized exception
229  * \return the identifier of the new item
230  */
231 int libvlc_playlist_add_extended( libvlc_instance_t *, const char *,
232                                   const char *, int, const char **,
233                                   libvlc_exception_t * );
234
235 /** 
236  * Delete the playlist item with the given ID.
237  * \param p_instance the instance
238  * \param i_id the id to remove
239  * \param p_exception an initialized exception
240  * \return
241  */
242 int libvlc_playlist_delete_item( libvlc_instance_t *, int,
243                                  libvlc_exception_t * );
244
245 typedef struct libvlc_input_t libvlc_input_t;
246
247 /* Get the input that is currently being played by the playlist
248  * \param p_instance the instance to use
249  * \param p_exception an initialized excecption
250  * \return an input object
251  */
252 libvlc_input_t *libvlc_playlist_get_input( libvlc_instance_t *,
253                                            libvlc_exception_t * );
254
255 /** @}*/
256
257 /*****************************************************************************
258  * Input
259  *****************************************************************************/
260 /** defgroup libvlc_input Input
261  * \ingroup libvlc
262  * LibVLC Input handling
263  * @{
264  */
265
266 /** Free an input object
267  * \param p_input the input to free
268  */
269 void libvlc_input_free( libvlc_input_t * );
270
271 /// \bug This might go away ... to be replaced by a broader system
272 vlc_int64_t libvlc_input_get_length     ( libvlc_input_t *, libvlc_exception_t *);
273 vlc_int64_t libvlc_input_get_time       ( libvlc_input_t *, libvlc_exception_t *);
274 void        libvlc_input_set_time       ( libvlc_input_t *, vlc_int64_t, libvlc_exception_t *);
275 float       libvlc_input_get_position   ( libvlc_input_t *, libvlc_exception_t *);
276 void        libvlc_input_set_position   ( libvlc_input_t *, float, libvlc_exception_t *);
277 vlc_bool_t  libvlc_input_will_play      ( libvlc_input_t *, libvlc_exception_t *);
278 float       libvlc_input_get_rate       ( libvlc_input_t *, libvlc_exception_t *);
279 void        libvlc_input_set_rate       ( libvlc_input_t *, float, libvlc_exception_t *);
280 int         libvlc_input_get_state      ( libvlc_input_t *, libvlc_exception_t *);
281
282 /** @} */
283
284 /** defgroup libvlc_video Video
285  * \ingroup libvlc
286  * LibVLC Video handling
287  * @{
288  */
289
290 typedef int libvlc_drawable_t;
291
292 /**
293  * Does this input have a video output ?
294  * \param p_input the input
295  * \param p_exception an initialized exception
296  */
297 vlc_bool_t  libvlc_input_has_vout       ( libvlc_input_t *, libvlc_exception_t *);
298 float       libvlc_input_get_fps        ( libvlc_input_t *, libvlc_exception_t *);
299
300 /**
301  * Toggle fullscreen status on video output
302  * \param p_input the input
303  * \param p_exception an initialized exception
304  */
305 void libvlc_toggle_fullscreen( libvlc_input_t *, libvlc_exception_t * );
306
307 /**
308  * Enable or disable fullscreen on a video output
309  * \param p_input the input
310  * \param b_fullscreen boolean for fullscreen status
311  * \param p_exception an initialized exception
312  */
313 void libvlc_set_fullscreen( libvlc_input_t *, int, libvlc_exception_t * );
314
315 /**
316  * Get current fullscreen status
317  * \param p_input the input
318  * \param p_exception an initialized exception
319  * \return the fullscreen status (boolean)
320  */
321 int libvlc_get_fullscreen( libvlc_input_t *, libvlc_exception_t * );
322
323 /**
324  * Get current video height
325  * \param p_input the input
326  * \param p_exception an initialized exception
327  * \return the video height
328  */
329 int libvlc_video_get_height( libvlc_input_t *, libvlc_exception_t * );
330
331 /**
332  * Get current video width
333  * \param p_input the input
334  * \param p_exception an initialized exception
335  * \return the video width
336  */
337 int libvlc_video_get_width( libvlc_input_t *, libvlc_exception_t * );
338
339 /**
340  * Get current video aspect ratio
341  * \param p_input the input
342  * \param p_exception an initialized exception
343  * \return the video aspect ratio
344  */
345 char *libvlc_video_get_aspect_ratio( libvlc_input_t *, libvlc_exception_t * );
346
347 /**
348  * Set new video aspect ratio
349  * \param p_input the input
350  * \param psz_aspect new video aspect-ratio
351  * \param p_exception an initialized exception
352  */
353 void libvlc_video_set_aspect_ratio( libvlc_input_t *, char *, libvlc_exception_t * );
354
355 /**
356  * Take a snapshot of the current video window
357  * \param p_input the input
358  * \param psz_filepath the path where to save the screenshot to
359  * \param p_exception an initialized exception
360  */
361 void libvlc_video_take_snapshot( libvlc_input_t *, char *, libvlc_exception_t * );
362
363 int libvlc_video_destroy( libvlc_input_t *, libvlc_exception_t *);
364
365 /**
366  * Resize the current video output window
367  * \param p_instance libvlc instance
368  * \param width new width for video output window
369  * \param height new height for video output window
370  * \param p_exception an initialized exception
371  * \return the mute status (boolean)
372  */
373 void libvlc_video_resize( libvlc_input_t *, int, int, libvlc_exception_t *);
374
375 /**
376 * Downcast to this general type as placeholder for a platform specific one, such as:
377 *  Drawable on X11,
378 *  CGrafPort on MacOSX,
379 *  HWND on win32
380 */
381
382 /**
383  * change the parent for the current the video output
384  * \param p_instance libvlc instance
385  * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32)
386  * \param p_exception an initialized exception
387  * \return the mute status (boolean)
388  */
389 int libvlc_video_reparent( libvlc_input_t *, libvlc_drawable_t, libvlc_exception_t * );
390
391 /**
392  * Set the default video output parent
393  *  this settings will be used as default for all video outputs
394  * \param p_instance libvlc instance
395  * \param drawable the new parent window (Drawable on X11, CGrafPort on MacOSX, HWND on Win32)
396  * \param p_exception an initialized exception
397  */
398 void libvlc_video_set_parent( libvlc_instance_t *, libvlc_drawable_t, libvlc_exception_t * );
399
400 /**
401  * Set the default video output size
402  *  this settings will be used as default for all video outputs
403  * \param p_instance libvlc instance
404  * \param width new width for video drawable
405  * \param height new height for video drawable
406  * \param p_exception an initialized exception
407  */
408 void libvlc_video_set_size( libvlc_instance_t *, int, int, libvlc_exception_t * );
409
410 /**
411 * Downcast to this general type as placeholder for a platform specific one, such as:
412 *  Drawable on X11,
413 *  CGrafPort on MacOSX,
414 *  HWND on win32
415 */
416 typedef struct
417 {
418     int top, left;
419     int bottom, right;
420 }
421 libvlc_rectangle_t;
422
423 /**
424  * Set the default video output viewport for a windowless video output (MacOS X only)
425  *  this settings will be used as default for all video outputs
426  * \param p_instance libvlc instance
427  * \param view coordinates within video drawable
428  * \param clip coordinates within video drawable
429  * \param p_exception an initialized exception
430  */
431 void libvlc_video_set_viewport( libvlc_instance_t *, const libvlc_rectangle_t *, const libvlc_rectangle_t *, libvlc_exception_t * );
432
433
434 /** @} */
435
436 /**
437  * defgroup libvlc_vlm VLM
438  * \ingroup libvlc
439  * LibVLC VLM handling
440  * @{
441  */
442
443 /** defgroup libvlc_audio Audio
444  * \ingroup libvlc
445  * LibVLC Audio handling
446  * @{
447  */
448
449 /**
450  * Toggle mute status
451  * \param p_instance libvlc instance
452  * \param p_exception an initialized exception
453  * \return void
454  */
455 void libvlc_audio_toggle_mute( libvlc_instance_t *, libvlc_exception_t * );
456
457 /**
458  * Get current mute status
459  * \param p_instance libvlc instance
460  * \param p_exception an initialized exception
461  * \return the mute status (boolean)
462  */
463 vlc_bool_t libvlc_audio_get_mute( libvlc_instance_t *, libvlc_exception_t * );
464
465 /**
466  * Set mute status
467  * \param p_instance libvlc instance
468  * \param status If status is VLC_TRUE then mute, otherwise unmute
469  * \param p_exception an initialized exception
470  * \return void
471  */
472 void libvlc_audio_set_mute( libvlc_instance_t *, vlc_bool_t , libvlc_exception_t * );
473
474 /**
475  * Get current audio level
476  * \param p_instance libvlc instance
477  * \param p_exception an initialized exception
478  * \return the audio level (int)
479  */
480 int libvlc_audio_get_volume( libvlc_instance_t *, libvlc_exception_t * );
481
482 /**
483  * Set current audio level
484  * \param p_instance libvlc instance
485  * \param i_volume the volume (int)
486  * \param p_exception an initialized exception
487  * \return void
488  */
489 void libvlc_audio_set_volume( libvlc_instance_t *, int , libvlc_exception_t *);
490
491 /** @} */
492
493
494 /**
495  * Add a broadcast, with one input
496  * \param p_instance the instance
497  * \param psz_name the name of the new broadcast
498  * \param psz_input the input MRL
499  * \param psz_output the output MRL (the parameter to the "sout" variable)
500  * \param i_options number of additional options
501  * \param ppsz_options additional options
502  * \param b_enabled boolean for enabling the new broadcast
503  * \param b_loop Should this broadcast be played in loop ?
504  * \param p_exception an initialized exception
505  */
506 void libvlc_vlm_add_broadcast( libvlc_instance_t *, char *, char *, char* ,
507                                int, char **, int, int, libvlc_exception_t * );
508
509 /**
510  * Delete a media (vod or broadcast)
511  * \param p_instance the instance
512  * \param psz_name the media to delete
513  * \param p_exception an initialized exception
514  */
515 void libvlc_vlm_del_media( libvlc_instance_t *, char *, libvlc_exception_t * );
516
517 /**
518  * Enable or disable a media (vod or broadcast)
519  * \param p_instance the instance
520  * \param psz_name the media to work on
521  * \param b_enabled the new status
522  * \param p_exception an initialized exception
523  */
524 void libvlc_vlm_set_enabled( libvlc_instance_t *, char *, int,
525                              libvlc_exception_t *);
526
527 /**
528  * Set the output for a media
529  * \param p_instance the instance
530  * \param psz_name the media to work on
531  * \param psz_output the output MRL (the parameter to the "sout" variable)
532  * \param p_exception an initialized exception
533  */
534 void libvlc_vlm_set_output( libvlc_instance_t *, char *, char*,
535                             libvlc_exception_t *);
536
537 /**
538  * Set a media's input MRL. This will delete all existing inputs and
539  * add the specified one.
540  * \param p_instance the instance
541  * \param psz_name the media to work on
542  * \param psz_input the input MRL
543  * \param p_exception an initialized exception
544  */
545 void libvlc_vlm_set_input( libvlc_instance_t *, char *, char*,
546                            libvlc_exception_t *);
547
548 /**
549  * Set output for a media
550  * \param p_instance the instance
551  * \param psz_name the media to work on
552  * \param b_loop the new status
553  * \param p_exception an initialized exception
554  */
555 void libvlc_vlm_set_loop( libvlc_instance_t *, char *, int,
556                           libvlc_exception_t *);
557
558 /**
559  * Edit the parameters of a media. This will delete all existing inputs and
560  * add the specified one.
561  * \param p_instance the instance
562  * \param psz_name the name of the new broadcast
563  * \param psz_input the input MRL
564  * \param psz_output the output MRL (the parameter to the "sout" variable)
565  * \param i_options number of additional options
566  * \param ppsz_options additional options
567  * \param b_enabled boolean for enabling the new broadcast
568  * \param b_loop Should this broadcast be played in loop ?
569  * \param p_exception an initialized exception
570  */
571 void libvlc_vlm_change_media( libvlc_instance_t *, char *, char *, char* ,
572                               int, char **, int, int, libvlc_exception_t * );
573
574 /**
575  * Plays the named broadcast.
576  * \param p_instance the instance
577  * \param psz_name the name of the broadcast
578  * \param p_exception an initialized exception
579  */
580 void libvlc_vlm_play_media ( libvlc_instance_t *, char *, libvlc_exception_t * );
581
582 /**
583  * Stops the named broadcast.
584  * \param p_instance the instance
585  * \param psz_name the name of the broadcast
586  * \param p_exception an initialized exception
587  */ 
588 void libvlc_vlm_stop_media ( libvlc_instance_t *, char *, libvlc_exception_t * );
589
590 /**
591  * Pauses the named broadcast.
592  * \param p_instance the instance
593  * \param psz_name the name of the broadcast
594  * \param p_exception an initialized exception
595  */ 
596 void libvlc_vlm_pause_media( libvlc_instance_t *, char *, libvlc_exception_t * );
597     
598 /**
599  * Seeks in the named broadcast.
600  * \param p_instance the instance
601  * \param psz_name the name of the broadcast
602  * \param f_percentage the percentage to seek to
603  * \param p_exception an initialized exception
604  */ 
605 void libvlc_vlm_seek_media( libvlc_instance_t *, char *,
606                             float, libvlc_exception_t * );
607    
608 /**
609  * Return information of the named broadcast.
610  * \param p_instance the instance
611  * \param psz_name the name of the broadcast
612  * \param p_exception an initialized exception
613  */ 
614 char* libvlc_vlm_show_media( libvlc_instance_t *, char *, libvlc_exception_t * );
615
616 #define LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( attr, returnType, getType, default)\
617 returnType libvlc_vlm_get_media_## attr( libvlc_instance_t *, \
618                         char *, int , libvlc_exception_t * );
619
620 LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( position, float, Float, -1);
621 LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( time, int, Integer, -1);
622 LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( length, int, Integer, -1);
623 LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( rate, int, Integer, -1);
624 LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( title, int, Integer, 0);
625 LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( chapter, int, Integer, 0);
626 LIBVLC_VLM_GET_MEDIA_ATTRIBUTE( seekable, int, Bool, 0);
627
628 #undef LIBVLC_VLM_GET_MEDIA_ATTRIBUTE
629
630 /** @} */
631 /** @} */
632
633 /*****************************************************************************
634  * Message log handling
635  *****************************************************************************/
636
637 /** defgroup libvlc_log Log
638  * \ingroup libvlc
639  * LibVLC Message Logging
640  * @{
641  */
642
643 /** This structure is opaque. It represents a libvlc log instance */
644 typedef struct libvlc_log_t libvlc_log_t;
645
646 /** This structure is opaque. It represents a libvlc log iterator */
647 typedef struct libvlc_log_iterator_t libvlc_log_iterator_t;
648
649 typedef struct libvlc_log_message_t
650 {
651     unsigned    sizeof_msg;   /* sizeof() of message structure, must be filled in by user */
652     int         i_severity;   /* 0=INFO, 1=ERR, 2=WARN, 3=DBG */
653     const char *psz_type;     /* module type */
654     const char *psz_name;     /* module name */
655     const char *psz_header;   /* optional header */
656     const char *psz_message;  /* message */
657 } libvlc_log_message_t;
658
659 /**
660  * Returns the VLC messaging verbosity level
661  * \param p_instance libvlc instance
662  * \param exception an initialized exception pointer
663  */
664 unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance, libvlc_exception_t *p_e );
665
666 /**
667  * Set the VLC messaging verbosity level
668  * \param p_log libvlc log instance
669  * \param exception an initialized exception pointer
670  */
671 void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level, libvlc_exception_t *p_e );
672
673 /**
674  * Open an instance to VLC message log 
675  * \param p_instance libvlc instance
676  * \param exception an initialized exception pointer
677  */
678 libvlc_log_t *libvlc_log_open( const libvlc_instance_t *, libvlc_exception_t *);
679
680 /**
681  * Close an instance of VLC message log 
682  * \param p_log libvlc log instance
683  * \param exception an initialized exception pointer
684  */
685 void libvlc_log_close( libvlc_log_t *, libvlc_exception_t *);
686
687 /**
688  * Returns the number of messages in log
689  * \param p_log libvlc log instance
690  * \param exception an initialized exception pointer
691  */
692 unsigned libvlc_log_count( const libvlc_log_t *, libvlc_exception_t *);
693
694 /**
695  * Clear all messages in log
696  *  the log should be cleared on a regular basis to avoid clogging
697  * \param p_log libvlc log instance
698  * \param exception an initialized exception pointer
699  */
700 void libvlc_log_clear( libvlc_log_t *, libvlc_exception_t *);
701
702 /**
703  * Allocate and returns a new iterator to messages in log
704  * \param p_log libvlc log instance
705  * \param exception an initialized exception pointer
706  */
707 libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *, libvlc_exception_t *);
708
709 /**
710  * Releases a previoulsy allocated iterator
711  * \param p_log libvlc log iterator 
712  * \param exception an initialized exception pointer
713  */
714 void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e );
715
716 /**
717  * Returns whether log iterator has more messages 
718  * \param p_log libvlc log iterator
719  * \param exception an initialized exception pointer
720  */
721 int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e );
722
723 /**
724  * Returns next log message
725  *   the content of message must not be freed
726  * \param p_log libvlc log iterator
727  * \param exception an initialized exception pointer
728  */
729 libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter,
730                                                 struct libvlc_log_message_t *buffer,
731                                                 libvlc_exception_t *p_e );
732
733 /** @} */
734
735 # ifdef __cplusplus
736 }
737 # endif
738
739 #endif /* <vlc/libvlc.h> */