goldendict-ng/dprintf.hh

13 lines
258 B
C++
Raw Normal View History

#ifndef __DPRINTF_HH_INCLUDED__
#define __DPRINTF_HH_INCLUDED__
#ifdef NO_CONSOLE
#define DPRINTF(...)
#define FDPRINTF(...)
#else
2011-06-20 04:26:27 +00:00
#define DPRINTF(...) printf(__VA_ARGS__)
#define FDPRINTF(...) fprintf(__VA_ARGS__)
#endif
#endif // __DPRINTF_HH_INCLUDED__