File:  [RetroPC.NET] / np2 / win9xc / trace.h
Revision 1.5: download - view: text, annotated - select for diffs
Sun Mar 7 03:25:36 2004 JST (21 years, 7 months ago) by yui
Branches: MAIN
CVS tags: HEAD
fix dma A20-23lines (T.Yui)


#ifndef TRACE

#define	TRACEINIT()
#define	TRACETERM()
#define	TRACEOUT(a)
#define	VERBOSE(a)

#else

#ifdef __cplusplus
extern "C" {
#endif

extern void trace_init(void);
extern void trace_term(void);
extern void trace_fmt(const char *str, ...);
extern void trace_fmt2(const char *str, ...);

#ifdef __cplusplus
}
#endif

#define	TRACEINIT()		trace_init()
#define	TRACETERM()		trace_term()
#define	TRACEOUT(arg)	trace_fmt arg
#define	VERBOSE(arg)	trace_fmt2 arg

#endif


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