/*
 * $Id: dprint.h,v 1.1 2003/02/07 18:15:44 wheeler Exp $
 * Äãµ¡Ç½²èÌÌprint
 * $Log: dprint.h,v $
 * Revision 1.1  2003/02/07 18:15:44  wheeler
 * Fox's version of libultra and friends.
 *
 */

#ifndef __DPRINT_H_
#define __DPRINT_H_

#include "ultra64.h"

#define USE_DPRINT 1

#if !USE_DPRINT

#define DPRINT(x, y, s, d) (void)((void)(x), (void)(y), (void)(s), (void)(d))

#else  /* !USE_DPRINT */

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#define DPRINT(x, y, s, d) dprint(&NOW_DISP, x, y, s, d)
void dprint(Gfx **glistpp, int x, int y, char *s, short d);

#ifdef __cplusplus
} /* extern "C" */
#endif 

#endif /* !USE_DPRINT */

#endif /* __DPRINT_H_ */
