1 | /*
|
---|
2 | * Copyright (C) 1994-1998 The XFree86 Project, Inc. All Rights Reserved.
|
---|
3 | *
|
---|
4 | * Permission is hereby granted, free of charge, to any person obtaining a copy
|
---|
5 | * of this software and associated documentation files (the "Software"), to
|
---|
6 | * deal in the Software without restriction, including without limitation the
|
---|
7 | * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
---|
8 | * sell copies of the Software, and to permit persons to whom the Software is
|
---|
9 | * furnished to do so, subject to the following conditions:
|
---|
10 | *
|
---|
11 | * The above copyright notice and this permission notice shall be included in
|
---|
12 | * all copies or substantial portions of the Software.
|
---|
13 | *
|
---|
14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
---|
17 | * XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
---|
18 | * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
19 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
20 | *
|
---|
21 | * Except as contained in this notice, the name of the XFree86 Project shall
|
---|
22 | * not be used in advertising or otherwise to promote the sale, use or other
|
---|
23 | * dealings in this Software without prior written authorization from the
|
---|
24 | * XFree86 Project.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifdef HAVE_DIX_CONFIG_H
|
---|
28 | #include <dix-config.h>
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | #ifndef _CFB24_H_
|
---|
32 | #define _CFB24_H_
|
---|
33 |
|
---|
34 | /*
|
---|
35 | * C's preprocessing language substitutes >text<, not values...
|
---|
36 | */
|
---|
37 |
|
---|
38 | #ifdef OLDPSZ
|
---|
39 | # undef OLDPSZ
|
---|
40 | #endif
|
---|
41 |
|
---|
42 | #ifdef PSZ
|
---|
43 |
|
---|
44 | # if (PSZ == 8)
|
---|
45 | # define OLDPSZ 8
|
---|
46 | # endif
|
---|
47 |
|
---|
48 | # if (PSZ == 16)
|
---|
49 | # define OLDPSZ 16
|
---|
50 | # endif
|
---|
51 |
|
---|
52 | # if (PSZ == 24)
|
---|
53 | # define OLDPSZ 24
|
---|
54 | # endif
|
---|
55 |
|
---|
56 | # if (PSZ == 32)
|
---|
57 | # define OLDPSZ 32
|
---|
58 | # endif
|
---|
59 |
|
---|
60 | # ifndef OLDPSZ
|
---|
61 | /* Maybe an #error here ? */
|
---|
62 | # endif
|
---|
63 |
|
---|
64 | # undef PSZ
|
---|
65 |
|
---|
66 | #endif
|
---|
67 |
|
---|
68 | #define PSZ 24
|
---|
69 | #define CFB_PROTOTYPES_ONLY
|
---|
70 | #include "cfb.h"
|
---|
71 | #undef CFB_PROTOTYPES_ONLY
|
---|
72 | #include "cfbunmap.h"
|
---|
73 |
|
---|
74 | #undef PSZ
|
---|
75 | #ifdef OLDPSZ
|
---|
76 |
|
---|
77 | # if (OLDPSZ == 8)
|
---|
78 | # define PSZ 8
|
---|
79 | # endif
|
---|
80 |
|
---|
81 | # if (OLDPSZ == 16)
|
---|
82 | # define PSZ 16
|
---|
83 | # endif
|
---|
84 |
|
---|
85 | # if (OLDPSZ == 24)
|
---|
86 | # define PSZ 24
|
---|
87 | # endif
|
---|
88 |
|
---|
89 | # if (OLDPSZ == 32)
|
---|
90 | # define PSZ 32
|
---|
91 | # endif
|
---|
92 |
|
---|
93 | # undef OLDPSZ
|
---|
94 |
|
---|
95 | #endif
|
---|
96 |
|
---|
97 | #endif /* _CFB24_H_ */
|
---|