#ifndef PREFS_OVERSCAN_H
#define PREFS_OVERSCAN_H
/*
**	$Id: overscan.h,v 38.2 91/06/26 14:20:43 vertex Exp $
**
**	File format for overscan preferences
**
**	(C) Copyright 1991 Commodore-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')


struct OverscanPrefs
{
    ULONG            os_Reserved[4];
    ULONG            os_DisplayID;
    Point            os_ViewPos;
    Point            os_Text;
    struct Rectangle os_Standard;
};


/*****************************************************************************/


#endif /* PREFS_OVERSCAN_H */
