mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-10-27 13:38:51 +01: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/uiq2/debug.h
Normal file
27
platform/uiq2/debug.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#include <e32std.h>
|
||||
|
||||
#define __DEBUG_PRINT_C
|
||||
|
||||
#if defined(__DEBUG_PRINT) || defined(__WINS__)
|
||||
#include <e32svr.h> // RDebug
|
||||
#ifdef __DEBUG_PRINT_FILE
|
||||
void debugPrintFileInit();
|
||||
void debugPrintFile(TRefByValue<const TDesC> aFmt, ...);
|
||||
#define DEBUG_PRINT_FILE_INIT debugPrintFileInit
|
||||
#define DEBUGPRINT debugPrintFile
|
||||
#else
|
||||
#define DEBUG_PRINT_FILE_INIT()
|
||||
#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...)
|
||||
#endif
|
||||
|
||||
void ExceptionHandler(TExcType exc);
|
||||
Loading…
Add table
Add a link
Reference in a new issue