Add temporary no-op translation function stubs

This commit is contained in:
Uoti Urpala 2009-07-06 19:54:38 +03:00
parent 91d0d3a082
commit 7394680e4e
3 changed files with 12 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#include "config.h"
#include "mp_msg.h"
#ifdef CODECS2HTML
#define mp_tmsg mp_msg
#ifdef __GNUC__
#define mp_msg(t, l, m, args...) fprintf(stderr, m, ##args)
#else

View File

@ -223,3 +223,8 @@ void mp_msg(int mod, int lev, const char *format, ... ){
fprintf(stream, "%s", tmp);
fflush(stream);
}
char *mp_gtext(const char *string)
{
return string;
}

View File

@ -4,6 +4,9 @@
// defined in mplayer.c and mencoder.c
extern int verbose;
/* No-op macro to mark translated strings in the sources */
#define _(x) x
// verbosity elevel:
/* Only messages level MSGL_FATAL-MSGL_STATUS should be translated,
@ -111,6 +114,9 @@ int mp_msg_test(int mod, int lev);
#include "config.h"
char *mp_gtext(const char *string);
#define mp_tmsg mp_msg
#ifdef __GNUC__
void mp_msg(int mod, int lev, const char *format, ... ) __attribute__ ((format (printf, 3, 4)));
# ifdef MP_DEBUG