mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 23:37:46 -04:00
initial import
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@2 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
2cadbd5e56
commit
cc68a136aa
341 changed files with 180839 additions and 0 deletions
27
platform/uiq3/engine/debug.h
Normal file
27
platform/uiq3/engine/debug.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#include <e32std.h>
|
||||
|
||||
#define __DEBUG_PRINT_C
|
||||
#define __DEBUG_PRINT_FILE
|
||||
|
||||
#if defined(__DEBUG_PRINT) || defined(__WINS__)
|
||||
#include <e32svr.h> // RDebug
|
||||
#ifdef __DEBUG_PRINT_FILE
|
||||
void debugPrintFile(TRefByValue<const TDesC> aFmt, ...);
|
||||
#define DEBUGPRINT debugPrintFile
|
||||
#else
|
||||
#define DEBUGPRINT RDebug::Print
|
||||
#endif
|
||||
TDesC* DO_CONV(const char* s);
|
||||
#ifdef __DEBUG_PRINT_C
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
#endif
|
||||
void dprintf(char *format, ...);
|
||||
#endif
|
||||
#else
|
||||
#define DEBUGPRINT(x...)
|
||||
#undef __DEBUG_PRINT_C
|
||||
#undef __DEBUG_PRINT_FILE
|
||||
#endif
|
||||
|
||||
void ExceptionHandler(TExcType exc);
|
Loading…
Add table
Add a link
Reference in a new issue