revert between 56095 -> 55830 in arch
[AROS.git] / arch / .unmaintained / m68k-pp-native / Drivers / display.hidd / displayclass.h
blob32c8b8e2605a0f469e28c5f6d871c84b218701cf
1 #ifndef HIDD_DISPLAYCLASS_H
2 #define HIDD_DISPLAYCLASS_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Some Display useful data.
9 Lang: English.
12 #include <exec/types.h>
13 #include <exec/nodes.h>
15 #define ONLY640 1
17 #ifdef ONLY640
18 #define NUM_MODES 1
19 #else
20 #define NUM_MODES 3
21 #endif
23 struct DisplayModeDesc
25 char *name; /* Mode name */
26 UWORD Width;
27 UWORD Height;
28 UBYTE Depth; /* BitsPerPixel */
29 UBYTE clock; /* PixelClock used */
30 ULONG Flags; /* Misc Flags */
31 IPTR HDisplay;
32 IPTR HSyncStart;
33 IPTR HSyncEnd;
34 IPTR HTotal;
35 IPTR HSkew;
36 IPTR VDisplay;
37 IPTR VSyncStart;
38 IPTR VSyncEnd;
39 IPTR VTotal;
42 struct DisplayModeEntry
44 struct MinNode Node;
45 ULONG mode; /* Mode desc */
46 struct DisplayModeDesc *Desc;
49 #endif /* HIDD_DISPLAYCLASS_H */