comparison src/video/Xext/extensions/xf86dga1.h @ 1668:4da1ee79c9af SDL-1.3

more tweaking indent options
author Sam Lantinga <slouken@libsdl.org>
date Mon, 29 May 2006 04:04:35 +0000
parents 782fd950bd46
children
comparison
equal deleted inserted replaced
1667:1fddae038bc8 1668:4da1ee79c9af
39 39
40 40
41 41
42 #ifndef _XF86DGA_SERVER_ 42 #ifndef _XF86DGA_SERVER_
43 43
44 _XFUNCPROTOBEGIN Bool SDL_NAME (XF86DGAQueryVersion) ( 44 _XFUNCPROTOBEGIN Bool SDL_NAME(XF86DGAQueryVersion) (
45 #if NeedFunctionPrototypes 45 #if NeedFunctionPrototypes
46 Display * /* dpy */ , 46 Display * /* dpy */ ,
47 int * 47 int *
48 /* majorVersion */ , 48 /* majorVersion */ ,
49 int * /* minorVersion */ 49 int * /* minorVersion */
50 #endif 50 #endif
51 ); 51 );
52 52
53 Bool SDL_NAME (XF86DGAQueryExtension) ( 53 Bool SDL_NAME(XF86DGAQueryExtension) (
54 #if NeedFunctionPrototypes 54 #if NeedFunctionPrototypes
55 Display * /* dpy */ , 55 Display * /* dpy */ ,
56 int * /* event_base */ , 56 int * /* event_base */ ,
57 int * /* error_base */ 57 int * /* error_base */
58 #endif 58 #endif
59 ); 59 );
60 60
61 Status SDL_NAME (XF86DGAGetVideoLL) ( 61 Status SDL_NAME(XF86DGAGetVideoLL) (
62 #if NeedFunctionPrototypes
63 Display * /* dpy */ ,
64 int /* screen */ ,
65 int * /* base addr */ ,
66 int * /* width */ ,
67 int * /* bank_size */ ,
68 int * /* ram_size */
69 #endif
70 );
71
72 Status SDL_NAME(XF86DGAGetVideo) (
73 #if NeedFunctionPrototypes
74 Display * /* dpy */ ,
75 int /* screen */ ,
76 char ** /* base addr */ ,
77 int * /* width */ ,
78 int * /* bank_size */ ,
79 int * /* ram_size */
80 #endif
81 );
82
83 Status SDL_NAME(XF86DGADirectVideo) (
62 #if NeedFunctionPrototypes 84 #if NeedFunctionPrototypes
63 Display * /* dpy */ , 85 Display * /* dpy */ ,
64 int /* screen */ , 86 int /* screen */ ,
65 int * /* base addr */ , 87 int /* enable */
66 int * /* width */ ,
67 int * /* bank_size */ ,
68 int * /* ram_size */
69 #endif 88 #endif
70 ); 89 );
71 90
72 Status SDL_NAME (XF86DGAGetVideo) ( 91 Status SDL_NAME(XF86DGADirectVideoLL) (
73 #if NeedFunctionPrototypes 92 #if NeedFunctionPrototypes
74 Display * /* dpy */ , 93 Display * /* dpy */ ,
75 int /* screen */ , 94 int /* screen */ ,
76 char ** /* base addr */ , 95 int /* enable */
77 int * /* width */ ,
78 int * /* bank_size */ ,
79 int * /* ram_size */
80 #endif 96 #endif
81 ); 97 );
82 98
83 Status SDL_NAME (XF86DGADirectVideo) ( 99 Status SDL_NAME(XF86DGAGetViewPortSize) (
84 #if NeedFunctionPrototypes 100 #if NeedFunctionPrototypes
85 Display * /* dpy */ , 101 Display * /* dpy */ ,
86 int /* screen */ , 102 int /* screen */ ,
87 int /* enable */ 103 int * /* width */ ,
104 int * /* height */
88 #endif 105 #endif
89 ); 106 );
90 107
91 Status SDL_NAME (XF86DGADirectVideoLL) ( 108 Status SDL_NAME(XF86DGASetViewPort) (
92 #if NeedFunctionPrototypes 109 #if NeedFunctionPrototypes
93 Display * /* dpy */ , 110 Display * /* dpy */ ,
94 int /* screen */ , 111 int /* screen */ ,
95 int /* enable */ 112 int x /* X */ ,
113 int y /* Y */
96 #endif 114 #endif
97 ); 115 );
98 116
99 Status SDL_NAME (XF86DGAGetViewPortSize) ( 117 Status SDL_NAME(XF86DGAGetVidPage) (
118 #if NeedFunctionPrototypes
119 Display * /* dpy */ ,
120 int /* screen */ ,
121 int * /* vid page */
122 #endif
123 );
124
125 Status SDL_NAME(XF86DGASetVidPage) (
126 #if NeedFunctionPrototypes
127 Display * /* dpy */ ,
128 int /* screen */ ,
129 int /* vid page */
130 #endif
131 );
132
133 Status SDL_NAME(XF86DGAInstallColormap) (
134 #if NeedFunctionPrototypes
135 Display * /* dpy */ ,
136 int /* screen */ ,
137 Colormap /*Colormap */
138 #endif
139 );
140
141 int SDL_NAME(XF86DGAForkApp) (
142 #if NeedFunctionPrototypes
143 int screen
144 #endif
145 );
146
147 Status SDL_NAME(XF86DGAQueryDirectVideo) (
100 #if NeedFunctionPrototypes 148 #if NeedFunctionPrototypes
101 Display * /* dpy */ , 149 Display * /* dpy */ ,
102 int /* screen */ , 150 int /* screen */ ,
103 int * /* width */ , 151 int * /* flags */
104 int * /* height */
105 #endif 152 #endif
106 ); 153 );
107 154
108 Status SDL_NAME (XF86DGASetViewPort) ( 155 Bool SDL_NAME(XF86DGAViewPortChanged) (
109 #if NeedFunctionPrototypes 156 #if NeedFunctionPrototypes
110 Display * /* dpy */ , 157 Display * /* dpy */ ,
111 int /* screen */ , 158 int /* screen */ ,
112 int x /* X */ , 159 int /* n */
113 int y /* Y */
114 #endif
115 );
116
117 Status SDL_NAME (XF86DGAGetVidPage) (
118 #if NeedFunctionPrototypes
119 Display * /* dpy */ ,
120 int /* screen */ ,
121 int * /* vid page */
122 #endif
123 );
124
125 Status SDL_NAME (XF86DGASetVidPage) (
126 #if NeedFunctionPrototypes
127 Display * /* dpy */ ,
128 int /* screen */ ,
129 int /* vid page */
130 #endif
131 );
132
133 Status SDL_NAME (XF86DGAInstallColormap) (
134 #if NeedFunctionPrototypes
135 Display * /* dpy */ ,
136 int /* screen */ ,
137 Colormap /*Colormap */
138 #endif
139 );
140
141 int SDL_NAME (XF86DGAForkApp) (
142 #if NeedFunctionPrototypes
143 int screen
144 #endif
145 );
146
147 Status SDL_NAME (XF86DGAQueryDirectVideo) (
148 #if NeedFunctionPrototypes
149 Display * /* dpy */ ,
150 int /* screen */ ,
151 int * /* flags */
152 #endif
153 );
154
155 Bool SDL_NAME (XF86DGAViewPortChanged) (
156 #if NeedFunctionPrototypes
157 Display * /* dpy */ ,
158 int /* screen */ ,
159 int /* n */
160 #endif 160 #endif
161 ); 161 );
162 162
163 163
164 _XFUNCPROTOEND 164 _XFUNCPROTOEND