mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
dab5885b02
convert GDPRINTF macro to gdDebug internal
29 lines
645 B
C++
29 lines
645 B
C++
#ifndef __GDDEBUG_HH_INCLUDED__
|
|
#define __GDDEBUG_HH_INCLUDED__
|
|
|
|
#include <QFile>
|
|
|
|
#ifdef NO_CONSOLE
|
|
#define GD_DPRINTF(...) do {} while( 0 )
|
|
#define GD_FDPRINTF(...) do {} while( 0 )
|
|
#else
|
|
#define GD_DPRINTF(...) gdDebug(__VA_ARGS__)
|
|
#define GD_FDPRINTF(...) fprintf(__VA_ARGS__)
|
|
#endif
|
|
|
|
void gdWarning(const char *, ...) /* print warning message */
|
|
#if defined(Q_CC_GNU) && !defined(__INSURE__)
|
|
__attribute__ ((format (printf, 1, 2)))
|
|
#endif
|
|
;
|
|
|
|
void gdDebug(const char *, ...)
|
|
#if defined(Q_CC_GNU) && !defined(__INSURE__)
|
|
__attribute__ ((format (printf, 1, 2)))
|
|
#endif
|
|
;
|
|
|
|
extern QFile * logFilePtr;
|
|
|
|
#endif // __GDDEBUG_HH_INCLUDED__
|