1 /* $NetBSD: amigagraph.h,v 1.4 2001/08/31 04:44:58 simonb Exp $ */
2 
3 /*-
4  * Copyright (c) 1996 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Ignatios Souvatzis.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *        This product includes software developed by the NetBSD
21  *        Foundation, Inc. and its contributors.
22  * 4. Neither the name of The NetBSD Foundation nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 
39 #ifndef AMIGA_GRAPH_H
40 #define AMIGA_GRAPH_H
41 
42 #define SA_Title	0x80000028
43 #define SA_Colors	0x80000029
44 
45 #define SA_Sysfont	0x8000002C
46 #define SA_Type		0x8000002D
47 
48 #define SA_DisplayID	0x80000032
49 #define SA_ShowTitle	0x80000036
50 #define SA_Quiet	0x80000038
51 #define SA_AutoScroll	0x80000039
52 #define SA_Pens		0x8000003A
53 
54 #define PUBLICSCREEN 2
55 #define CUSTOMSCREEN 0xF
56 
57 #define	WA_Left		0x80000064
58 #define	WA_Top		0x80000065
59 #define	WA_Width	0x80000066
60 #define	WA_Height	0x80000067
61 #define WA_DetailPen	0x80000068
62 #define WA_BlockPen	0x80000069
63 #define WA_IDCMP	0x8000006A
64 #define WA_Flags	0x8000006B
65 #define WA_Gadgets	0x8000006C
66 #define WA_Checkmark	0x8000006D
67 #define WA_Title	0x8000006E
68 #define WA_ScreenTitle	0x8000006F
69 #define WA_CustomScreen	0x80000070
70 #define WA_SuperBitMap	0x80000071
71 #define WA_MinWidth	0x80000072
72 #define WA_MinHeight	0x80000073
73 #define WA_MaxWidth	0x80000074
74 #define WA_MaxHeight	0x80000075
75 #define WA_Backdrop	0x80000085
76 #define WA_Borderless	0x80000088
77 #define WA_Activate	0x80000089
78 #define WA_AutoAdjust	0x80000090
79 
80 struct Window {
81 	u_int8_t dum1[136];
82 };
83 #endif /* AMIGA_GRAPH_H */
84