Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
56cd4f10
Commit
56cd4f10
authored
Feb 17, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing const
parent
30876dd3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/modules/modules.c
src/modules/modules.c
+4
-4
No files found.
src/modules/modules.c
View file @
56cd4f10
...
...
@@ -99,8 +99,8 @@ static vlc_mutex_t module_lock = VLC_STATIC_MUTEX;
#ifdef HAVE_DYNAMIC_PLUGINS
static
void
AllocateAllPlugins
(
vlc_object_t
*
);
static
void
AllocatePluginDir
(
vlc_object_t
*
,
const
char
*
,
int
);
static
int
AllocatePluginFile
(
vlc_object_t
*
,
char
*
,
int64_t
,
int64_t
);
static
module_t
*
AllocatePlugin
(
vlc_object_t
*
,
char
*
);
static
int
AllocatePluginFile
(
vlc_object_t
*
,
c
onst
c
har
*
,
int64_t
,
int64_t
);
static
module_t
*
AllocatePlugin
(
vlc_object_t
*
,
c
onst
c
har
*
);
#endif
static
int
AllocateBuiltinModule
(
vlc_object_t
*
,
int
(
*
)
(
module_t
*
)
);
static
void
DeleteModule
(
module_bank_t
*
,
module_t
*
);
...
...
@@ -1172,7 +1172,7 @@ static void AllocatePluginDir( vlc_object_t *p_this, const char *psz_dir,
* for its information data. The module can then be handled by module_need
* and module_unneed. It can be removed by DeleteModule.
*****************************************************************************/
static
int
AllocatePluginFile
(
vlc_object_t
*
p_this
,
char
*
psz_file
,
static
int
AllocatePluginFile
(
vlc_object_t
*
p_this
,
c
onst
c
har
*
psz_file
,
int64_t
i_file_time
,
int64_t
i_file_size
)
{
module_t
*
p_module
=
NULL
;
...
...
@@ -1260,7 +1260,7 @@ static int AllocatePluginFile( vlc_object_t * p_this, char * psz_file,
* for its information data. The module can then be handled by module_need
* and module_unneed. It can be removed by DeleteModule.
*****************************************************************************/
static
module_t
*
AllocatePlugin
(
vlc_object_t
*
p_this
,
c
har
*
psz_file
)
static
module_t
*
AllocatePlugin
(
vlc_object_t
*
p_this
,
c
onst
char
*
psz_file
)
{
module_t
*
p_module
=
NULL
;
module_handle_t
handle
;
...
...
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