forked from len0rd/rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18362 a1c6a512-1295-4272-9138-f99709370657
12 lines
208 B
C
12 lines
208 B
C
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
|
|
#include <QDebug>
|
|
|
|
#define DEBUGF1 qlogger
|
|
#define DEBUGF2(...)
|
|
|
|
extern int qlogger(const char* fmt,...);
|
|
extern int qlogger(const QString& s);
|
|
|
|
#endif // __UTILS_H__
|