#ifndef PREFS_SCREENMODE_H
#define PREFS_SCREENMODE_H
/*
**	$Id: screenmode.h,v 38.3 91/12/30 13:20:38 vertex Exp $
**
**	File format for screen mode 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


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


#define ID_SCRM MAKE_ID('S','C','R','M')


struct ScreenModePrefs
{
    ULONG sm_Reserved[4];
    ULONG sm_DisplayID;
    UWORD sm_Width;
    UWORD sm_Height;
    UWORD sm_Depth;
    UWORD sm_Control;
};

/* flags for ScreenModePrefs.sm_Control */
#define SMB_AUTOSCROLL 1

#define SMF_AUTOSCROLL (1<<0)


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


#endif /* PREFS_SCREENMODE_H */
