Updated PCI IDs to latest snapshot.
[tangerine.git] / compiler / include / prefs / overscan.h
blob6cfe1b0050121e0bcbc557ab95740d276555afb3
1 #ifndef PREFS_OVERSCAN_H
2 #define PREFS_OVERSCAN_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Overscan 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
20 #ifndef GRAPHICS_GFX_H
21 # include <graphics/gfx.h>
22 #endif
24 #define ID_OSCN MAKE_ID('O','S','C','N')
26 #define OSCAN_MAGIC 0xFEDCBA89
28 struct OverscanPrefs
30 ULONG os_Reserved;
31 ULONG os_Magic;
32 UWORD os_HStart;
33 UWORD os_HStop;
34 UWORD os_VStart;
35 UWORD os_VStop;
36 ULONG os_DisplayID;
37 Point os_ViewPos;
38 Point os_Text;
39 struct Rectangle os_Standard;
42 #endif /* PREFS_OVERSCAN_H */