Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
1e88a96b
Commit
1e88a96b
authored
May 08, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libvlc_log_*: document version requirement
parent
c4834412
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
include/vlc/libvlc.h
include/vlc/libvlc.h
+4
-1
No files found.
include/vlc/libvlc.h
View file @
1e88a96b
...
...
@@ -375,6 +375,7 @@ typedef struct libvlc_log_subscriber
*
* \warning Do not call this function from within a logging callback.
* It would trigger a dead lock.
* \version LibVLC 2.1.0 or later
*/
LIBVLC_API
void
libvlc_log_subscribe
(
libvlc_log_subscriber_t
*
sub
,
libvlc_log_cb
cb
,
void
*
data
);
...
...
@@ -382,8 +383,9 @@ LIBVLC_API void libvlc_log_subscribe( libvlc_log_subscriber_t *sub,
/**
* Registers a logging callback to a file.
*
@
param stream FILE pointer opened for writing
*
\
param stream FILE pointer opened for writing
* (the FILE pointer must remain valid until libvlc_log_unsubscribe())
* \version LibVLC 2.1.0 or later
*/
LIBVLC_API
void
libvlc_log_subscribe_file
(
libvlc_log_subscriber_t
*
sub
,
FILE
*
stream
);
...
...
@@ -400,6 +402,7 @@ LIBVLC_API void libvlc_log_subscribe_file( libvlc_log_subscriber_t *sub,
* It would trigger a dead lock.
*
* \param sub initialized subscriber structure
* \version LibVLC 2.1.0 or later
*/
LIBVLC_API
void
libvlc_log_unsubscribe
(
libvlc_log_subscriber_t
*
sub
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment