#ifndef PREFS_OVERSCAN_H #define PREFS_OVERSCAN_H /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: overscan.h 23386 2005-06-23 08:17:21Z neil $ Desc: Overscan prefs definitions Lang: english */ #ifndef EXEC_TYPES_H # include #endif #ifndef LIBRARIES_IFFPARSE_H # include #endif #ifndef GRAPHICS_GFX_H # include #endif #define ID_OSCN MAKE_ID('O','S','C','N') #define OSCAN_MAGIC 0xFEDCBA89 struct OverscanPrefs { ULONG os_Reserved; ULONG os_Magic; UWORD os_HStart; UWORD os_HStop; UWORD os_VStart; UWORD os_VStop; ULONG os_DisplayID; Point os_ViewPos; Point os_Text; struct Rectangle os_Standard; }; #endif /* PREFS_OVERSCAN_H */