RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: text/x-c++src Binary: false


Hang on, we reloading big blames...
/* * Title: Debug.h * Author: M.Thomas BEAM Ltd * Date: 2007-04-02 * * Contents: Debug support * * Mod Rec: * */ #ifndef DEBUG_H #define DEBUG_H #define DBG_STD 0x000001 #define DBG_CONTROL 0x000002 // Debug access to the TMS server extern int gdebug; #define dprintf(level, fmt, a...) if((level) & gdebug) printf(fmt, ##a); #endif