Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / compiler / include / intuition / iprefs.h
blob701b55a05ca8a8f3dab01960d39bfae00c03e1f0
1 #ifndef INTUITION_IPREFS_H
2 #define INTUITION_IPREFS_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: PRIVATE/TOP SECRET!!! Communication between IPrefs program and Intuition
9 Lang: english
12 #ifndef EXEC_TYPES_H
13 # include <exec/types.h>
14 #endif
16 #define IPREFS_TYPE_ICONTROL 0
17 #define IPREFS_TYPE_SCREENMODE 1
19 struct IScreenModePrefs
21 ULONG smp_DisplayID;
22 UWORD smp_Width;
23 UWORD smp_Height;
24 UWORD smp_Depth;
25 UWORD smp_Control;
28 struct IIControlPrefs
30 UWORD ic_TimeOut;
31 WORD ic_MetaDrag;
32 ULONG ic_Flags;
33 UBYTE ic_WBtoFront;
34 UBYTE ic_FrontToBack;
35 UBYTE ic_ReqTrue;
36 UBYTE ic_ReqFalse;
39 #endif /* GRAPHICS_SCREENS_H */