sc68fordevelopers
2.2.1
|
00001 00012 /* Copyright (C) 1998-2003 Benjamin Gerard */ 00013 00014 #ifndef _DEBUGMSG68_H_ 00015 #define _DEBUGMSG68_H_ 00016 00017 #include <stdarg.h> 00018 00019 #ifdef __cplusplus 00020 extern "C" { 00021 #endif 00022 00024 typedef void (*debugmsg68_t)(void * cookie, const char * fmt, va_list list); 00025 00032 debugmsg68_t debugmsg68_set_handler(debugmsg68_t handler); 00033 00041 void * debugmsg68_set_cookie(void * cookie); 00042 00048 void debugmsg68(const char * fmt, ...); 00049 00056 void vdebugmsg68(const char * fmt, va_list list); 00057 00064 void SC68os_pdebug(const char *fmt, ...); 00065 00066 #ifdef __cplusplus 00067 } 00068 #endif 00069 00070 #endif /* #ifndef _DEBUGMSG68_H_ */