#ifndef PREFS_SCREENMODE_H #define PREFS_SCREENMODE_H /* ** $VER: screenmode.h 38.4 (25.6.92) ** Includes Release 40.15 ** ** File format for screen mode preferences ** ** (C) Copyright 1991-1993 Commodore-Amiga, Inc. ** All Rights Reserved */ /*****************************************************************************/ #ifndef EXEC_TYPES_H #include #endif #ifndef LIBRARIES_IFFPARSE_H #include #endif /*****************************************************************************/ #define ID_SCRM MAKE_ID('S','C','R','M') struct ScreenModePrefs { ULONG smp_Reserved[4]; ULONG smp_DisplayID; UWORD smp_Width; UWORD smp_Height; UWORD smp_Depth; UWORD smp_Control; }; /* flags for ScreenModePrefs.smp_Control */ #define SMB_AUTOSCROLL 1 #define SMF_AUTOSCROLL (1<<0) /*****************************************************************************/ #endif /* PREFS_SCREENMODE_H */