/* (C) 2003 XDA Developers * Author: Willem Jan Hengeveld * Web: http://www.xda-developers.com/ * * $Header$ */ #ifndef __DEBUG_H_ #include void vtdebug(WCHAR *msg, va_list ap); void vdebug(char *msg, va_list ap); void tdebug(WCHAR *msg, ...); void debug(char *msg, ...); void verror(DWORD dwErrorCode, char *msg, va_list ap); void error(char *msg, ...); void error(DWORD dwErrorCode, char *msg, ...); void ceerror(char *msg, ...); extern int g_nDumpUnitSize; extern int g_nMaxWordsPerLine; void hexdump(DWORD dwOffset, BYTE *buf, int nLength, int nDumpUnitSize, int nMaxUnitsPerLine); #define __DEBUG_H_ #endif