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
46574f70
Commit
46574f70
authored
Nov 04, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ML: fix compilation
parent
54aaa198
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
modules/media_library/sql_media_library.c
modules/media_library/sql_media_library.c
+6
-6
No files found.
modules/media_library/sql_media_library.c
View file @
46574f70
...
...
@@ -109,17 +109,17 @@ vlc_module_begin()
set_callbacks
(
load
,
unload
)
set_category
(
CAT_ADVANCED
)
set_subcategory
(
SUBCAT_ADVANCED_MISC
)
add_string
(
"ml-filename"
,
"vlc-media-library.db"
,
NULL
,
add_string
(
"ml-filename"
,
"vlc-media-library.db"
,
MEDIA_LIBRARY_PATH_TEXT
,
MEDIA_LIBRARY_PATH_LONGTEXT
,
false
)
add_string
(
"ml-username"
,
""
,
NULL
,
N_
(
"Username for the database"
),
add_string
(
"ml-username"
,
""
,
N_
(
"Username for the database"
),
N_
(
"Username for the database"
),
false
)
add_string
(
"ml-password"
,
""
,
NULL
,
N_
(
"Password for the database"
),
add_string
(
"ml-password"
,
""
,
N_
(
"Password for the database"
),
N_
(
"Password for the database"
),
false
)
add_integer
(
"ml-port"
,
0
,
NULL
,
add_integer
(
"ml-port"
,
0
,
N_
(
"Port for the database"
),
N_
(
"Port for the database"
),
false
)
add_bool
(
"ml-recursive-scan"
,
true
,
NULL
,
RECURSIVE_TEXT
,
add_bool
(
"ml-recursive-scan"
,
true
,
RECURSIVE_TEXT
,
RECURSIVE_LONGTEXT
,
false
)
add_bool
(
"ml-auto-add"
,
true
,
NULL
,
N_
(
"Auto add new medias"
),
add_bool
(
"ml-auto-add"
,
true
,
N_
(
"Auto add new medias"
),
N_
(
"Automatically add new medias to ML"
),
false
)
vlc_module_end
()
...
...
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