home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / cbm / os-include.lha / os-include / prefs / icontrol.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  1KB  |  61 lines

  1. #ifndef PREFS_ICONTROL_H
  2. #define PREFS_ICONTROL_H
  3. /*
  4. **    $VER: icontrol.h 39.1 (1.10.92)
  5. **    Includes Release 40.15
  6. **
  7. **    File format for intuition control preferences
  8. **
  9. **    (C) Copyright 1991-1993 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. #define ICB_MODEPROMOTE   4
  49.  
  50. #define ICF_COERCE_COLORS (1<<0)
  51. #define ICF_COERCE_LACE   (1<<1)
  52. #define ICF_STRGAD_FILTER (1<<2)
  53. #define ICF_MENUSNAP      (1<<3)
  54. #define ICF_MODEPROMOTE   (1<<4)
  55.  
  56.  
  57. /*****************************************************************************/
  58.  
  59.  
  60. #endif /* PREFS_ICONTROL_H */
  61.