Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
04f19d0c
Commit
04f19d0c
authored
Jun 14, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
events: Fix docs.
parent
0ac31c77
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
include/vlc_events.h
include/vlc_events.h
+3
-3
No files found.
include/vlc_events.h
View file @
04f19d0c
...
...
@@ -69,7 +69,7 @@
* vlc_my_cool_object_new()
* {
* ...
* vlc_event_manager_
Create( &p_self->p_event_manager, p_this
);
* vlc_event_manager_
init( &p_self->p_event_manager, p_self, p_a_libvlc_object
);
* vlc_event_manager_register_event_type(p_self->p_event_manager,
* vlc_MyCoolObjectDidSomething, p_e)
* ...
...
...
@@ -78,7 +78,7 @@
* vlc_my_cool_object_release()
* {
* ...
* vlc_event_manager_
release(
p_self->p_event_manager );
* vlc_event_manager_
fini( &
p_self->p_event_manager );
* ...
* }
*
...
...
@@ -88,7 +88,7 @@
* vlc_event_t event;
* event.type = vlc_MyCoolObjectDidSomething;
* event.u.my_cool_object_did_something.what_it_did = kSomething;
* vlc_event_send( p_self->p_event_manager, &event );
* vlc_event_send(
&
p_self->p_event_manager, &event );
* }
* */
...
...
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