summaryrefslogtreecommitdiffstats
path: root/mp_msg.h
diff options
context:
space:
mode:
Diffstat (limited to 'mp_msg.h')
-rw-r--r--mp_msg.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/mp_msg.h b/mp_msg.h
index a19da44d0a..91b6b86449 100644
--- a/mp_msg.h
+++ b/mp_msg.h
@@ -1,6 +1,8 @@
#ifndef MPLAYER_MP_MSG_H
#define MPLAYER_MP_MSG_H
+#include <stdarg.h>
+
// defined in mplayer.c and mencoder.c
extern int verbose;
@@ -116,6 +118,8 @@ int mp_msg_test(int mod, int lev);
char *mp_gtext(const char *string);
#define mp_tmsg mp_msg
+void mp_msg_va(int mod, int lev, const char *format, va_list va);
+
#ifdef __GNUC__
void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
# ifdef MP_DEBUG