summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/debug.h
Unidiff
Diffstat (limited to 'noncore/unsupported/oipkg/debug.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/debug.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/noncore/unsupported/oipkg/debug.h b/noncore/unsupported/oipkg/debug.h
new file mode 100644
index 0000000..c53e36c
--- a/dev/null
+++ b/noncore/unsupported/oipkg/debug.h
@@ -0,0 +1,20 @@
1#ifndef _DEBUG_H_
2#define _DEBUG_H_
3
4#include <stdio.h>
5
6extern int debugLevel;
7
8#define HACK
9
10
11#define pvDebug(I, S) \
12if ( debugLevel < 3 ) \
13{ \
14 if ( I <= debugLevel ) qDebug(S);\
15}else{\
16 if ( I <= debugLevel ) \
17 printf("# %s \t\t(Level: %i)\n",QString(S).latin1(),I);\
18}
19
20#endif \ No newline at end of file