Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
28b91137
Commit
28b91137
authored
Oct 12, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead functions
parent
1b9a7885
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
37 deletions
+0
-37
include/vlc_messages.h
include/vlc_messages.h
+0
-4
src/libvlccore.sym
src/libvlccore.sym
+0
-4
src/misc/messages.c
src/misc/messages.c
+0
-29
No files found.
include/vlc_messages.h
View file @
28b91137
...
...
@@ -86,10 +86,6 @@ struct msg_subscription_t
VLC_EXPORT
(
void
,
__msg_Generic
,
(
vlc_object_t
*
,
int
,
const
char
*
,
const
char
*
,
...
)
LIBVLC_FORMAT
(
4
,
5
)
);
VLC_EXPORT
(
void
,
__msg_GenericVa
,
(
vlc_object_t
*
,
int
,
const
char
*
,
const
char
*
,
va_list
args
)
);
#define msg_GenericVa(a, b, c, d, e) __msg_GenericVa(VLC_OBJECT(a), b, c, d, e)
VLC_EXPORT
(
void
,
__msg_Info
,
(
vlc_object_t
*
,
const
char
*
,
...
)
LIBVLC_FORMAT
(
2
,
3
)
);
VLC_EXPORT
(
void
,
__msg_Err
,
(
vlc_object_t
*
,
const
char
*
,
...
)
LIBVLC_FORMAT
(
2
,
3
)
);
VLC_EXPORT
(
void
,
__msg_Warn
,
(
vlc_object_t
*
,
const
char
*
,
...
)
LIBVLC_FORMAT
(
2
,
3
)
);
VLC_EXPORT
(
void
,
__msg_Dbg
,
(
vlc_object_t
*
,
const
char
*
,
...
)
LIBVLC_FORMAT
(
2
,
3
)
);
#define msg_Info( p_this, ... ) \
__msg_Generic( VLC_OBJECT(p_this), VLC_MSG_INFO, \
...
...
src/libvlccore.sym
View file @
28b91137
...
...
@@ -219,16 +219,12 @@ __module_need
module_provides
module_release
__module_unneed
__msg_Dbg
__msg_DisableObjectPrinting
__msg_EnableObjectPrinting
__msg_Err
__msg_Generic
__msg_GenericVa
__msg_Info
__msg_Subscribe
__msg_Unsubscribe
__msg_Warn
msleep
mstrtime
mwait
...
...
src/misc/messages.c
View file @
28b91137
...
...
@@ -254,35 +254,6 @@ void __msg_GenericVa( vlc_object_t *p_this, int i_type, const char *psz_module,
QueueMsg
(
p_this
,
i_type
,
psz_module
,
psz_format
,
args
);
}
/* Generic functions used when variadic macros are not available. */
#define DECLARE_MSG_FN( FN_NAME, FN_TYPE ) \
void FN_NAME( vlc_object_t *p_this, const char *psz_format, ... ) \
{ \
va_list args; \
va_start( args, psz_format ); \
QueueMsg( p_this, FN_TYPE, "unknown", psz_format, args ); \
va_end( args ); \
} \
struct _
/**
* Output an informational message.
* \note Do not use this for debug messages
* \see input_AddInfo
*/
DECLARE_MSG_FN
(
__msg_Info
,
VLC_MSG_INFO
);
/**
* Output an error message.
*/
DECLARE_MSG_FN
(
__msg_Err
,
VLC_MSG_ERR
);
/**
* Output a waring message
*/
DECLARE_MSG_FN
(
__msg_Warn
,
VLC_MSG_WARN
);
/**
* Output a debug message
*/
DECLARE_MSG_FN
(
__msg_Dbg
,
VLC_MSG_DBG
);
/**
* Add a message to a queue
*
...
...
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