/* riscos/driver/hid/input/usb/hid/sys/debug.h
 *
 * (c) 2002 Simtec Electronics
 *
 * Ben Dooks
 *
 * HID Input Driver - Debugging definitions
 *
 * $Id: debug.h,v 1.8 2003/08/08 11:17:17 ben Exp $
 *
 * This Library file is part of the Simtec Electronics USB stack development
 *   suite.
 * Specific licence is granted to use this file by third parties for the
 *   development of USB device drivers.
 *
*/

#ifndef __RISCOS_HID_INPUT_DEBUG_H
#define __RISCOS_HID_INPUT_DEBUG_H "$Id: debug.h,v 1.8 2003/08/08 11:17:17 ben Exp $"

extern int usbdebug_open(char *, int, int, int);
extern int usbdebug_close(void);

extern void tracker_printf(const char *msg, ...);

#ifdef DEBUG
#define debugf(x) tracker_printf x
#else
#define debugf(x)
#endif

#endif /* __RISCOS_HID_INPUT_DEBUG_H */
