home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / nduk-v39.lha / V39 / include / prefs / icontrol.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  1KB  |  59 lines

  1. #ifndef PREFS_ICONTROL_H
  2. #define PREFS_ICONTROL_H
  3. /*
  4. **    $VER: icontrol.h 38.6 (02.03.92)
  5. **    Includes Release 39.108
  6. **
  7. **    File format for intuition control preferences
  8. **
  9. **    (C) Copyright 1991-1992 Commodore-Amiga, Inc.
  10. **    All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15.  
  16. #ifndef EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19.  
  20. #ifndef LIBRARIES_IFFPARSE_H
  21. #include <libraries/iffparse.h>
  22. #endif
  23.  
  24.  
  25. /*****************************************************************************/
  26.  
  27.  
  28. #define ID_ICTL MAKE_ID('I','C','T','L')
  29.  
  30.  
  31. struct IControlPrefs
  32. {
  33.     LONG  ic_Reserved[4];    /* System reserved        */
  34.     UWORD ic_TimeOut;        /* Verify timeout        */
  35.     WORD  ic_MetaDrag;        /* Meta drag mouse event    */
  36.     ULONG ic_Flags;        /* IControl flags (see below)    */
  37.     UBYTE ic_WBtoFront;        /* CKey: WB to front        */
  38.     UBYTE ic_FrontToBack;    /* CKey: front screen to back    */
  39.     UBYTE ic_ReqTrue;        /* CKey: Requester TRUE        */
  40.     UBYTE ic_ReqFalse;        /* CKey: Requester FALSE    */
  41. };
  42.  
  43. /* flags for IControlPrefs.ic_Flags */
  44. #define ICB_COERCE_COLORS 0
  45. #define ICB_COERCE_LACE   1
  46. #define ICB_STRGAD_FILTER 2
  47. #define ICB_MENUSNAP      3
  48.  
  49. #define ICF_COERCE_COLORS (1<<0)
  50. #define ICF_COERCE_LACE   (1<<1)
  51. #define ICF_STRGAD_FILTER (1<<2)
  52. #define ICF_MENUSNAP      (1<<3)
  53.  
  54.  
  55. /*****************************************************************************/
  56.  
  57.  
  58. #endif /* PREFS_ICONTROL_H */
  59.