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
deb763e0
Commit
deb763e0
authored
Jan 27, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove old VLC_MODULE_PROGRAM (we broke the ABI many times over)
parent
fbb78845
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
6 deletions
+1
-6
include/vlc_plugin.h
include/vlc_plugin.h
+1
-2
src/modules/entry.c
src/modules/entry.c
+0
-4
No files found.
include/vlc_plugin.h
View file @
deb763e0
...
...
@@ -2,7 +2,7 @@
* vlc_plugin.h : Macros used from within a module.
*****************************************************************************
* Copyright (C) 2001-2006 the VideoLAN team
* Copyright © 2007-200
8
Rémi Denis-Courmont
* Copyright © 2007-200
9
Rémi Denis-Courmont
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -46,7 +46,6 @@ enum vlc_module_properties
VLC_MODULE_HELP_NODOMAIN
,
VLC_MODULE_CAPABILITY
,
VLC_MODULE_SCORE
,
VLC_MODULE_PROGRAM
,
/* obsoleted */
VLC_MODULE_CB_OPEN
,
VLC_MODULE_CB_CLOSE
,
VLC_MODULE_NO_UNLOAD
,
...
...
src/modules/entry.c
View file @
deb763e0
...
...
@@ -180,10 +180,6 @@ int vlc_module_set (module_t *module, int propid, ...)
module
->
i_score
=
va_arg
(
ap
,
int
);
break
;
case
VLC_MODULE_PROGRAM
:
fprintf
(
stderr
,
"deprecated module property %d"
,
propid
);
break
;
case
VLC_MODULE_CB_OPEN
:
module
->
pf_activate
=
va_arg
(
ap
,
int
(
*
)
(
vlc_object_t
*
));
break
;
...
...
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