view loader/debug.h @ 34639:3a11bcafd262

Mark window title as UTF-8. Makes setting a -title with UTF-8 characters work. Patch by Vladimir Mosgalin [mosgalin {} VM10124 spb edu], updated by me to latest SVN.
author reimar
date Tue, 14 Feb 2012 20:23:02 +0000
parents a8ea87c71d18
children
line wrap: on
line source

#ifndef MPLAYER_DEBUG_H
#define MPLAYER_DEBUG_H

#ifdef DEBUG
#define TRACE printf
#define dbg_printf printf
#else
#define TRACE(...)
#define dbg_printf(...)
#endif

#endif /* MPLAYER_DEBUG_H */