home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / unixtex-6.1b-src.tgz / tar.out / contrib / unixtex / dvipsk / debug.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  365b  |  19 lines

  1. /* 
  2.  * Here's some stuff for debugging dvips.
  3.  */
  4.  
  5. #ifdef DEBUG
  6.  
  7. #define dd(darg)    ((darg)&debug_flag)
  8.  
  9. #define D_SPECIAL        (1<<0)
  10. #define D_PATHS            (1<<1)
  11. #define D_FONTS            (1<<2)
  12. #define D_PAGE            (1<<3)
  13. #define D_HEADER                (1<<4)
  14. #define D_COMPRESS              (1<<5)
  15. #define D_FILES            (1<<6)
  16. #define D_MEM                   (1<<7)
  17.  
  18. #endif /* DEBUG */
  19.