/******************************************************************************************************************* *File Name : debug.h *Description : system debug file *Date : 2008/06/13 *Author : yuanguiyou --History: ------------------------------------------------------------------------------------------------------------------ *change info: *******************************************************************************************************************/ #ifndef DEBUG_H #define DEBUG_H #ifdef DEBUG void AssertErorr(char *szFileName,long lline,char *szExpr); #define ASSERT(expr) do { \ if (!(expr)) \ AssertErorr(__FILE__,__LINE__,#expr); \ }while(0) \ #else #define ASSERT(expr) #endif #endif