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
61f30bff
Commit
61f30bff
authored
Oct 22, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add_directory: remove callback parameter
parent
989310c9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
include/vlc_plugin.h
include/vlc_plugin.h
+1
-1
modules/gui/ncurses.c
modules/gui/ncurses.c
+1
-1
modules/video_filter/atmo/atmo.cpp
modules/video_filter/atmo/atmo.cpp
+1
-1
src/libvlc-module.c
src/libvlc-module.c
+3
-3
No files found.
include/vlc_plugin.h
View file @
61f30bff
...
...
@@ -315,7 +315,7 @@ enum vlc_module_properties
add_string_inner( CONFIG_ITEM_SAVEFILE, name, text, longtext, advc, \
value )
#define add_directory( name, value,
p_callback,
text, longtext, advc ) \
#define add_directory( name, value, text, longtext, advc ) \
add_string_inner( CONFIG_ITEM_DIRECTORY, name, text, longtext, advc, \
value )
...
...
modules/gui/ncurses.c
View file @
61f30bff
...
...
@@ -113,7 +113,7 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_INTERFACE_MAIN
)
set_callbacks
(
Open
,
Close
)
add_shortcut
(
"curses"
)
add_directory
(
"browse-dir"
,
NULL
,
NULL
,
BROWSE_TEXT
,
BROWSE_LONGTEXT
,
false
)
add_directory
(
"browse-dir"
,
NULL
,
BROWSE_TEXT
,
BROWSE_LONGTEXT
,
false
)
vlc_module_end
()
/*****************************************************************************
...
...
modules/video_filter/atmo/atmo.cpp
View file @
61f30bff
...
...
@@ -593,7 +593,7 @@ add_loadfile(CFG_PREFIX "gradient_zone_3", NULL,
ZONE_3_GRADIENT_TEXT
,
ZONE_X_GRADIENT_LONG_TEXT
,
true
)
add_loadfile
(
CFG_PREFIX
"gradient_zone_4"
,
NULL
,
ZONE_4_GRADIENT_TEXT
,
ZONE_X_GRADIENT_LONG_TEXT
,
true
)
add_directory
(
CFG_PREFIX
"gradient_path"
,
NULL
,
NULL
,
add_directory
(
CFG_PREFIX
"gradient_path"
,
NULL
,
GRADIENT_PATH_TEXT
,
GRADIENT_PATH_LONGTEXT
,
false
)
#if defined(__ATMO_DEBUG__)
...
...
src/libvlc-module.c
View file @
61f30bff
...
...
@@ -1713,7 +1713,7 @@ vlc_module_begin ()
add_integer
(
"mouse-hide-timeout"
,
1500
,
NULL
,
MOUSE_HIDE_TIMEOUT_TEXT
,
MOUSE_HIDE_TIMEOUT_LONGTEXT
,
false
)
set_section
(
N_
(
"Snapshot"
)
,
NULL
)
add_directory
(
"snapshot-path"
,
NULL
,
NULL
,
SNAP_PATH_TEXT
,
add_directory
(
"snapshot-path"
,
NULL
,
SNAP_PATH_TEXT
,
SNAP_PATH_LONGTEXT
,
false
)
add_string
(
"snapshot-prefix"
,
"vlcsnap-"
,
SNAP_PREFIX_TEXT
,
SNAP_PREFIX_LONGTEXT
,
false
)
...
...
@@ -2074,10 +2074,10 @@ vlc_module_begin ()
add_bool
(
"plugins-cache"
,
true
,
NULL
,
PLUGINS_CACHE_TEXT
,
PLUGINS_CACHE_LONGTEXT
,
true
)
change_need_restart
()
add_directory
(
"plugin-path"
,
NULL
,
NULL
,
PLUGIN_PATH_TEXT
,
add_directory
(
"plugin-path"
,
NULL
,
PLUGIN_PATH_TEXT
,
PLUGIN_PATH_LONGTEXT
,
true
)
change_need_restart
()
add_directory
(
"data-path"
,
NULL
,
NULL
,
DATA_PATH_TEXT
,
add_directory
(
"data-path"
,
NULL
,
DATA_PATH_TEXT
,
DATA_PATH_LONGTEXT
,
true
)
change_need_restart
()
...
...
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