Changeset 3a101f3a6acb6355f280176aa74b5d437c013876
- Timestamp:
- 04/06/08 17:30:06
(5 months ago)
- Author:
- Filippo Carone <littlejohn@videolan.org>
- git-committer:
- Filippo Carone <littlejohn@videolan.org> 1207495806 +0200
- git-parent:
[d33acd731f8d13bd6f21823cfad8cadae469b684]
- git-author:
- Cristian Maglie <megabug@autistici.org> 1207495729 +0200
- Message:
libvlc.h: fixed doxygen for log functions. changed prototype for libvlc_log_iterator_next (used typedef'ed version)
Signed-off-by: Filippo Carone <littlejohn@videolan.org>
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r001ec5a |
r3a101f3 |
|
| 71 | 71 | * |
|---|
| 72 | 72 | * \param p_exception the exception to raise |
|---|
| 73 | | * \param psz_message the exception message format string |
|---|
| | 73 | * \param psz_format the exception message format string |
|---|
| 74 | 74 | * \param ... the format string arguments |
|---|
| 75 | 75 | */ |
|---|
| … | … | |
| 788 | 788 | * \param i_event_type the desired event to which we want to unregister |
|---|
| 789 | 789 | * \param f_callback the function to call when i_event_type occurs |
|---|
| | 790 | * \param p_user_data user provided data to carry with the event |
|---|
| 790 | 791 | * \param p_e an initialized exception pointer |
|---|
| 791 | 792 | */ |
|---|
| … | … | |
| 879 | 880 | * |
|---|
| 880 | 881 | * \param p_instance libvlc instance |
|---|
| 881 | | * \param exception an initialized exception pointer |
|---|
| | 882 | * \param p_e an initialized exception pointer |
|---|
| 882 | 883 | */ |
|---|
| 883 | 884 | VLC_PUBLIC_API unsigned libvlc_get_log_verbosity( const libvlc_instance_t *p_instance, |
|---|
| … | … | |
| 887 | 888 | * Set the VLC messaging verbosity level. |
|---|
| 888 | 889 | * |
|---|
| 889 | | * \param p_log libvlc log instance |
|---|
| 890 | | * \param exception an initialized exception pointer |
|---|
| | 890 | * \param p_instance libvlc log instance |
|---|
| | 891 | * \param level log level |
|---|
| | 892 | * \param p_e an initialized exception pointer |
|---|
| 891 | 893 | */ |
|---|
| 892 | 894 | VLC_PUBLIC_API void libvlc_set_log_verbosity( libvlc_instance_t *p_instance, unsigned level, |
|---|
| … | … | |
| 897 | 899 | * |
|---|
| 898 | 900 | * \param p_instance libvlc instance |
|---|
| 899 | | * \param exception an initialized exception pointer |
|---|
| | 901 | * \param p_e an initialized exception pointer |
|---|
| 900 | 902 | */ |
|---|
| 901 | 903 | VLC_PUBLIC_API libvlc_log_t *libvlc_log_open( libvlc_instance_t *, libvlc_exception_t *); |
|---|
| … | … | |
| 905 | 907 | * |
|---|
| 906 | 908 | * \param p_log libvlc log instance |
|---|
| 907 | | * \param exception an initialized exception pointer |
|---|
| | 909 | * \param p_e an initialized exception pointer |
|---|
| 908 | 910 | */ |
|---|
| 909 | 911 | VLC_PUBLIC_API void libvlc_log_close( libvlc_log_t *, libvlc_exception_t *); |
|---|
| … | … | |
| 913 | 915 | * |
|---|
| 914 | 916 | * \param p_log libvlc log instance |
|---|
| 915 | | * \param exception an initialized exception pointer |
|---|
| | 917 | * \param p_e an initialized exception pointer |
|---|
| 916 | 918 | */ |
|---|
| 917 | 919 | VLC_PUBLIC_API unsigned libvlc_log_count( const libvlc_log_t *, libvlc_exception_t *); |
|---|
| … | … | |
| 924 | 926 | * |
|---|
| 925 | 927 | * \param p_log libvlc log instance |
|---|
| 926 | | * \param exception an initialized exception pointer |
|---|
| | 928 | * \param p_e an initialized exception pointer |
|---|
| 927 | 929 | */ |
|---|
| 928 | 930 | VLC_PUBLIC_API void libvlc_log_clear( libvlc_log_t *, libvlc_exception_t *); |
|---|
| … | … | |
| 932 | 934 | * |
|---|
| 933 | 935 | * \param p_log libvlc log instance |
|---|
| 934 | | * \param exception an initialized exception pointer |
|---|
| | 936 | * \param p_e an initialized exception pointer |
|---|
| 935 | 937 | */ |
|---|
| 936 | 938 | VLC_PUBLIC_API libvlc_log_iterator_t *libvlc_log_get_iterator( const libvlc_log_t *, libvlc_exception_t *); |
|---|
| … | … | |
| 939 | 941 | * Release a previoulsy allocated iterator. |
|---|
| 940 | 942 | * |
|---|
| 941 | | * \param p_log libvlc log iterator |
|---|
| 942 | | * \param exception an initialized exception pointer |
|---|
| | 943 | * \param p_iter libvlc log iterator |
|---|
| | 944 | * \param p_e an initialized exception pointer |
|---|
| 943 | 945 | */ |
|---|
| 944 | 946 | VLC_PUBLIC_API void libvlc_log_iterator_free( libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e ); |
|---|
| … | … | |
| 947 | 949 | * Return whether log iterator has more messages. |
|---|
| 948 | 950 | * |
|---|
| 949 | | * \param p_log libvlc log iterator |
|---|
| 950 | | * \param exception an initialized exception pointer |
|---|
| | 951 | * \param p_iter libvlc log iterator |
|---|
| | 952 | * \param p_e an initialized exception pointer |
|---|
| 951 | 953 | */ |
|---|
| 952 | 954 | VLC_PUBLIC_API int libvlc_log_iterator_has_next( const libvlc_log_iterator_t *p_iter, libvlc_exception_t *p_e ); |
|---|
| … | … | |
| 957 | 959 | * The message contents must not be freed |
|---|
| 958 | 960 | * |
|---|
| 959 | | * \param p_log libvlc log iterator |
|---|
| 960 | | * \param exception an initialized exception pointer |
|---|
| | 961 | * \param p_iter libvlc log iterator |
|---|
| | 962 | * \param p_buffer log buffer |
|---|
| | 963 | * \param p_e an initialized exception pointer |
|---|
| 961 | 964 | */ |
|---|
| 962 | 965 | VLC_PUBLIC_API libvlc_log_message_t *libvlc_log_iterator_next( libvlc_log_iterator_t *p_iter, |
|---|
| 963 | | struct libvlc_log_message_t *buffer, |
|---|
| | 966 | libvlc_log_message_t *p_buffer, |
|---|
| 964 | 967 | libvlc_exception_t *p_e ); |
|---|
| 965 | 968 | |
|---|