1 |
|
/* |
2 |
|
* video_defs.h - Definitions for MacOS video drivers |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2001 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2002 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
88 |
|
csCount = 6 |
89 |
|
}; |
90 |
|
|
91 |
+ |
enum { // VDGammaRecord |
92 |
+ |
csGTable = 0 |
93 |
+ |
}; |
94 |
+ |
|
95 |
|
enum { // VDDisplayConnectInfo struct |
96 |
|
csDisplayType = 0, |
97 |
|
csConnectTaggedType = 2, |
170 |
|
SIZEOF_SPBlock = 56 |
171 |
|
}; |
172 |
|
|
173 |
+ |
enum { // struct GammaTbl |
174 |
+ |
gVersion = 0, |
175 |
+ |
gType = 2, |
176 |
+ |
gFormulaSize = 4, |
177 |
+ |
gChanCnt = 6, |
178 |
+ |
gDataCnt = 8, |
179 |
+ |
gDataWidth = 10, |
180 |
+ |
gFormulaData = 12, // variable size |
181 |
+ |
SIZEOF_GammaTbl = 12 |
182 |
+ |
}; |
183 |
+ |
|
184 |
+ |
enum { // struct VDMultiConnectInfo |
185 |
+ |
csDisplayCountOrNumber = 0, |
186 |
+ |
csConnectInfo = 4 |
187 |
+ |
}; |
188 |
+ |
|
189 |
|
#endif |