#ifndef PREFS_OVERSCAN_H #define PREFS_OVERSCAN_H /* ** $VER: overscan.h 38.4 (22.10.92) ** Includes Release 40.15 ** ** File format for overscan preferences ** ** (C) Copyright 1991-1993 Commodore-Amiga, Inc. ** All Rights Reserved */ /*****************************************************************************/ #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; }; /* os_HStart, os_HStop, os_VStart, os_VStop can only be looked at if * os_Magic equals OSCAN_MAGIC. If os_Magic is set to any other value, * these four fields are undefined */ /*****************************************************************************/ #endif /* PREFS_OVERSCAN_H */