1 #ifndef PREFS_SCREENMODE_H
    2 #define PREFS_SCREENMODE_H
    3 
    4 /*
    5 	screenmode prefs definitions
    6 
    7 	Copyright © 2002 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef EXEC_TYPES_H
   11 # include <exec/types.h>
   12 #endif
   13 
   14 #ifndef LIBRARIES_IFFPARSE_H
   15 # include <libraries/iffparse.h>
   16 #endif
   17 
   18 #pragma pack(2)
   19 
   20 
   21 #define ID_SCRM  MAKE_ID('S','C','R','M')
   22 
   23 
   24 struct ScreenModePrefs
   25 {
   26 	ULONG smp_Reserved[4];
   27 	ULONG smp_DisplayID;
   28 	UWORD smp_Width;
   29 	UWORD smp_Height;
   30 	UWORD smp_Depth;
   31 	UWORD smp_Control;
   32 };
   33 
   34 
   35 #define SMB_AUTOSCROLL  0
   36 
   37 #define SMF_AUTOSCROLL  (1<<SMB_AUTOSCROLL)
   38 
   39 
   40 #pragma pack()
   41 
   42 #endif /* PREFS_SCREENMODE_H */