home *** CD-ROM | disk | FTP | other *** search
- #ifndef PREFS_SCREENMODE_H
- #define PREFS_SCREENMODE_H
- /*
- ** $VER: screenmode.h 38.3 (30.12.91)
- ** Includes Release 38.56
- **
- ** File format for screen mode preferences
- **
- ** (C) Copyright 1991-1992 Commodore-Amiga, Inc.
- ** All Rights Reserved
- */
-
- /*****************************************************************************/
-
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #ifndef LIBRARIES_IFFPARSE_H
- #include <libraries/iffparse.h>
- #endif
-
-
- /*****************************************************************************/
-
-
- #define ID_SCRM MAKE_ID('S','C','R','M')
-
-
- struct ScreenModePrefs
- {
- ULONG sm_Reserved[4];
- ULONG sm_DisplayID;
- UWORD sm_Width;
- UWORD sm_Height;
- UWORD sm_Depth;
- UWORD sm_Control;
- };
-
- /* flags for ScreenModePrefs.sm_Control */
- #define SMB_AUTOSCROLL 1
-
- #define SMF_AUTOSCROLL (1<<0)
-
-
- /*****************************************************************************/
-
-
- #endif /* PREFS_SCREENMODE_H */
-