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
820069ed
Commit
820069ed
authored
Feb 08, 2010
by
Toralf Niebuhr
Committed by
Rémi Denis-Courmont
Feb 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added VLC_UNUSED( ) for some unused variables
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
a160b858
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
src/missing.c
src/missing.c
+11
-0
No files found.
src/missing.c
View file @
820069ed
...
...
@@ -344,36 +344,47 @@ char *vlc_sdp_Start (vlc_object_t *obj, const char *cfg,
int
vlm_Control
(
vlm_t
*
vlm
,
int
query
,
...)
{
VLC_UNUSED
(
vlm
);
assert
(
0
);
}
void
vlm_Delete
(
vlm_t
*
vlm
)
{
VLC_UNUSED
(
vlm
);
assert
(
0
);
}
int
vlm_ExecuteCommand
(
vlm_t
*
vlm
,
const
char
*
cmd
,
vlm_message_t
**
pm
)
{
VLC_UNUSED
(
vlm
);
VLC_UNUSED
(
cmd
);
VLC_UNUSED
(
pm
);
assert
(
0
);
}
vlm_message_t
*
vlm_MessageAdd
(
vlm_message_t
*
a
,
vlm_message_t
*
b
)
{
VLC_UNUSED
(
a
);
VLC_UNUSED
(
b
);
assert
(
0
);
}
void
vlm_MessageDelete
(
vlm_message_t
*
m
)
{
VLC_UNUSED
(
m
);
assert
(
0
);
}
vlm_message_t
*
vlm_MessageSimpleNew
(
const
char
*
a
)
{
VLC_UNUSED
(
a
);
return
NULL
;
}
vlm_message_t
*
vlm_MessageNew
(
const
char
*
a
,
const
char
*
fmt
,
...)
{
VLC_UNUSED
(
a
);
VLC_UNUSED
(
fmt
);
return
vlm_MessageSimpleNew
(
a
);
}
...
...
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