File:  [RetroPC.NET] / xmil / adv / trace.h
Revision 1.1: download - view: text, annotated - select for diffs
Fri Feb 4 15:42:07 2005 JST (20 years, 8 months ago) by yui
Branches: MAIN
CVS tags: HEAD
RetroPC CVS restarting 2005/02/04 (T.Yui)


#define	TRACEINIT()
#define	TRACETERM()

#ifndef TRACE

#define	TRACEOUT(a)

#else

#ifdef	__cplusplus
extern "C" {
#endif

void trace_fmt(const char *str, ...);

#define	TRACEOUT(arg)	trace_fmt arg

#ifdef	__cplusplus
}
#endif

#endif


RetroPC.NET-CVS <cvs@retropc.net>