NEWS APPS DOCS ABOUT | ||||
Autodocs Include classes clib datatypes devices diskfont dos exec gadgets graphics hardware images intuition libraries pragma pragmas prefs asl.h / .i font.h / .i icontrol.h / .i input.h / .i locale.h / .i overscan.h / .i palette.h / .i pointer.h / .i prefhdr.h / .i printergfx.h / .i printerps.h / .i printertxt.h / .i reaction.h screenmode.h / .i serial.h / .i sound.h / .i wbpattern.h / .i workbench.h / .i proto reaction resources rexx utility workbench GuruMeditation | #ifndef PREFS_OVERSCAN_H #define PREFS_OVERSCAN_H /* ** $VER: overscan.h 38.4 (22.10.1992) ** Includes Release 45.1 ** ** File format for overscan preferences ** ** (C) Copyright 1991-2001 Amiga, Inc. ** All Rights Reserved */ /*****************************************************************************/ #ifndef EXEC_TYPES_H #include <exec/types.h> #endif #ifndef LIBRARIES_IFFPARSE_H #include <libraries/iffparse.h> #endif #ifndef GRAPHICS_GFX_H #include <graphics/gfx.h> #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 */ Comments |
$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se |