added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / include / intuition / pointerclass.h
blob2df168cb2622b04c31e244d40fa5be1326362a6a
1 #ifndef INTUITION_POINTERCLASS_H
2 #define INTUITION_POINTERCLASS_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Headerfile for Intuitions' pointer classes.
9 Lang: english
12 #ifndef EXEC_TYPES_H
13 #include <exec/types.h>
14 #endif
16 #ifndef INTUITION_INTUITION_H
17 #include <intuition/intuition.h>
18 #endif
20 #ifndef UTILITY_TAGITEM_H
21 #include <utility/tagitem.h>
22 #endif
24 #define POINTERA_Dummy (TAG_USER + 0x39000)
26 #define POINTERA_BitMap (POINTERA_Dummy + 0x01)
27 #define POINTERA_XOffset (POINTERA_Dummy + 0x02)
28 #define POINTERA_YOffset (POINTERA_Dummy + 0x03)
29 #define POINTERA_WordWidth (POINTERA_Dummy + 0x04)
30 #define POINTERA_XResolution (POINTERA_Dummy + 0x05)
31 #define POINTERA_YResolution (POINTERA_Dummy + 0x06)
33 #define POINTERXRESN_DEFAULT 0
34 #define POINTERXRESN_140NS 1
35 #define POINTERXRESN_70NS 2
36 #define POINTERXRESN_35NS 3
37 #define POINTERXRESN_SCREENRES 4
38 #define POINTERXRESN_LORES 5
39 #define POINTERXRESN_HIRES 6
41 #define POINTERYRESN_DEFAULT 0
42 #define POINTERYRESN_HIGH 2
43 #define POINTERYRESN_HIGHASPECT 3
44 #define POINTERYRESN_SCREENRES 4
45 #define POINTERYRESN_SCREENRESASPECT 5
47 #endif