Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / compiler / include / prefs / pointer.h
blob04e4e21f2b24ca6eee5570eeca67aa8115c14ac4
1 #ifndef PREFS_POINTER_H
2 #define PREFS_POINTER_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Pointer prefs definitions
9 Lang: english
12 #ifndef EXEC_TYPES_H
13 # include <exec/types.h>
14 #endif
16 #ifndef LIBRARIES_IFFPARSE_H
17 # include <libraries/iffparse.h>
18 #endif
20 #define ID_PNTR MAKE_ID('P','N','T','R')
22 struct PointerPrefs
24 ULONG pp_Reserved[4];
25 UWORD pp_Which;
26 UWORD pp_Size;
27 UWORD pp_Width;
28 UWORD pp_Height;
29 UWORD pp_Depth;
30 UWORD pp_YSize;
31 UWORD pp_X, pp_Y;
34 #define WBP_NORMAL 0
35 #define WBP_BUSY 1
37 struct RGBTable
39 UBYTE t_Red;
40 UBYTE t_Green;
41 UBYTE t_Blue;
44 #endif /* PREFS_POINTER_H */