debugmsg68.hGo to the documentation of this file.00001
00012
00013
00014 #ifndef _DEBUGMSG68_H_
00015 #define _DEBUGMSG68_H_
00016
00017 #include <stdarg.h>
00018
00019 #ifdef __cplusplus
00020 extern "C" {
00021 #endif
00022
00032 typedef void (*debugmsg68_t)(void * cookie, const char * fmt, va_list list);
00033
00040 debugmsg68_t debugmsg68_set_handler(debugmsg68_t handler);
00041
00049 void * debugmsg68_set_cookie(void * cookie);
00050
00056 void debugmsg68(const char * fmt, ...);
00057
00064 void vdebugmsg68(const char * fmt, va_list list);
00065
00072 void SC68os_pdebug(const char *fmt, ...);
00073
00078 #ifdef __cplusplus
00079 }
00080 #endif
00081
00082 #endif
|