Go to the source code of this file.
|
#define | msg_GenericVa(o, p, fmt, ap) |
|
#define | msg_Generic(o, p, ...) |
|
#define | msg_Info(p_this, ...) msg_Generic(p_this, VLC_MSG_INFO, __VA_ARGS__) |
|
#define | msg_Err(p_this, ...) msg_Generic(p_this, VLC_MSG_ERR, __VA_ARGS__) |
|
#define | msg_Warn(p_this, ...) msg_Generic(p_this, VLC_MSG_WARN, __VA_ARGS__) |
|
#define | msg_Dbg(p_this, ...) msg_Generic(p_this, VLC_MSG_DBG, __VA_ARGS__) |
|
|
void | vlc_Log (vlc_object_t *obj, int prio, const char *module, const char *file, unsigned line, const char *func, const char *format,...) |
| Emit a log message. More...
|
|
void | vlc_vaLog (vlc_object_t *obj, int prio, const char *module, const char *file, unsigned line, const char *func, const char *format, va_list ap) |
| Emit a log message. More...
|
|
const char * | vlc_strerror (int) |
| Formats an error message in the current locale. More...
|
|
const char * | vlc_strerror_c (int) |
| Formats an error message in the POSIX/C locale (i.e. More...
|
|