#ifndef INTUITION_IPREFS_H #define INTUITION_IPREFS_H /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: iprefs.h 21385 2004-03-25 22:20:00Z falemagn $ Desc: PRIVATE/TOP SECRET!!! Communication between IPrefs program and Intuition Lang: english */ #ifndef EXEC_TYPES_H # include #endif #define IPREFS_TYPE_ICONTROL 0 #define IPREFS_TYPE_SCREENMODE 1 struct IScreenModePrefs { ULONG smp_DisplayID; UWORD smp_Width; UWORD smp_Height; UWORD smp_Depth; UWORD smp_Control; }; struct IIControlPrefs { UWORD ic_TimeOut; WORD ic_MetaDrag; ULONG ic_Flags; UBYTE ic_WBtoFront; UBYTE ic_FrontToBack; UBYTE ic_ReqTrue; UBYTE ic_ReqFalse; }; #endif /* GRAPHICS_SCREENS_H */