Go to the documentation of this file.
27 #ifndef VLC_MESSAGES_H_
28 #define VLC_MESSAGES_H_
59 uintptr_t i_object_id;
60 const char *psz_object_type;
61 const char *psz_module;
62 const char *psz_header;
66 const char *,
const char *, ...)
VLC_FORMAT( 4, 5 );
68 const
char *, const
char *, va_list);
69 #define msg_GenericVa(a, b, c, d, e) vlc_vaLog(VLC_OBJECT(a), b, c, d, e)
71 #define msg_Info( p_this, ... ) \
72 vlc_Log( VLC_OBJECT(p_this), VLC_MSG_INFO, MODULE_STRING, __VA_ARGS__ )
73 #define msg_Err( p_this, ... ) \
74 vlc_Log( VLC_OBJECT(p_this), VLC_MSG_ERR, MODULE_STRING, __VA_ARGS__ )
75 #define msg_Warn( p_this, ... ) \
76 vlc_Log( VLC_OBJECT(p_this), VLC_MSG_WARN, MODULE_STRING, __VA_ARGS__ )
77 #define msg_Dbg( p_this, ... ) \
78 vlc_Log( VLC_OBJECT(p_this), VLC_MSG_DBG, MODULE_STRING, __VA_ARGS__ )