home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / at-inc-bin.lha / os-include / prefs / screenmode.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  959b  |  51 lines

  1. #ifndef PREFS_SCREENMODE_H
  2. #define PREFS_SCREENMODE_H
  3. /*
  4. **    $VER: screenmode.h 38.4 (25.6.92)
  5. **    Includes Release 40.15
  6. **
  7. **    File format for screen mode 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_SCRM MAKE_ID('S','C','R','M')
  29.  
  30.  
  31. struct ScreenModePrefs
  32. {
  33.     ULONG smp_Reserved[4];
  34.     ULONG smp_DisplayID;
  35.     UWORD smp_Width;
  36.     UWORD smp_Height;
  37.     UWORD smp_Depth;
  38.     UWORD smp_Control;
  39. };
  40.  
  41. /* flags for ScreenModePrefs.smp_Control */
  42. #define SMB_AUTOSCROLL 1
  43.  
  44. #define SMF_AUTOSCROLL (1<<0)
  45.  
  46.  
  47. /*****************************************************************************/
  48.  
  49.  
  50. #endif /* PREFS_SCREENMODE_H */
  51.