www.pudn.com > DMBDRV.rar > DmaCedebug.h
/* * $Header: D:\CVSREPO\CVS\cvsrepo/sms1000/sw/SmsHostLib/Platforms/WinCE/DmaPxaXXX/DmaCedebug.h,v 1.1 2007/03/07 11:43:33 doronc Exp $ * $Log: DmaCedebug.h,v $ * Revision 1.1 2007/03/07 11:43:33 doronc * Adding PXA DMA plugin * * * Rev 1.1 May 26 2005 13:03:14 DoronC * Update debug zones. * * Rev 1.0 May 01 2005 15:44:56 DoronC * Initial revision. * * Rev 1.0 Feb 28 2005 11:45:26 DoronC * Initial revision. */ /************************************************************************/ /* */ /* FAT-FTL Lite Software Development Kit */ /* Copyright (C) M-Systems Ltd. 1995-1998 */ /* */ /************************************************************************/ /************************************************************************/ /* */ /* Debug Zones definitions. */ /* */ /************************************************************************/ #ifndef CEDEBUG_H #define CEDEBUG_H /* Debug zones: */ #define ZONE_NONE_SET 0x0000 #define ZONE_ERROR DEBUGZONE(0) #define ZONE_ERROR_SET 0x0001 #define ZONE_WARNING DEBUGZONE(1) #define ZONE_WARNING_SET 0x0002 #define ZONE_DLLINIT DEBUGZONE(2) #define ZONE_DLLINIT_SET 0x0004 #define ZONE_INIT DEBUGZONE(3) #define ZONE_INIT_SET 0x0008 #define ZONE_ALL_SET 0xFFFF /* All of the zones */ #define RETAIL_DEBUG #if (defined(DEBUG) || defined(RETAIL_DEBUG)) /* Note: RETAIL_DEBUG is defined in the modified version of dbgapi.h it can be used for Retail version debugging. Look at \setup\ret_dbg\read.me for further details */ #define DBGMSG RETAILMSG #define RTLMSG RETAILMSG #else #define DBGMSG(cond, printf_exp) ((void)0) #define RTLMSG DBGMSG #endif /* (defined(DEBUG) || defined(RETAIL_DEBUG)) */ #endif /* CEDEBUG_H */