view loader/debug.h @ 34194:280b461a6676

Add missing parameter to Win32 GUI's call to m_config_parse_config_file(). This parameter is new since r34260 and has been forgotten in r34281.
author ib
date Mon, 31 Oct 2011 12:25:00 +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 */