home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Netzwerk / NETMU17.LHA / include / debug.h next >
Encoding:
C/C++ Source or Header  |  1994-03-02  |  707 b   |  47 lines

  1. /*
  2. **    $VER: debug.h 1.1 (23.02.94)
  3. **
  4. **    debug library header file
  5. **
  6. **    © Copyright 1994 by Norbert Püschel
  7. **    All Rights Reserved
  8. */
  9.  
  10. #ifndef DEBUG_H
  11. #define DEBUG_H
  12.  
  13. #ifdef DEBUG
  14.  
  15. #include <proto/exec.h>
  16.  
  17. #pragma libcall DebugBase DEBUGA 1e 32103
  18. #pragma tagcall DebugBase DEBUG 1e 32103
  19.  
  20. #ifndef DEBUG_LOGFILE
  21. #define DEBUG_LOGFILE "t:debug.log"
  22. #endif
  23.  
  24. void DEBUGA(STRPTR fname,STRPTR format,LONG *args);
  25.  
  26. static void bug(STRPTR format,...)
  27.  
  28. {
  29.   struct Library *DebugBase;
  30.  
  31.   DebugBase = OpenLibrary("debug.library",0);
  32.   if(DebugBase) {
  33.     DEBUGA(DEBUG_LOGFILE,format,(LONG *)(&format+1));
  34.     CloseLibrary(DebugBase);
  35.   }
  36. }
  37.  
  38. #define D(x) x /* for D(bug(...)) */
  39.  
  40. #else
  41.  
  42. #define D(x)
  43.  
  44. #endif
  45.  
  46. #endif
  47.