|
#define | msg_GenericVa(a, b, c, d, e) vlc_vaLog(VLC_OBJECT(a), b, c, d, e) |
|
#define | msg_Info(p_this,...) vlc_Log( VLC_OBJECT(p_this), VLC_MSG_INFO, MODULE_STRING, __VA_ARGS__ ) |
|
#define | msg_Err(p_this,...) vlc_Log( VLC_OBJECT(p_this), VLC_MSG_ERR, MODULE_STRING, __VA_ARGS__ ) |
|
#define | msg_Warn(p_this,...) vlc_Log( VLC_OBJECT(p_this), VLC_MSG_WARN, MODULE_STRING, __VA_ARGS__ ) |
|
#define | msg_Dbg(p_this,...) vlc_Log( VLC_OBJECT(p_this), VLC_MSG_DBG, MODULE_STRING, __VA_ARGS__ ) |
|
|
VLC_API void | vlc_Log (vlc_object_t *, int, const char *, const char *,...) VLC_FORMAT(4 |
|
VLC_API void VLC_API void | vlc_vaLog (vlc_object_t *, int, const char *, const char *, va_list) |
|
This library provides basic functions for threads to interact with user interface, such as message output.
Message types
Enumerator |
---|
VLC_MSG_INFO |
Important information
|
VLC_MSG_ERR |
Error
|
VLC_MSG_WARN |
Warning
|
VLC_MSG_DBG |
Debug
|