Updated PCI IDs to latest snapshot.
[tangerine.git] / compiler / include / prefs / screenmode.h
blob4e43270b10314759787bc70b4e7464f85ebe9e3f
1 #ifndef PREFS_SCREENMODE_H
2 #define PREFS_SCREENMODE_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Screenmode prefs definitions
9 Lang: english
12 #ifndef EXEC_TYPES_H
13 # include <exec/types.h>
14 #endif
16 #ifndef LIBRARIES_IFFPARSE_H
17 #include <libraries/iffparse.h>
18 #endif
21 #define ID_SCRM MAKE_ID('S','C','R','M')
24 struct ScreenModePrefs
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;
34 #define SMB_AUTOSCROLL 1
36 #define SMF_AUTOSCROLL (1<<0)
38 #endif /* PREFS_SCREENMODE_H */