home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
compress
/
misc
/
xfh
/
source.lha
/
src
/
include
/
DebugPrc.h
next >
Wrap
C/C++ Source or Header
|
1991-07-25
|
451b
|
27 lines
/* DebugPrc.h - include file for debug handler. */
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef EXEC_PORTS_H
#include <exec/ports.h>
#endif
#define PORTNAME "Debug-Handler Port"
struct debugmsg {
struct Message msg;
char string[1];
};
void opendebug(void);
void closedebug(void);
void dprintf(char *format,...);
void rawdprintf(char *format,...);
#define OPENCMD "__OPEN"
#define CLOSECMD "__CLOSE"
/* End of DebugPrc.h */