home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d170 / surf.lha / Surf / src / menuexp.h < prev    next >
C/C++ Source or Header  |  1988-11-22  |  356b  |  17 lines

  1. #ifndef MENUEXP_H_FILE
  2. #define MENUEXP_H_FILE
  3.  
  4. #ifndef INTUITION_INTUITION_H
  5. #include <intuition/intuition.h>
  6. #endif  INTUITION_INTUITION_H
  7.  
  8.  
  9. extern USHORT *AbortDrawPtr;
  10. extern USHORT *DebugOnPtr;
  11.  
  12. #define AbortDraw (*AbortDrawPtr & CHECKED)
  13. #define ClrAbort() { *AbortDrawPtr &= ~CHECKED; }
  14. #define DebugOn (*DebugOnPtr & CHECKED)
  15.  
  16. #endif MENUEXP_H_FILE
  17.