home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / compress / xfh132.lzh / XFH / src / libmy / myinclude / DebugPrc.h next >
C/C++ Source or Header  |  1991-07-25  |  451b  |  27 lines

  1. /* DebugPrc.h - include file for debug handler. */
  2.  
  3. #ifndef EXEC_TYPES_H
  4. #include <exec/types.h>
  5. #endif
  6.  
  7. #ifndef EXEC_PORTS_H
  8. #include <exec/ports.h>
  9. #endif
  10.  
  11. #define PORTNAME "Debug-Handler Port"
  12.  
  13. struct debugmsg {
  14.    struct Message msg;
  15.    char string[1];
  16. };
  17.  
  18. void opendebug(void);
  19. void closedebug(void);
  20. void dprintf(char *format,...);
  21. void rawdprintf(char *format,...);
  22.  
  23. #define OPENCMD "__OPEN"
  24. #define CLOSECMD "__CLOSE"
  25.  
  26. /* End of DebugPrc.h */
  27.