Add some DDRAW and D3D definitions.
[wine] / include / ddraw.h
1 /*
2  * Copyright (C) the Wine project
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #ifndef __WINE_DDRAW_H
20 #define __WINE_DDRAW_H
21
22 #include "windef.h" /* LARGE_INTEGER ... */
23 #include "wingdi.h" /* PALETTE stuff ... */
24 #include "objbase.h"
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* defined(__cplusplus) */
29
30 #ifndef DIRECTDRAW_VERSION
31 #define DIRECTDRAW_VERSION      0x0700
32 #endif /* DIRECTDRAW_VERSION */
33
34 /*****************************************************************************
35  * Predeclare the interfaces
36  */
37 DEFINE_GUID( CLSID_DirectDraw,          0xD7B70EE0,0x4340,0x11CF,0xB0,0x63,0x00,0x20,0xAF,0xC2,0xCD,0x35 );
38 DEFINE_GUID( CLSID_DirectDraw7,         0x3C305196,0x50DB,0x11D3,0x9C,0xFE,0x00,0xC0,0x4F,0xD9,0x30,0xC5 );
39 DEFINE_GUID( CLSID_DirectDrawClipper,   0x593817A0,0x7DB3,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xb9,0x33,0x56 );
40 DEFINE_GUID( IID_IDirectDraw,           0x6C14DB80,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
41 DEFINE_GUID( IID_IDirectDraw2,          0xB3A6F3E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 );
42 DEFINE_GUID( IID_IDirectDraw4,          0x9c59509a,0x39bd,0x11d1,0x8c,0x4a,0x00,0xc0,0x4f,0xd9,0x30,0xc5 );
43 DEFINE_GUID( IID_IDirectDraw7,          0x15e65ec0,0x3b9c,0x11d2,0xb9,0x2f,0x00,0x60,0x97,0x97,0xea,0x5b );
44 DEFINE_GUID( IID_IDirectDrawSurface,    0x6C14DB81,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
45 DEFINE_GUID( IID_IDirectDrawSurface2,   0x57805885,0x6eec,0x11cf,0x94,0x41,0xa8,0x23,0x03,0xc1,0x0e,0x27 );
46 DEFINE_GUID( IID_IDirectDrawSurface3,   0xDA044E00,0x69B2,0x11D0,0xA1,0xD5,0x00,0xAA,0x00,0xB8,0xDF,0xBB );
47 DEFINE_GUID( IID_IDirectDrawSurface4,   0x0B2B8630,0xAD35,0x11D0,0x8E,0xA6,0x00,0x60,0x97,0x97,0xEA,0x5B );
48 DEFINE_GUID( IID_IDirectDrawSurface7,   0x06675a80,0x3b9b,0x11d2,0xb9,0x2f,0x00,0x60,0x97,0x97,0xea,0x5b );
49 DEFINE_GUID( IID_IDirectDrawPalette,    0x6C14DB84,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
50 DEFINE_GUID( IID_IDirectDrawClipper,    0x6C14DB85,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
51 DEFINE_GUID( IID_IDirectDrawColorControl,0x4B9F0EE0,0x0D7E,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8 );
52 DEFINE_GUID( IID_IDirectDrawGammaControl,0x69C11C3E,0xB46B,0x11D1,0xAD,0x7A,0x00,0xC0,0x4F,0xC2,0x9B,0x4E );
53
54 typedef struct IDirectDraw IDirectDraw,*LPDIRECTDRAW;
55 typedef struct IDirectDraw2 IDirectDraw2,*LPDIRECTDRAW2;
56 typedef struct IDirectDraw4 IDirectDraw4,*LPDIRECTDRAW4;
57 typedef struct IDirectDraw7 IDirectDraw7,*LPDIRECTDRAW7;
58 typedef struct IDirectDrawClipper IDirectDrawClipper,*LPDIRECTDRAWCLIPPER;
59 typedef struct IDirectDrawPalette IDirectDrawPalette,*LPDIRECTDRAWPALETTE;
60 typedef struct IDirectDrawSurface IDirectDrawSurface,*LPDIRECTDRAWSURFACE;
61 typedef struct IDirectDrawSurface2 IDirectDrawSurface2,*LPDIRECTDRAWSURFACE2;
62 typedef struct IDirectDrawSurface3 IDirectDrawSurface3,*LPDIRECTDRAWSURFACE3;
63 typedef struct IDirectDrawSurface4 IDirectDrawSurface4,*LPDIRECTDRAWSURFACE4;
64 typedef struct IDirectDrawSurface7 IDirectDrawSurface7,*LPDIRECTDRAWSURFACE7;
65 typedef struct IDirectDrawColorControl IDirectDrawColorControl,*LPDIRECTDRAWCOLORCONTROL;
66 typedef struct IDirectDrawGammaControl IDirectDrawGammaControl,*LPDIRECTDRAWGAMMACONTROL;
67
68
69 #define DDENUMRET_CANCEL        0
70 #define DDENUMRET_OK            1
71
72 #define DD_OK                   0
73
74
75 #define _FACDD          0x876
76 #define MAKE_DDHRESULT( code )  MAKE_HRESULT( 1, _FACDD, code )
77
78 #define DDERR_ALREADYINITIALIZED                MAKE_DDHRESULT( 5 )
79 #define DDERR_CANNOTATTACHSURFACE               MAKE_DDHRESULT( 10 )
80 #define DDERR_CANNOTDETACHSURFACE               MAKE_DDHRESULT( 20 )
81 #define DDERR_CURRENTLYNOTAVAIL                 MAKE_DDHRESULT( 40 )
82 #define DDERR_EXCEPTION                         MAKE_DDHRESULT( 55 )
83 #define DDERR_GENERIC                           E_FAIL
84 #define DDERR_HEIGHTALIGN                       MAKE_DDHRESULT( 90 )
85 #define DDERR_INCOMPATIBLEPRIMARY               MAKE_DDHRESULT( 95 )
86 #define DDERR_INVALIDCAPS                       MAKE_DDHRESULT( 100 )
87 #define DDERR_INVALIDCLIPLIST                   MAKE_DDHRESULT( 110 )
88 #define DDERR_INVALIDMODE                       MAKE_DDHRESULT( 120 )
89 #define DDERR_INVALIDOBJECT                     MAKE_DDHRESULT( 130 )
90 #define DDERR_INVALIDPARAMS                     E_INVALIDARG
91 #define DDERR_INVALIDPIXELFORMAT                MAKE_DDHRESULT( 145 )
92 #define DDERR_INVALIDRECT                       MAKE_DDHRESULT( 150 )
93 #define DDERR_LOCKEDSURFACES                    MAKE_DDHRESULT( 160 )
94 #define DDERR_NO3D                              MAKE_DDHRESULT( 170 )
95 #define DDERR_NOALPHAHW                         MAKE_DDHRESULT( 180 )
96 #define DDERR_NOSTEREOHARDWARE                  MAKE_DDHRESULT( 181 )
97 #define DDERR_NOSURFACELEFT                     MAKE_DDHRESULT( 182 )
98 #define DDERR_NOCLIPLIST                        MAKE_DDHRESULT( 205 )
99 #define DDERR_NOCOLORCONVHW                     MAKE_DDHRESULT( 210 )
100 #define DDERR_NOCOOPERATIVELEVELSET             MAKE_DDHRESULT( 212 )
101 #define DDERR_NOCOLORKEY                        MAKE_DDHRESULT( 215 )
102 #define DDERR_NOCOLORKEYHW                      MAKE_DDHRESULT( 220 )
103 #define DDERR_NODIRECTDRAWSUPPORT               MAKE_DDHRESULT( 222 )
104 #define DDERR_NOEXCLUSIVEMODE                   MAKE_DDHRESULT( 225 )
105 #define DDERR_NOFLIPHW                          MAKE_DDHRESULT( 230 )
106 #define DDERR_NOGDI                             MAKE_DDHRESULT( 240 )
107 #define DDERR_NOMIRRORHW                        MAKE_DDHRESULT( 250 )
108 #define DDERR_NOTFOUND                          MAKE_DDHRESULT( 255 )
109 #define DDERR_NOOVERLAYHW                       MAKE_DDHRESULT( 260 )
110 #define DDERR_OVERLAPPINGRECTS                  MAKE_DDHRESULT( 270 )
111 #define DDERR_NORASTEROPHW                      MAKE_DDHRESULT( 280 )
112 #define DDERR_NOROTATIONHW                      MAKE_DDHRESULT( 290 )
113 #define DDERR_NOSTRETCHHW                       MAKE_DDHRESULT( 310 )
114 #define DDERR_NOT4BITCOLOR                      MAKE_DDHRESULT( 316 )
115 #define DDERR_NOT4BITCOLORINDEX                 MAKE_DDHRESULT( 317 )
116 #define DDERR_NOT8BITCOLOR                      MAKE_DDHRESULT( 320 )
117 #define DDERR_NOTEXTUREHW                       MAKE_DDHRESULT( 330 )
118 #define DDERR_NOVSYNCHW                         MAKE_DDHRESULT( 335 )
119 #define DDERR_NOZBUFFERHW                       MAKE_DDHRESULT( 340 )
120 #define DDERR_NOZOVERLAYHW                      MAKE_DDHRESULT( 350 )
121 #define DDERR_OUTOFCAPS                         MAKE_DDHRESULT( 360 )
122 #define DDERR_OUTOFMEMORY                       E_OUTOFMEMORY
123 #define DDERR_OUTOFVIDEOMEMORY                  MAKE_DDHRESULT( 380 )
124 #define DDERR_OVERLAYCANTCLIP                   MAKE_DDHRESULT( 382 )
125 #define DDERR_OVERLAYCOLORKEYONLYONEACTIVE      MAKE_DDHRESULT( 384 )
126 #define DDERR_PALETTEBUSY                       MAKE_DDHRESULT( 387 )
127 #define DDERR_COLORKEYNOTSET                    MAKE_DDHRESULT( 400 )
128 #define DDERR_SURFACEALREADYATTACHED            MAKE_DDHRESULT( 410 )
129 #define DDERR_SURFACEALREADYDEPENDENT           MAKE_DDHRESULT( 420 )
130 #define DDERR_SURFACEBUSY                       MAKE_DDHRESULT( 430 )
131 #define DDERR_CANTLOCKSURFACE                   MAKE_DDHRESULT( 435 )
132 #define DDERR_SURFACEISOBSCURED                 MAKE_DDHRESULT( 440 )
133 #define DDERR_SURFACELOST                       MAKE_DDHRESULT( 450 )
134 #define DDERR_SURFACENOTATTACHED                MAKE_DDHRESULT( 460 )
135 #define DDERR_TOOBIGHEIGHT                      MAKE_DDHRESULT( 470 )
136 #define DDERR_TOOBIGSIZE                        MAKE_DDHRESULT( 480 )
137 #define DDERR_TOOBIGWIDTH                       MAKE_DDHRESULT( 490 )
138 #define DDERR_UNSUPPORTED                       E_NOTIMPL
139 #define DDERR_UNSUPPORTEDFORMAT                 MAKE_DDHRESULT( 510 )
140 #define DDERR_UNSUPPORTEDMASK                   MAKE_DDHRESULT( 520 )
141 #define DDERR_INVALIDSTREAM                     MAKE_DDHRESULT( 521 )
142 #define DDERR_VERTICALBLANKINPROGRESS           MAKE_DDHRESULT( 537 )
143 #define DDERR_WASSTILLDRAWING                   MAKE_DDHRESULT( 540 )
144 #define DDERR_DDSCAPSCOMPLEXREQUIRED            MAKE_DDHRESULT( 542 )
145 #define DDERR_XALIGN                            MAKE_DDHRESULT( 560 )
146 #define DDERR_INVALIDDIRECTDRAWGUID             MAKE_DDHRESULT( 561 )
147 #define DDERR_DIRECTDRAWALREADYCREATED          MAKE_DDHRESULT( 562 )
148 #define DDERR_NODIRECTDRAWHW                    MAKE_DDHRESULT( 563 )
149 #define DDERR_PRIMARYSURFACEALREADYEXISTS       MAKE_DDHRESULT( 564 )
150 #define DDERR_NOEMULATION                       MAKE_DDHRESULT( 565 )
151 #define DDERR_REGIONTOOSMALL                    MAKE_DDHRESULT( 566 )
152 #define DDERR_CLIPPERISUSINGHWND                MAKE_DDHRESULT( 567 )
153 #define DDERR_NOCLIPPERATTACHED                 MAKE_DDHRESULT( 568 )
154 #define DDERR_NOHWND                            MAKE_DDHRESULT( 569 )
155 #define DDERR_HWNDSUBCLASSED                    MAKE_DDHRESULT( 570 )
156 #define DDERR_HWNDALREADYSET                    MAKE_DDHRESULT( 571 )
157 #define DDERR_NOPALETTEATTACHED                 MAKE_DDHRESULT( 572 )
158 #define DDERR_NOPALETTEHW                       MAKE_DDHRESULT( 573 )
159 #define DDERR_BLTFASTCANTCLIP                   MAKE_DDHRESULT( 574 )
160 #define DDERR_NOBLTHW                           MAKE_DDHRESULT( 575 )
161 #define DDERR_NODDROPSHW                        MAKE_DDHRESULT( 576 )
162 #define DDERR_OVERLAYNOTVISIBLE                 MAKE_DDHRESULT( 577 )
163 #define DDERR_NOOVERLAYDEST                     MAKE_DDHRESULT( 578 )
164 #define DDERR_INVALIDPOSITION                   MAKE_DDHRESULT( 579 )
165 #define DDERR_NOTAOVERLAYSURFACE                MAKE_DDHRESULT( 580 )
166 #define DDERR_EXCLUSIVEMODEALREADYSET           MAKE_DDHRESULT( 581 )
167 #define DDERR_NOTFLIPPABLE                      MAKE_DDHRESULT( 582 )
168 #define DDERR_CANTDUPLICATE                     MAKE_DDHRESULT( 583 )
169 #define DDERR_NOTLOCKED                         MAKE_DDHRESULT( 584 )
170 #define DDERR_CANTCREATEDC                      MAKE_DDHRESULT( 585 )
171 #define DDERR_NODC                              MAKE_DDHRESULT( 586 )
172 #define DDERR_WRONGMODE                         MAKE_DDHRESULT( 587 )
173 #define DDERR_IMPLICITLYCREATED                 MAKE_DDHRESULT( 588 )
174 #define DDERR_NOTPALETTIZED                     MAKE_DDHRESULT( 589 )
175 #define DDERR_UNSUPPORTEDMODE                   MAKE_DDHRESULT( 590 )
176 #define DDERR_NOMIPMAPHW                        MAKE_DDHRESULT( 591 )
177 #define DDERR_INVALIDSURFACETYPE                MAKE_DDHRESULT( 592 )
178 #define DDERR_NOOPTIMIZEHW                      MAKE_DDHRESULT( 600 )
179 #define DDERR_NOTLOADED                         MAKE_DDHRESULT( 601 )
180 #define DDERR_NOFOCUSWINDOW                     MAKE_DDHRESULT( 602 )
181 #define DDERR_NOTONMIPMAPSUBLEVEL               MAKE_DDHRESULT( 603 )
182 #define DDERR_DCALREADYCREATED                  MAKE_DDHRESULT( 620 )
183 #define DDERR_NONONLOCALVIDMEM                  MAKE_DDHRESULT( 630 )
184 #define DDERR_CANTPAGELOCK                      MAKE_DDHRESULT( 640 )
185 #define DDERR_CANTPAGEUNLOCK                    MAKE_DDHRESULT( 660 )
186 #define DDERR_NOTPAGELOCKED                     MAKE_DDHRESULT( 680 )
187 #define DDERR_MOREDATA                          MAKE_DDHRESULT( 690 )
188 #define DDERR_EXPIRED                           MAKE_DDHRESULT( 691 )
189 #define DDERR_TESTFINISHED                      MAKE_DDHRESULT( 692 )
190 #define DDERR_NEWMODE                           MAKE_DDHRESULT( 693 )
191 #define DDERR_D3DNOTINITIALIZED                 MAKE_DDHRESULT( 694 )
192 #define DDERR_VIDEONOTACTIVE                    MAKE_DDHRESULT( 695 )
193 #define DDERR_NOMONITORINFORMATION              MAKE_DDHRESULT( 696 )
194 #define DDERR_NODRIVERSUPPORT                   MAKE_DDHRESULT( 697 )
195 #define DDERR_DEVICEDOESNTOWNSURFACE            MAKE_DDHRESULT( 699 )
196 #define DDERR_NOTINITIALIZED                    CO_E_NOTINITIALIZED
197
198 /* dwFlags for Blt* */
199 #define DDBLT_ALPHADEST                         0x00000001
200 #define DDBLT_ALPHADESTCONSTOVERRIDE            0x00000002
201 #define DDBLT_ALPHADESTNEG                      0x00000004
202 #define DDBLT_ALPHADESTSURFACEOVERRIDE          0x00000008
203 #define DDBLT_ALPHAEDGEBLEND                    0x00000010
204 #define DDBLT_ALPHASRC                          0x00000020
205 #define DDBLT_ALPHASRCCONSTOVERRIDE             0x00000040
206 #define DDBLT_ALPHASRCNEG                       0x00000080
207 #define DDBLT_ALPHASRCSURFACEOVERRIDE           0x00000100
208 #define DDBLT_ASYNC                             0x00000200
209 #define DDBLT_COLORFILL                         0x00000400
210 #define DDBLT_DDFX                              0x00000800
211 #define DDBLT_DDROPS                            0x00001000
212 #define DDBLT_KEYDEST                           0x00002000
213 #define DDBLT_KEYDESTOVERRIDE                   0x00004000
214 #define DDBLT_KEYSRC                            0x00008000
215 #define DDBLT_KEYSRCOVERRIDE                    0x00010000
216 #define DDBLT_ROP                               0x00020000
217 #define DDBLT_ROTATIONANGLE                     0x00040000
218 #define DDBLT_ZBUFFER                           0x00080000
219 #define DDBLT_ZBUFFERDESTCONSTOVERRIDE          0x00100000
220 #define DDBLT_ZBUFFERDESTOVERRIDE               0x00200000
221 #define DDBLT_ZBUFFERSRCCONSTOVERRIDE           0x00400000
222 #define DDBLT_ZBUFFERSRCOVERRIDE                0x00800000
223 #define DDBLT_WAIT                              0x01000000
224 #define DDBLT_DEPTHFILL                         0x02000000
225 #define DDBLT_DONOTWAIT                         0x08000000
226
227 /* dwTrans for BltFast */
228 #define DDBLTFAST_NOCOLORKEY                    0x00000000
229 #define DDBLTFAST_SRCCOLORKEY                   0x00000001
230 #define DDBLTFAST_DESTCOLORKEY                  0x00000002
231 #define DDBLTFAST_WAIT                          0x00000010
232 #define DDBLTFAST_DONOTWAIT                     0x00000020
233
234 /* dwFlags for Flip */
235 #define DDFLIP_WAIT             0x00000001
236 #define DDFLIP_EVEN             0x00000002 /* only valid for overlay */
237 #define DDFLIP_ODD              0x00000004 /* only valid for overlay */
238 #define DDFLIP_NOVSYNC          0x00000008
239 #define DDFLIP_STEREO           0x00000010
240 #define DDFLIP_DONOTWAIT        0x00000020
241
242 /* dwFlags for GetBltStatus */
243 #define DDGBS_CANBLT                            0x00000001
244 #define DDGBS_ISBLTDONE                         0x00000002
245
246 /* dwFlags for IDirectDrawSurface7::GetFlipStatus */
247 #define DDGFS_CANFLIP           1L
248 #define DDGFS_ISFLIPDONE        2L
249
250 /* dwFlags for IDirectDrawSurface7::SetPrivateData */
251 #define DDSPD_IUNKNOWNPTR       1L
252 #define DDSPD_VOLATILE          2L
253
254 /* DDSCAPS.dwCaps */
255 /* reserved1, was 3d capable */
256 #define DDSCAPS_RESERVED1               0x00000001
257 /* surface contains alpha information */
258 #define DDSCAPS_ALPHA                   0x00000002
259 /* this surface is a backbuffer */
260 #define DDSCAPS_BACKBUFFER              0x00000004
261 /* complex surface structure */
262 #define DDSCAPS_COMPLEX                 0x00000008
263 /* part of surface flipping structure */
264 #define DDSCAPS_FLIP                    0x00000010
265 /* this surface is the frontbuffer surface */
266 #define DDSCAPS_FRONTBUFFER             0x00000020
267 /* this is a plain offscreen surface */
268 #define DDSCAPS_OFFSCREENPLAIN          0x00000040
269 /* overlay */
270 #define DDSCAPS_OVERLAY                 0x00000080
271 /* palette objects can be created and attached to us */
272 #define DDSCAPS_PALETTE                 0x00000100
273 /* primary surface (the one the user looks at currently)(right eye)*/
274 #define DDSCAPS_PRIMARYSURFACE          0x00000200
275 /* primary surface for left eye */
276 #define DDSCAPS_PRIMARYSURFACELEFT      0x00000400
277 /* surface exists in systemmemory */
278 #define DDSCAPS_SYSTEMMEMORY            0x00000800
279 /* surface can be used as a texture */
280 #define DDSCAPS_TEXTURE                 0x00001000
281 /* surface may be destination for 3d rendering */
282 #define DDSCAPS_3DDEVICE                0x00002000
283 /* surface exists in videomemory */
284 #define DDSCAPS_VIDEOMEMORY             0x00004000
285 /* surface changes immediately visible */
286 #define DDSCAPS_VISIBLE                 0x00008000
287 /* write only surface */
288 #define DDSCAPS_WRITEONLY               0x00010000
289 /* zbuffer surface */
290 #define DDSCAPS_ZBUFFER                 0x00020000
291 /* has its own DC */
292 #define DDSCAPS_OWNDC                   0x00040000
293 /* surface should be able to receive live video */
294 #define DDSCAPS_LIVEVIDEO               0x00080000
295 /* should be able to have a hw codec decompress stuff into it */
296 #define DDSCAPS_HWCODEC                 0x00100000
297 /* mode X (320x200 or 320x240) surface */
298 #define DDSCAPS_MODEX                   0x00200000
299 /* one mipmap surface (1 level) */
300 #define DDSCAPS_MIPMAP                  0x00400000
301 #define DDSCAPS_RESERVED2               0x00800000
302 /* memory allocation delayed until Load() */
303 #define DDSCAPS_ALLOCONLOAD             0x04000000
304 /* Indicates that the surface will receive data from a video port */
305 #define DDSCAPS_VIDEOPORT               0x08000000
306 /* surface is in local videomemory */
307 #define DDSCAPS_LOCALVIDMEM             0x10000000
308 /* surface is in nonlocal videomemory */
309 #define DDSCAPS_NONLOCALVIDMEM          0x20000000
310 /* surface is a standard VGA mode surface (NOT ModeX) */
311 #define DDSCAPS_STANDARDVGAMODE         0x40000000
312 /* optimized? surface */
313 #define DDSCAPS_OPTIMIZED               0x80000000
314
315 typedef struct _DDSCAPS {
316         DWORD   dwCaps; /* capabilities of surface wanted */
317 } DDSCAPS,*LPDDSCAPS;
318
319 /* DDSCAPS2.dwCaps2 */
320 /* indicates the surface will receive data from a video port using
321    deinterlacing hardware. */
322 #define DDSCAPS2_HARDWAREDEINTERLACE    0x00000002
323 /* indicates the surface will be locked very frequently. */
324 #define DDSCAPS2_HINTDYNAMIC            0x00000004
325 /* indicates surface can be re-ordered or retiled on load() */
326 #define DDSCAPS2_HINTSTATIC             0x00000008
327 /* indicates surface to be managed by directdraw/direct3D */
328 #define DDSCAPS2_TEXTUREMANAGE          0x00000010
329 /* reserved bits */
330 #define DDSCAPS2_RESERVED1              0x00000020
331 #define DDSCAPS2_RESERVED2              0x00000040
332 /* indicates surface will never be locked again */
333 #define DDSCAPS2_OPAQUE                 0x00000080
334 /* set at CreateSurface() time to indicate antialising will be used */
335 #define DDSCAPS2_HINTANTIALIASING       0x00000100
336 /* set at CreateSurface() time to indicate cubic environment map */
337 #define DDSCAPS2_CUBEMAP                0x00000200
338 /* face flags for cube maps */
339 #define DDSCAPS2_CUBEMAP_POSITIVEX      0x00000400
340 #define DDSCAPS2_CUBEMAP_NEGATIVEX      0x00000800
341 #define DDSCAPS2_CUBEMAP_POSITIVEY      0x00001000
342 #define DDSCAPS2_CUBEMAP_NEGATIVEY      0x00002000
343 #define DDSCAPS2_CUBEMAP_POSITIVEZ      0x00004000
344 #define DDSCAPS2_CUBEMAP_NEGATIVEZ      0x00008000
345 /* specifies all faces of a cube for CreateSurface() */
346 #define DDSCAPS2_CUBEMAP_ALLFACES ( DDSCAPS2_CUBEMAP_POSITIVEX |\
347                                     DDSCAPS2_CUBEMAP_NEGATIVEX |\
348                                     DDSCAPS2_CUBEMAP_POSITIVEY |\
349                                     DDSCAPS2_CUBEMAP_NEGATIVEY |\
350                                     DDSCAPS2_CUBEMAP_POSITIVEZ |\
351                                     DDSCAPS2_CUBEMAP_NEGATIVEZ )
352 /* set for mipmap sublevels on DirectX7 and later.  ignored by CreateSurface() */
353 #define DDSCAPS2_MIPMAPSUBLEVEL         0x00010000
354 /* indicates texture surface to be managed by Direct3D *only* */
355 #define DDSCAPS2_D3DTEXTUREMANAGE       0x00020000
356 /* indicates managed surface that can safely be lost */
357 #define DDSCAPS2_DONOTPERSIST           0x00040000
358 /* indicates surface is part of a stereo flipping chain */
359 #define DDSCAPS2_STEREOSURFACELEFT      0x00080000
360
361 typedef struct _DDSCAPS2 {
362         DWORD   dwCaps; /* capabilities of surface wanted */
363         DWORD   dwCaps2; /* additional capabilities */
364         DWORD   dwCaps3; /* reserved capabilities */
365         DWORD   dwCaps4; /* more reserved capabilities */
366 } DDSCAPS2,*LPDDSCAPS2;
367
368 #define DD_ROP_SPACE    (256/32)        /* space required to store ROP array */
369
370 typedef struct _DDCAPS_DX7              /* DirectX 7 version of caps struct */
371 {
372     DWORD       dwSize;                 /* size of the DDDRIVERCAPS structure */
373     DWORD       dwCaps;                 /* driver specific capabilities */
374     DWORD       dwCaps2;                /* more driver specific capabilites */
375     DWORD       dwCKeyCaps;             /* color key capabilities of the surface */
376     DWORD       dwFXCaps;               /* driver specific stretching and effects capabilites */
377     DWORD       dwFXAlphaCaps;          /* alpha driver specific capabilities */
378     DWORD       dwPalCaps;              /* palette capabilities */
379     DWORD       dwSVCaps;               /* stereo vision capabilities */
380     DWORD       dwAlphaBltConstBitDepths;       /* DDBD_2,4,8 */
381     DWORD       dwAlphaBltPixelBitDepths;       /* DDBD_1,2,4,8 */
382     DWORD       dwAlphaBltSurfaceBitDepths;     /* DDBD_1,2,4,8 */
383     DWORD       dwAlphaOverlayConstBitDepths;   /* DDBD_2,4,8 */
384     DWORD       dwAlphaOverlayPixelBitDepths;   /* DDBD_1,2,4,8 */
385     DWORD       dwAlphaOverlaySurfaceBitDepths; /* DDBD_1,2,4,8 */
386     DWORD       dwZBufferBitDepths;             /* DDBD_8,16,24,32 */
387     DWORD       dwVidMemTotal;          /* total amount of video memory */
388     DWORD       dwVidMemFree;           /* amount of free video memory */
389     DWORD       dwMaxVisibleOverlays;   /* maximum number of visible overlays */
390     DWORD       dwCurrVisibleOverlays;  /* current number of visible overlays */
391     DWORD       dwNumFourCCCodes;       /* number of four cc codes */
392     DWORD       dwAlignBoundarySrc;     /* source rectangle alignment */
393     DWORD       dwAlignSizeSrc;         /* source rectangle byte size */
394     DWORD       dwAlignBoundaryDest;    /* dest rectangle alignment */
395     DWORD       dwAlignSizeDest;        /* dest rectangle byte size */
396     DWORD       dwAlignStrideAlign;     /* stride alignment */
397     DWORD       dwRops[DD_ROP_SPACE];   /* ROPS supported */
398     DDSCAPS     ddsOldCaps;             /* old DDSCAPS - superceded for DirectX6+ */
399     DWORD       dwMinOverlayStretch;    /* minimum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
400     DWORD       dwMaxOverlayStretch;    /* maximum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
401     DWORD       dwMinLiveVideoStretch;  /* minimum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
402     DWORD       dwMaxLiveVideoStretch;  /* maximum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
403     DWORD       dwMinHwCodecStretch;    /* minimum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
404     DWORD       dwMaxHwCodecStretch;    /* maximum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
405     DWORD       dwReserved1;
406     DWORD       dwReserved2;
407     DWORD       dwReserved3;
408     DWORD       dwSVBCaps;              /* driver specific capabilities for System->Vmem blts */
409     DWORD       dwSVBCKeyCaps;          /* driver color key capabilities for System->Vmem blts */
410     DWORD       dwSVBFXCaps;            /* driver FX capabilities for System->Vmem blts */
411     DWORD       dwSVBRops[DD_ROP_SPACE];/* ROPS supported for System->Vmem blts */
412     DWORD       dwVSBCaps;              /* driver specific capabilities for Vmem->System blts */
413     DWORD       dwVSBCKeyCaps;          /* driver color key capabilities for Vmem->System blts */
414     DWORD       dwVSBFXCaps;            /* driver FX capabilities for Vmem->System blts */
415     DWORD       dwVSBRops[DD_ROP_SPACE];/* ROPS supported for Vmem->System blts */
416     DWORD       dwSSBCaps;              /* driver specific capabilities for System->System blts */
417     DWORD       dwSSBCKeyCaps;          /* driver color key capabilities for System->System blts */
418     DWORD       dwSSBFXCaps;            /* driver FX capabilities for System->System blts */
419     DWORD       dwSSBRops[DD_ROP_SPACE];/* ROPS supported for System->System blts */
420     DWORD       dwMaxVideoPorts;        /* maximum number of usable video ports */
421     DWORD       dwCurrVideoPorts;       /* current number of video ports used */
422     DWORD       dwSVBCaps2;             /* more driver specific capabilities for System->Vmem blts */
423     DWORD       dwNLVBCaps;             /* driver specific capabilities for non-local->local vidmem blts */
424     DWORD       dwNLVBCaps2;            /* more driver specific capabilities non-local->local vidmem blts */
425     DWORD       dwNLVBCKeyCaps;         /* driver color key capabilities for non-local->local vidmem blts */
426     DWORD       dwNLVBFXCaps;           /* driver FX capabilities for non-local->local blts */
427     DWORD       dwNLVBRops[DD_ROP_SPACE]; /* ROPS supported for non-local->local blts */
428     DDSCAPS2    ddsCaps;                /* surface capabilities */
429 } DDCAPS_DX7,*LPDDCAPS_DX7;
430
431 typedef struct _DDCAPS_DX6              /* DirectX 6 version of caps struct */
432 {
433     DWORD       dwSize;                 /* size of the DDDRIVERCAPS structure */
434     DWORD       dwCaps;                 /* driver specific capabilities */
435     DWORD       dwCaps2;                /* more driver specific capabilites */
436     DWORD       dwCKeyCaps;             /* color key capabilities of the surface */
437     DWORD       dwFXCaps;               /* driver specific stretching and effects capabilites */
438     DWORD       dwFXAlphaCaps;          /* alpha driver specific capabilities */
439     DWORD       dwPalCaps;              /* palette capabilities */
440     DWORD       dwSVCaps;               /* stereo vision capabilities */
441     DWORD       dwAlphaBltConstBitDepths;       /* DDBD_2,4,8 */
442     DWORD       dwAlphaBltPixelBitDepths;       /* DDBD_1,2,4,8 */
443     DWORD       dwAlphaBltSurfaceBitDepths;     /* DDBD_1,2,4,8 */
444     DWORD       dwAlphaOverlayConstBitDepths;   /* DDBD_2,4,8 */
445     DWORD       dwAlphaOverlayPixelBitDepths;   /* DDBD_1,2,4,8 */
446     DWORD       dwAlphaOverlaySurfaceBitDepths; /* DDBD_1,2,4,8 */
447     DWORD       dwZBufferBitDepths;             /* DDBD_8,16,24,32 */
448     DWORD       dwVidMemTotal;          /* total amount of video memory */
449     DWORD       dwVidMemFree;           /* amount of free video memory */
450     DWORD       dwMaxVisibleOverlays;   /* maximum number of visible overlays */
451     DWORD       dwCurrVisibleOverlays;  /* current number of visible overlays */
452     DWORD       dwNumFourCCCodes;       /* number of four cc codes */
453     DWORD       dwAlignBoundarySrc;     /* source rectangle alignment */
454     DWORD       dwAlignSizeSrc;         /* source rectangle byte size */
455     DWORD       dwAlignBoundaryDest;    /* dest rectangle alignment */
456     DWORD       dwAlignSizeDest;        /* dest rectangle byte size */
457     DWORD       dwAlignStrideAlign;     /* stride alignment */
458     DWORD       dwRops[DD_ROP_SPACE];   /* ROPS supported */
459     DDSCAPS     ddsOldCaps;             /* old DDSCAPS - superceded for DirectX6+ */
460     DWORD       dwMinOverlayStretch;    /* minimum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
461     DWORD       dwMaxOverlayStretch;    /* maximum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
462     DWORD       dwMinLiveVideoStretch;  /* minimum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
463     DWORD       dwMaxLiveVideoStretch;  /* maximum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
464     DWORD       dwMinHwCodecStretch;    /* minimum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
465     DWORD       dwMaxHwCodecStretch;    /* maximum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
466     DWORD       dwReserved1;
467     DWORD       dwReserved2;
468     DWORD       dwReserved3;
469     DWORD       dwSVBCaps;              /* driver specific capabilities for System->Vmem blts */
470     DWORD       dwSVBCKeyCaps;          /* driver color key capabilities for System->Vmem blts */
471     DWORD       dwSVBFXCaps;            /* driver FX capabilities for System->Vmem blts */
472     DWORD       dwSVBRops[DD_ROP_SPACE];/* ROPS supported for System->Vmem blts */
473     DWORD       dwVSBCaps;              /* driver specific capabilities for Vmem->System blts */
474     DWORD       dwVSBCKeyCaps;          /* driver color key capabilities for Vmem->System blts */
475     DWORD       dwVSBFXCaps;            /* driver FX capabilities for Vmem->System blts */
476     DWORD       dwVSBRops[DD_ROP_SPACE];/* ROPS supported for Vmem->System blts */
477     DWORD       dwSSBCaps;              /* driver specific capabilities for System->System blts */
478     DWORD       dwSSBCKeyCaps;          /* driver color key capabilities for System->System blts */
479     DWORD       dwSSBFXCaps;            /* driver FX capabilities for System->System blts */
480     DWORD       dwSSBRops[DD_ROP_SPACE];/* ROPS supported for System->System blts */
481     DWORD       dwMaxVideoPorts;        /* maximum number of usable video ports */
482     DWORD       dwCurrVideoPorts;       /* current number of video ports used */
483     DWORD       dwSVBCaps2;             /* more driver specific capabilities for System->Vmem blts */
484     DWORD       dwNLVBCaps;             /* driver specific capabilities for non-local->local vidmem blts */
485     DWORD       dwNLVBCaps2;            /* more driver specific capabilities non-local->local vidmem blts */
486     DWORD       dwNLVBCKeyCaps;         /* driver color key capabilities for non-local->local vidmem blts */
487     DWORD       dwNLVBFXCaps;           /* driver FX capabilities for non-local->local blts */
488     DWORD       dwNLVBRops[DD_ROP_SPACE]; /* ROPS supported for non-local->local blts */
489     /* and one new member for DirectX 6 */
490     DDSCAPS2    ddsCaps;                /* surface capabilities */
491 } DDCAPS_DX6,*LPDDCAPS_DX6;
492
493 typedef struct _DDCAPS_DX5              /* DirectX5 version of caps struct */
494 {
495     DWORD       dwSize;                 /* size of the DDDRIVERCAPS structure */
496     DWORD       dwCaps;                 /* driver specific capabilities */
497     DWORD       dwCaps2;                /* more driver specific capabilites */
498     DWORD       dwCKeyCaps;             /* color key capabilities of the surface */
499     DWORD       dwFXCaps;               /* driver specific stretching and effects capabilites */
500     DWORD       dwFXAlphaCaps;          /* alpha driver specific capabilities */
501     DWORD       dwPalCaps;              /* palette capabilities */
502     DWORD       dwSVCaps;               /* stereo vision capabilities */
503     DWORD       dwAlphaBltConstBitDepths;       /* DDBD_2,4,8 */
504     DWORD       dwAlphaBltPixelBitDepths;       /* DDBD_1,2,4,8 */
505     DWORD       dwAlphaBltSurfaceBitDepths;     /* DDBD_1,2,4,8 */
506     DWORD       dwAlphaOverlayConstBitDepths;   /* DDBD_2,4,8 */
507     DWORD       dwAlphaOverlayPixelBitDepths;   /* DDBD_1,2,4,8 */
508     DWORD       dwAlphaOverlaySurfaceBitDepths; /* DDBD_1,2,4,8 */
509     DWORD       dwZBufferBitDepths;             /* DDBD_8,16,24,32 */
510     DWORD       dwVidMemTotal;          /* total amount of video memory */
511     DWORD       dwVidMemFree;           /* amount of free video memory */
512     DWORD       dwMaxVisibleOverlays;   /* maximum number of visible overlays */
513     DWORD       dwCurrVisibleOverlays;  /* current number of visible overlays */
514     DWORD       dwNumFourCCCodes;       /* number of four cc codes */
515     DWORD       dwAlignBoundarySrc;     /* source rectangle alignment */
516     DWORD       dwAlignSizeSrc;         /* source rectangle byte size */
517     DWORD       dwAlignBoundaryDest;    /* dest rectangle alignment */
518     DWORD       dwAlignSizeDest;        /* dest rectangle byte size */
519     DWORD       dwAlignStrideAlign;     /* stride alignment */
520     DWORD       dwRops[DD_ROP_SPACE];   /* ROPS supported */
521     DDSCAPS     ddsCaps;                /* DDSCAPS structure has all the general capabilities */
522     DWORD       dwMinOverlayStretch;    /* minimum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
523     DWORD       dwMaxOverlayStretch;    /* maximum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
524     DWORD       dwMinLiveVideoStretch;  /* minimum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
525     DWORD       dwMaxLiveVideoStretch;  /* maximum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
526     DWORD       dwMinHwCodecStretch;    /* minimum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
527     DWORD       dwMaxHwCodecStretch;    /* maximum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
528     DWORD       dwReserved1;
529     DWORD       dwReserved2;
530     DWORD       dwReserved3;
531     DWORD       dwSVBCaps;              /* driver specific capabilities for System->Vmem blts */
532     DWORD       dwSVBCKeyCaps;          /* driver color key capabilities for System->Vmem blts */
533     DWORD       dwSVBFXCaps;            /* driver FX capabilities for System->Vmem blts */
534     DWORD       dwSVBRops[DD_ROP_SPACE];/* ROPS supported for System->Vmem blts */
535     DWORD       dwVSBCaps;              /* driver specific capabilities for Vmem->System blts */
536     DWORD       dwVSBCKeyCaps;          /* driver color key capabilities for Vmem->System blts */
537     DWORD       dwVSBFXCaps;            /* driver FX capabilities for Vmem->System blts */
538     DWORD       dwVSBRops[DD_ROP_SPACE];/* ROPS supported for Vmem->System blts */
539     DWORD       dwSSBCaps;              /* driver specific capabilities for System->System blts */
540     DWORD       dwSSBCKeyCaps;          /* driver color key capabilities for System->System blts */
541     DWORD       dwSSBFXCaps;            /* driver FX capabilities for System->System blts */
542     DWORD       dwSSBRops[DD_ROP_SPACE];/* ROPS supported for System->System blts */
543     /* the following are the new DirectX 5 members */
544     DWORD       dwMaxVideoPorts;        /* maximum number of usable video ports */
545     DWORD       dwCurrVideoPorts;       /* current number of video ports used */
546     DWORD       dwSVBCaps2;             /* more driver specific capabilities for System->Vmem blts */
547     DWORD       dwNLVBCaps;             /* driver specific capabilities for non-local->local vidmem blts */
548     DWORD       dwNLVBCaps2;            /* more driver specific capabilities non-local->local vidmem blts */
549     DWORD       dwNLVBCKeyCaps;         /* driver color key capabilities for non-local->local vidmem blts */
550     DWORD       dwNLVBFXCaps;           /* driver FX capabilities for non-local->local blts */
551     DWORD       dwNLVBRops[DD_ROP_SPACE]; /* ROPS supported for non-local->local blts */
552 } DDCAPS_DX5,*LPDDCAPS_DX5;
553
554 typedef struct _DDCAPS_DX3              /* DirectX3 version of caps struct */
555 {
556     DWORD       dwSize;                 /* size of the DDDRIVERCAPS structure */
557     DWORD       dwCaps;                 /* driver specific capabilities */
558     DWORD       dwCaps2;                /* more driver specific capabilites */
559     DWORD       dwCKeyCaps;             /* color key capabilities of the surface */
560     DWORD       dwFXCaps;               /* driver specific stretching and effects capabilites */
561     DWORD       dwFXAlphaCaps;          /* alpha driver specific capabilities */
562     DWORD       dwPalCaps;              /* palette capabilities */
563     DWORD       dwSVCaps;               /* stereo vision capabilities */
564     DWORD       dwAlphaBltConstBitDepths;       /* DDBD_2,4,8 */
565     DWORD       dwAlphaBltPixelBitDepths;       /* DDBD_1,2,4,8 */
566     DWORD       dwAlphaBltSurfaceBitDepths;     /* DDBD_1,2,4,8 */
567     DWORD       dwAlphaOverlayConstBitDepths;   /* DDBD_2,4,8 */
568     DWORD       dwAlphaOverlayPixelBitDepths;   /* DDBD_1,2,4,8 */
569     DWORD       dwAlphaOverlaySurfaceBitDepths; /* DDBD_1,2,4,8 */
570     DWORD       dwZBufferBitDepths;             /* DDBD_8,16,24,32 */
571     DWORD       dwVidMemTotal;          /* total amount of video memory */
572     DWORD       dwVidMemFree;           /* amount of free video memory */
573     DWORD       dwMaxVisibleOverlays;   /* maximum number of visible overlays */
574     DWORD       dwCurrVisibleOverlays;  /* current number of visible overlays */
575     DWORD       dwNumFourCCCodes;       /* number of four cc codes */
576     DWORD       dwAlignBoundarySrc;     /* source rectangle alignment */
577     DWORD       dwAlignSizeSrc;         /* source rectangle byte size */
578     DWORD       dwAlignBoundaryDest;    /* dest rectangle alignment */
579     DWORD       dwAlignSizeDest;        /* dest rectangle byte size */
580     DWORD       dwAlignStrideAlign;     /* stride alignment */
581     DWORD       dwRops[DD_ROP_SPACE];   /* ROPS supported */
582     DDSCAPS     ddsCaps;                /* DDSCAPS structure has all the general capabilities */
583     DWORD       dwMinOverlayStretch;    /* minimum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
584     DWORD       dwMaxOverlayStretch;    /* maximum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
585     DWORD       dwMinLiveVideoStretch;  /* minimum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
586     DWORD       dwMaxLiveVideoStretch;  /* maximum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
587     DWORD       dwMinHwCodecStretch;    /* minimum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
588     DWORD       dwMaxHwCodecStretch;    /* maximum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
589     DWORD       dwReserved1;
590     DWORD       dwReserved2;
591     DWORD       dwReserved3;
592     DWORD       dwSVBCaps;              /* driver specific capabilities for System->Vmem blts */
593     DWORD       dwSVBCKeyCaps;          /* driver color key capabilities for System->Vmem blts */
594     DWORD       dwSVBFXCaps;            /* driver FX capabilities for System->Vmem blts */
595     DWORD       dwSVBRops[DD_ROP_SPACE];/* ROPS supported for System->Vmem blts */
596     DWORD       dwVSBCaps;              /* driver specific capabilities for Vmem->System blts */
597     DWORD       dwVSBCKeyCaps;          /* driver color key capabilities for Vmem->System blts */
598     DWORD       dwVSBFXCaps;            /* driver FX capabilities for Vmem->System blts */
599     DWORD       dwVSBRops[DD_ROP_SPACE];/* ROPS supported for Vmem->System blts */
600     DWORD       dwSSBCaps;              /* driver specific capabilities for System->System blts */
601     DWORD       dwSSBCKeyCaps;          /* driver color key capabilities for System->System blts */
602     DWORD       dwSSBFXCaps;            /* driver FX capabilities for System->System blts */
603     DWORD       dwSSBRops[DD_ROP_SPACE];/* ROPS supported for System->System blts */
604     DWORD       dwReserved4;
605     DWORD       dwReserved5;
606     DWORD       dwReserved6;
607 } DDCAPS_DX3,*LPDDCAPS_DX3;
608
609 /* set caps struct according to DIRECTDRAW_VERSION */
610
611 #if DIRECTDRAW_VERSION <= 0x300
612 typedef DDCAPS_DX3 DDCAPS;
613 #elif DIRECTDRAW_VERSION <= 0x500
614 typedef DDCAPS_DX5 DDCAPS;
615 #elif DIRECTDRAW_VERSION <= 0x600
616 typedef DDCAPS_DX6 DDCAPS;
617 #else
618 typedef DDCAPS_DX7 DDCAPS;
619 #endif
620
621 typedef DDCAPS *LPDDCAPS;
622
623 /* DDCAPS.dwCaps */
624 #define DDCAPS_3D                       0x00000001
625 #define DDCAPS_ALIGNBOUNDARYDEST        0x00000002
626 #define DDCAPS_ALIGNSIZEDEST            0x00000004
627 #define DDCAPS_ALIGNBOUNDARYSRC         0x00000008
628 #define DDCAPS_ALIGNSIZESRC             0x00000010
629 #define DDCAPS_ALIGNSTRIDE              0x00000020
630 #define DDCAPS_BLT                      0x00000040
631 #define DDCAPS_BLTQUEUE                 0x00000080
632 #define DDCAPS_BLTFOURCC                0x00000100
633 #define DDCAPS_BLTSTRETCH               0x00000200
634 #define DDCAPS_GDI                      0x00000400
635 #define DDCAPS_OVERLAY                  0x00000800
636 #define DDCAPS_OVERLAYCANTCLIP          0x00001000
637 #define DDCAPS_OVERLAYFOURCC            0x00002000
638 #define DDCAPS_OVERLAYSTRETCH           0x00004000
639 #define DDCAPS_PALETTE                  0x00008000
640 #define DDCAPS_PALETTEVSYNC             0x00010000
641 #define DDCAPS_READSCANLINE             0x00020000
642 #define DDCAPS_STEREOVIEW               0x00040000
643 #define DDCAPS_VBI                      0x00080000
644 #define DDCAPS_ZBLTS                    0x00100000
645 #define DDCAPS_ZOVERLAYS                0x00200000
646 #define DDCAPS_COLORKEY                 0x00400000
647 #define DDCAPS_ALPHA                    0x00800000
648 #define DDCAPS_COLORKEYHWASSIST         0x01000000
649 #define DDCAPS_NOHARDWARE               0x02000000
650 #define DDCAPS_BLTCOLORFILL             0x04000000
651 #define DDCAPS_BANKSWITCHED             0x08000000
652 #define DDCAPS_BLTDEPTHFILL             0x10000000
653 #define DDCAPS_CANCLIP                  0x20000000
654 #define DDCAPS_CANCLIPSTRETCHED         0x40000000
655 #define DDCAPS_CANBLTSYSMEM             0x80000000
656
657 /* DDCAPS.dwCaps2 */
658 #define DDCAPS2_CERTIFIED               0x00000001
659 #define DDCAPS2_NO2DDURING3DSCENE       0x00000002
660 #define DDCAPS2_VIDEOPORT               0x00000004
661 #define DDCAPS2_AUTOFLIPOVERLAY         0x00000008
662 #define DDCAPS2_CANBOBINTERLEAVED       0x00000010
663 #define DDCAPS2_CANBOBNONINTERLEAVED    0x00000020
664 #define DDCAPS2_COLORCONTROLOVERLAY     0x00000040
665 #define DDCAPS2_COLORCONTROLPRIMARY     0x00000080
666 #define DDCAPS2_CANDROPZ16BIT           0x00000100
667 #define DDCAPS2_NONLOCALVIDMEM          0x00000200
668 #define DDCAPS2_NONLOCALVIDMEMCAPS      0x00000400
669 #define DDCAPS2_NOPAGELOCKREQUIRED      0x00000800
670 #define DDCAPS2_WIDESURFACES            0x00001000
671 #define DDCAPS2_CANFLIPODDEVEN          0x00002000
672 #define DDCAPS2_CANBOBHARDWARE          0x00004000
673 #define DDCAPS2_COPYFOURCC              0x00008000
674 #define DDCAPS2_PRIMARYGAMMA            0x00020000
675 #define DDCAPS2_CANRENDERWINDOWED       0x00080000
676 #define DDCAPS2_CANCALIBRATEGAMMA       0x00100000
677 #define DDCAPS2_FLIPINTERVAL            0x00200000
678 #define DDCAPS2_FLIPNOVSYNC             0x00400000
679 #define DDCAPS2_CANMANAGETEXTURE        0x00800000
680 #define DDCAPS2_TEXMANINNONLOCALVIDMEM  0x01000000
681 #define DDCAPS2_STEREO                  0x02000000
682 #define DDCAPS2_SYSTONONLOCAL_AS_SYSTOLOCAL   0x04000000
683
684
685 /* Set/Get Colour Key Flags */
686 #define DDCKEY_COLORSPACE  0x00000001  /* Struct is single colour space */
687 #define DDCKEY_DESTBLT     0x00000002  /* To be used as dest for blt */
688 #define DDCKEY_DESTOVERLAY 0x00000004  /* To be used as dest for CK overlays */
689 #define DDCKEY_SRCBLT      0x00000008  /* To be used as src for blt */
690 #define DDCKEY_SRCOVERLAY  0x00000010  /* To be used as src for CK overlays */
691
692 typedef struct _DDCOLORKEY
693 {
694         DWORD   dwColorSpaceLowValue;/* low boundary of color space that is to
695                                       * be treated as Color Key, inclusive
696                                       */
697         DWORD   dwColorSpaceHighValue;/* high boundary of color space that is
698                                        * to be treated as Color Key, inclusive
699                                        */
700 } DDCOLORKEY,*LPDDCOLORKEY;
701
702 /* ddCKEYCAPS bits */
703 #define DDCKEYCAPS_DESTBLT                      0x00000001
704 #define DDCKEYCAPS_DESTBLTCLRSPACE              0x00000002
705 #define DDCKEYCAPS_DESTBLTCLRSPACEYUV           0x00000004
706 #define DDCKEYCAPS_DESTBLTYUV                   0x00000008
707 #define DDCKEYCAPS_DESTOVERLAY                  0x00000010
708 #define DDCKEYCAPS_DESTOVERLAYCLRSPACE          0x00000020
709 #define DDCKEYCAPS_DESTOVERLAYCLRSPACEYUV       0x00000040
710 #define DDCKEYCAPS_DESTOVERLAYONEACTIVE         0x00000080
711 #define DDCKEYCAPS_DESTOVERLAYYUV               0x00000100
712 #define DDCKEYCAPS_SRCBLT                       0x00000200
713 #define DDCKEYCAPS_SRCBLTCLRSPACE               0x00000400
714 #define DDCKEYCAPS_SRCBLTCLRSPACEYUV            0x00000800
715 #define DDCKEYCAPS_SRCBLTYUV                    0x00001000
716 #define DDCKEYCAPS_SRCOVERLAY                   0x00002000
717 #define DDCKEYCAPS_SRCOVERLAYCLRSPACE           0x00004000
718 #define DDCKEYCAPS_SRCOVERLAYCLRSPACEYUV        0x00008000
719 #define DDCKEYCAPS_SRCOVERLAYONEACTIVE          0x00010000
720 #define DDCKEYCAPS_SRCOVERLAYYUV                0x00020000
721 #define DDCKEYCAPS_NOCOSTOVERLAY                0x00040000
722
723 typedef struct _DDPIXELFORMAT {
724     DWORD       dwSize;                 /* 0: size of structure */
725     DWORD       dwFlags;                /* 4: pixel format flags */
726     DWORD       dwFourCC;               /* 8: (FOURCC code) */
727     union {
728         DWORD   dwRGBBitCount;          /* C: how many bits per pixel */
729         DWORD   dwYUVBitCount;          /* C: how many bits per pixel */
730         DWORD   dwZBufferBitDepth;      /* C: how many bits for z buffers */
731         DWORD   dwAlphaBitDepth;        /* C: how many bits for alpha channels*/
732         DWORD   dwLuminanceBitCount;
733         DWORD   dwBumpBitCount;
734     } DUMMYUNIONNAME1;
735     union {
736         DWORD   dwRBitMask;             /* 10: mask for red bit*/
737         DWORD   dwYBitMask;             /* 10: mask for Y bits*/
738         DWORD   dwStencilBitDepth;
739         DWORD   dwLuminanceBitMask;
740         DWORD   dwBumpDuBitMask;
741     } DUMMYUNIONNAME2;
742     union {
743         DWORD   dwGBitMask;             /* 14: mask for green bits*/
744         DWORD   dwUBitMask;             /* 14: mask for U bits*/
745         DWORD   dwZBitMask;
746         DWORD   dwBumpDvBitMask;
747     } DUMMYUNIONNAME3;
748     union {
749         DWORD   dwBBitMask;             /* 18: mask for blue bits*/
750         DWORD   dwVBitMask;             /* 18: mask for V bits*/
751         DWORD   dwStencilBitMask;
752         DWORD   dwBumpLuminanceBitMask;
753     } DUMMYUNIONNAME4;
754     union {
755         DWORD   dwRGBAlphaBitMask;      /* 1C: mask for alpha channel */
756         DWORD   dwYUVAlphaBitMask;      /* 1C: mask for alpha channel */
757         DWORD   dwLuminanceAlphaBitMask;
758         DWORD   dwRGBZBitMask;          /* 1C: mask for Z channel */
759         DWORD   dwYUVZBitMask;          /* 1C: mask for Z channel */
760     } DUMMYUNIONNAME5;
761                                         /* 20: next structure */
762 } DDPIXELFORMAT,*LPDDPIXELFORMAT;
763
764 /* DDCAPS.dwFXCaps */
765 #define DDFXCAPS_BLTALPHA               0x00000001
766 #define DDFXCAPS_OVERLAYALPHA           0x00000004
767 #define DDFXCAPS_BLTARITHSTRETCHYN      0x00000010
768 #define DDFXCAPS_BLTARITHSTRETCHY       0x00000020
769 #define DDFXCAPS_BLTMIRRORLEFTRIGHT     0x00000040
770 #define DDFXCAPS_BLTMIRRORUPDOWN        0x00000080
771 #define DDFXCAPS_BLTROTATION            0x00000100
772 #define DDFXCAPS_BLTROTATION90          0x00000200
773 #define DDFXCAPS_BLTSHRINKX             0x00000400
774 #define DDFXCAPS_BLTSHRINKXN            0x00000800
775 #define DDFXCAPS_BLTSHRINKY             0x00001000
776 #define DDFXCAPS_BLTSHRINKYN            0x00002000
777 #define DDFXCAPS_BLTSTRETCHX            0x00004000
778 #define DDFXCAPS_BLTSTRETCHXN           0x00008000
779 #define DDFXCAPS_BLTSTRETCHY            0x00010000
780 #define DDFXCAPS_BLTSTRETCHYN           0x00020000
781 #define DDFXCAPS_OVERLAYARITHSTRETCHY   0x00040000
782 #define DDFXCAPS_OVERLAYARITHSTRETCHYN  0x00000008
783 #define DDFXCAPS_OVERLAYSHRINKX         0x00080000
784 #define DDFXCAPS_OVERLAYSHRINKXN        0x00100000
785 #define DDFXCAPS_OVERLAYSHRINKY         0x00200000
786 #define DDFXCAPS_OVERLAYSHRINKYN        0x00400000
787 #define DDFXCAPS_OVERLAYSTRETCHX        0x00800000
788 #define DDFXCAPS_OVERLAYSTRETCHXN       0x01000000
789 #define DDFXCAPS_OVERLAYSTRETCHY        0x02000000
790 #define DDFXCAPS_OVERLAYSTRETCHYN       0x04000000
791 #define DDFXCAPS_OVERLAYMIRRORLEFTRIGHT 0x08000000
792 #define DDFXCAPS_OVERLAYMIRRORUPDOWN    0x10000000
793
794 #define DDFXCAPS_OVERLAYFILTER          DDFXCAPS_OVERLAYARITHSTRETCHY
795
796 /* DDCAPS.dwFXAlphaCaps */
797 #define DDFXALPHACAPS_BLTALPHAEDGEBLEND         0x00000001
798 #define DDFXALPHACAPS_BLTALPHAPIXELS            0x00000002
799 #define DDFXALPHACAPS_BLTALPHAPIXELSNEG         0x00000004
800 #define DDFXALPHACAPS_BLTALPHASURFACES          0x00000008
801 #define DDFXALPHACAPS_BLTALPHASURFACESNEG       0x00000010
802 #define DDFXALPHACAPS_OVERLAYALPHAEDGEBLEND     0x00000020
803 #define DDFXALPHACAPS_OVERLAYALPHAPIXELS        0x00000040
804 #define DDFXALPHACAPS_OVERLAYALPHAPIXELSNEG     0x00000080
805 #define DDFXALPHACAPS_OVERLAYALPHASURFACES      0x00000100
806 #define DDFXALPHACAPS_OVERLAYALPHASURFACESNEG   0x00000200
807
808 /* DDCAPS.dwPalCaps */
809 #define DDPCAPS_4BIT                    0x00000001
810 #define DDPCAPS_8BITENTRIES             0x00000002
811 #define DDPCAPS_8BIT                    0x00000004
812 #define DDPCAPS_INITIALIZE              0x00000008
813 #define DDPCAPS_PRIMARYSURFACE          0x00000010
814 #define DDPCAPS_PRIMARYSURFACELEFT      0x00000020
815 #define DDPCAPS_ALLOW256                0x00000040
816 #define DDPCAPS_VSYNC                   0x00000080
817 #define DDPCAPS_1BIT                    0x00000100
818 #define DDPCAPS_2BIT                    0x00000200
819 #define DDPCAPS_ALPHA                   0x00000400
820
821 /* DDCAPS.dwSVCaps */
822 /* the first 4 of these are now obsolete */
823 #if DIRECTDRAW_VERSION >= 0x700 /* FIXME: I'm not sure when this switch occured */
824 #define DDSVCAPS_RESERVED1              0x00000001
825 #define DDSVCAPS_RESERVED2              0x00000002
826 #define DDSVCAPS_RESERVED3              0x00000004
827 #define DDSVCAPS_RESERVED4              0x00000008
828 #else
829 #define DDSVCAPS_ENIGMA                 0x00000001
830 #define DDSVCAPS_FLICKER                0x00000002
831 #define DDSVCAPS_REDBLUE                0x00000004
832 #define DDSVCAPS_SPLIT                  0x00000008
833 #endif
834 #define DDSVCAPS_STEREOSEQUENTIAL       0x00000010
835
836 /* BitDepths */
837 #define DDBD_1                          0x00004000
838 #define DDBD_2                          0x00002000
839 #define DDBD_4                          0x00001000
840 #define DDBD_8                          0x00000800
841 #define DDBD_16                         0x00000400
842 #define DDBD_24                         0x00000200
843 #define DDBD_32                         0x00000100
844
845 /* DDOVERLAYFX.dwDDFX */
846 #define DDOVERFX_ARITHSTRETCHY          0x00000001
847 #define DDOVERFX_MIRRORLEFTRIGHT        0x00000002
848 #define DDOVERFX_MIRRORUPDOWN           0x00000004
849
850 /* UpdateOverlay flags */
851 #define DDOVER_ALPHADEST                        0x00000001
852 #define DDOVER_ALPHADESTCONSTOVERRIDE           0x00000002
853 #define DDOVER_ALPHADESTNEG                     0x00000004
854 #define DDOVER_ALPHADESTSURFACEOVERRIDE         0x00000008
855 #define DDOVER_ALPHAEDGEBLEND                   0x00000010
856 #define DDOVER_ALPHASRC                         0x00000020
857 #define DDOVER_ALPHASRCCONSTOVERRIDE            0x00000040
858 #define DDOVER_ALPHASRCNEG                      0x00000080
859 #define DDOVER_ALPHASRCSURFACEOVERRIDE          0x00000100
860 #define DDOVER_HIDE                             0x00000200
861 #define DDOVER_KEYDEST                          0x00000400
862 #define DDOVER_KEYDESTOVERRIDE                  0x00000800
863 #define DDOVER_KEYSRC                           0x00001000
864 #define DDOVER_KEYSRCOVERRIDE                   0x00002000
865 #define DDOVER_SHOW                             0x00004000
866 #define DDOVER_ADDDIRTYRECT                     0x00008000
867 #define DDOVER_REFRESHDIRTYRECTS                0x00010000
868 #define DDOVER_REFRESHALL                       0x00020000
869 #define DDOVER_DDFX                             0x00080000
870 #define DDOVER_AUTOFLIP                         0x00100000
871 #define DDOVER_BOB                              0x00200000
872 #define DDOVER_OVERRIDEBOBWEAVE                 0x00400000
873 #define DDOVER_INTERLEAVED                      0x00800000
874
875 /* DDCOLORKEY.dwFlags */
876 #define DDPF_ALPHAPIXELS                0x00000001
877 #define DDPF_ALPHA                      0x00000002
878 #define DDPF_FOURCC                     0x00000004
879 #define DDPF_PALETTEINDEXED4            0x00000008
880 #define DDPF_PALETTEINDEXEDTO8          0x00000010
881 #define DDPF_PALETTEINDEXED8            0x00000020
882 #define DDPF_RGB                        0x00000040
883 #define DDPF_COMPRESSED                 0x00000080
884 #define DDPF_RGBTOYUV                   0x00000100
885 #define DDPF_YUV                        0x00000200
886 #define DDPF_ZBUFFER                    0x00000400
887 #define DDPF_PALETTEINDEXED1            0x00000800
888 #define DDPF_PALETTEINDEXED2            0x00001000
889 #define DDPF_ZPIXELS                    0x00002000
890 #define DDPF_STENCILBUFFER              0x00004000
891 #define DDPF_ALPHAPREMULT               0x00008000
892 #define DDPF_LUMINANCE                  0x00020000
893 #define DDPF_BUMPLUMINANCE              0x00040000
894 #define DDPF_BUMPDUDV                   0x00080000
895
896 /* SetCooperativeLevel dwFlags */
897 #define DDSCL_FULLSCREEN                0x00000001
898 #define DDSCL_ALLOWREBOOT               0x00000002
899 #define DDSCL_NOWINDOWCHANGES           0x00000004
900 #define DDSCL_NORMAL                    0x00000008
901 #define DDSCL_EXCLUSIVE                 0x00000010
902 #define DDSCL_ALLOWMODEX                0x00000040
903 #define DDSCL_SETFOCUSWINDOW            0x00000080
904 #define DDSCL_SETDEVICEWINDOW           0x00000100
905 #define DDSCL_CREATEDEVICEWINDOW        0x00000200
906 #define DDSCL_MULTITHREADED             0x00000400
907 #define DDSCL_FPUSETUP                  0x00000800
908 #define DDSCL_FPUPRESERVE               0x00001000
909
910
911 /* DDSURFACEDESC.dwFlags */
912 #define DDSD_CAPS               0x00000001
913 #define DDSD_HEIGHT             0x00000002
914 #define DDSD_WIDTH              0x00000004
915 #define DDSD_PITCH              0x00000008
916 #define DDSD_BACKBUFFERCOUNT    0x00000020
917 #define DDSD_ZBUFFERBITDEPTH    0x00000040
918 #define DDSD_ALPHABITDEPTH      0x00000080
919 #define DDSD_LPSURFACE          0x00000800
920 #define DDSD_PIXELFORMAT        0x00001000
921 #define DDSD_CKDESTOVERLAY      0x00002000
922 #define DDSD_CKDESTBLT          0x00004000
923 #define DDSD_CKSRCOVERLAY       0x00008000
924 #define DDSD_CKSRCBLT           0x00010000
925 #define DDSD_MIPMAPCOUNT        0x00020000
926 #define DDSD_REFRESHRATE        0x00040000
927 #define DDSD_LINEARSIZE         0x00080000
928 #define DDSD_TEXTURESTAGE       0x00100000
929 #define DDSD_FVF                0x00200000
930 #define DDSD_SRCVBHANDLE        0x00400000
931 #define DDSD_ALL                0x007ff9ee
932
933 /* EnumSurfaces flags */
934 #define DDENUMSURFACES_ALL          0x00000001
935 #define DDENUMSURFACES_MATCH        0x00000002
936 #define DDENUMSURFACES_NOMATCH      0x00000004
937 #define DDENUMSURFACES_CANBECREATED 0x00000008
938 #define DDENUMSURFACES_DOESEXIST    0x00000010
939
940 /* SetDisplayMode flags */
941 #define DDSDM_STANDARDVGAMODE   0x00000001
942
943 /* EnumDisplayModes flags */
944 #define DDEDM_REFRESHRATES      0x00000001
945 #define DDEDM_STANDARDVGAMODES  0x00000002
946
947 /* WaitForVerticalDisplay flags */
948
949 #define DDWAITVB_BLOCKBEGIN             0x00000001
950 #define DDWAITVB_BLOCKBEGINEVENT        0x00000002
951 #define DDWAITVB_BLOCKEND               0x00000004
952
953 typedef struct _DDSURFACEDESC
954 {
955         DWORD   dwSize;         /* 0: size of the DDSURFACEDESC structure*/
956         DWORD   dwFlags;        /* 4: determines what fields are valid*/
957         DWORD   dwHeight;       /* 8: height of surface to be created*/
958         DWORD   dwWidth;        /* C: width of input surface*/
959         union {
960                 LONG    lPitch; /* 10: distance to start of next line (return value only)*/
961                 DWORD   dwLinearSize;
962         } DUMMYUNIONNAME1;
963         DWORD   dwBackBufferCount;/* 14: number of back buffers requested*/
964         union {
965                 DWORD   dwMipMapCount;/* 18:number of mip-map levels requested*/
966                 DWORD   dwZBufferBitDepth;/*18: depth of Z buffer requested*/
967                 DWORD   dwRefreshRate;/* 18:refresh rate (used when display mode is described)*/
968         } DUMMYUNIONNAME2;
969         DWORD   dwAlphaBitDepth;/* 1C:depth of alpha buffer requested*/
970         DWORD   dwReserved;     /* 20:reserved*/
971         LPVOID  lpSurface;      /* 24:pointer to the associated surface memory*/
972         DDCOLORKEY      ddckCKDestOverlay;/* 28: CK for dest overlay use*/
973         DDCOLORKEY      ddckCKDestBlt;  /* 30: CK for destination blt use*/
974         DDCOLORKEY      ddckCKSrcOverlay;/* 38: CK for source overlay use*/
975         DDCOLORKEY      ddckCKSrcBlt;   /* 40: CK for source blt use*/
976         DDPIXELFORMAT   ddpfPixelFormat;/* 48: pixel format description of the surface*/
977         DDSCAPS         ddsCaps;        /* 68: direct draw surface caps */
978 } DDSURFACEDESC,*LPDDSURFACEDESC;
979
980 typedef struct _DDSURFACEDESC2
981 {
982         DWORD   dwSize;         /* 0: size of the DDSURFACEDESC2 structure*/
983         DWORD   dwFlags;        /* 4: determines what fields are valid*/
984         DWORD   dwHeight;       /* 8: height of surface to be created*/
985         DWORD   dwWidth;        /* C: width of input surface*/
986         union {
987                 LONG    lPitch;       /*10: distance to start of next line (return value only)*/
988                 DWORD   dwLinearSize; /*10: formless late-allocated optimized surface size */
989         } DUMMYUNIONNAME1;
990         DWORD   dwBackBufferCount;/* 14: number of back buffers requested*/
991         union {
992                 DWORD   dwMipMapCount;/* 18:number of mip-map levels requested*/
993                 DWORD   dwRefreshRate;/* 18:refresh rate (used when display mode is described)*/
994                 DWORD   dwSrcVBHandle;/* 18:source used in VB::Optimize */
995         } DUMMYUNIONNAME2;
996         DWORD   dwAlphaBitDepth;/* 1C:depth of alpha buffer requested*/
997         DWORD   dwReserved;     /* 20:reserved*/
998         LPVOID  lpSurface;      /* 24:pointer to the associated surface memory*/
999         union {
1000                 DDCOLORKEY      ddckCKDestOverlay; /* 28: CK for dest overlay use*/
1001                 DWORD           dwEmptyFaceColor;  /* 28: color for empty cubemap faces */
1002         } DUMMYUNIONNAME3;
1003         DDCOLORKEY      ddckCKDestBlt;  /* 30: CK for destination blt use*/
1004         DDCOLORKEY      ddckCKSrcOverlay;/* 38: CK for source overlay use*/
1005         DDCOLORKEY      ddckCKSrcBlt;   /* 40: CK for source blt use*/
1006
1007         union {
1008                 DDPIXELFORMAT   ddpfPixelFormat;/* 48: pixel format description of the surface*/
1009                 DWORD           dwFVF;  /* 48: vertex format description of vertex buffers */
1010         } DUMMYUNIONNAME4;
1011         DDSCAPS2        ddsCaps;  /* 68: DDraw surface caps */
1012         DWORD           dwTextureStage; /* 78: stage in multitexture cascade */
1013 } DDSURFACEDESC2,*LPDDSURFACEDESC2;
1014
1015 /* DDCOLORCONTROL.dwFlags */
1016 #define DDCOLOR_BRIGHTNESS      0x00000001
1017 #define DDCOLOR_CONTRAST        0x00000002
1018 #define DDCOLOR_HUE             0x00000004
1019 #define DDCOLOR_SATURATION      0x00000008
1020 #define DDCOLOR_SHARPNESS       0x00000010
1021 #define DDCOLOR_GAMMA           0x00000020
1022 #define DDCOLOR_COLORENABLE     0x00000040
1023
1024 typedef struct {
1025         DWORD   dwSize;
1026         DWORD   dwFlags;
1027         LONG    lBrightness;
1028         LONG    lContrast;
1029         LONG    lHue;
1030         LONG    lSaturation;
1031         LONG    lSharpness;
1032         LONG    lGamma;
1033         LONG    lColorEnable;
1034         DWORD   dwReserved1;
1035 } DDCOLORCONTROL,*LPDDCOLORCONTROL;
1036
1037 typedef struct {
1038         WORD    red[256];
1039         WORD    green[256];
1040         WORD    blue[256];
1041 } DDGAMMARAMP,*LPDDGAMMARAMP;
1042
1043 typedef BOOL (CALLBACK *LPDDENUMCALLBACKA)(GUID *, LPSTR, LPSTR, LPVOID);
1044 typedef BOOL (CALLBACK *LPDDENUMCALLBACKW)(GUID *, LPWSTR, LPWSTR, LPVOID);
1045 DECL_WINELIB_TYPE_AW(LPDDENUMCALLBACK)
1046
1047 typedef HRESULT (CALLBACK *LPDDENUMMODESCALLBACK)(LPDDSURFACEDESC, LPVOID);
1048 typedef HRESULT (CALLBACK *LPDDENUMMODESCALLBACK2)(LPDDSURFACEDESC2, LPVOID);
1049 typedef HRESULT (CALLBACK *LPDDENUMSURFACESCALLBACK)(LPDIRECTDRAWSURFACE, LPDDSURFACEDESC, LPVOID);
1050 typedef HRESULT (CALLBACK *LPDDENUMSURFACESCALLBACK2)(LPDIRECTDRAWSURFACE4, LPDDSURFACEDESC2, LPVOID);
1051 typedef HRESULT (CALLBACK *LPDDENUMSURFACESCALLBACK7)(LPDIRECTDRAWSURFACE7, LPDDSURFACEDESC2, LPVOID);
1052
1053 typedef BOOL (CALLBACK *LPDDENUMCALLBACKEXA)(GUID *, LPSTR, LPSTR, LPVOID, HMONITOR);
1054 typedef BOOL (CALLBACK *LPDDENUMCALLBACKEXW)(GUID *, LPWSTR, LPWSTR, LPVOID, HMONITOR);
1055 DECL_WINELIB_TYPE_AW(LPDDENUMCALLBACKEX)
1056
1057 HRESULT WINAPI DirectDrawEnumerateExA( LPDDENUMCALLBACKEXA lpCallback, LPVOID lpContext, DWORD dwFlags);
1058 HRESULT WINAPI DirectDrawEnumerateExW( LPDDENUMCALLBACKEXW lpCallback, LPVOID lpContext, DWORD dwFlags);
1059 #define DirectDrawEnumerateEx WINELIB_NAME_AW(DirectDrawEnumerateEx)
1060
1061 typedef HRESULT (WINAPI * LPDIRECTDRAWENUMERATEEXA)( LPDDENUMCALLBACKEXA lpCallback, LPVOID lpContext, DWORD dwFlags);
1062 typedef HRESULT (WINAPI * LPDIRECTDRAWENUMERATEEXW)( LPDDENUMCALLBACKEXW lpCallback, LPVOID lpContext, DWORD dwFlags);
1063 DECL_WINELIB_TYPE_AW(LPDIRECTDRAWENUMERATEEX)
1064
1065 /* flags for DirectDrawEnumerateEx */
1066 #define DDENUM_ATTACHEDSECONDARYDEVICES 0x00000001
1067 #define DDENUM_DETACHEDSECONDARYDEVICES 0x00000002
1068 #define DDENUM_NONDISPLAYDEVICES        0x00000004
1069
1070 /* flags for DirectDrawCreate or IDirectDraw::Initialize */
1071 #define DDCREATE_HARDWAREONLY   1L
1072 #define DDCREATE_EMULATIONONLY  2L
1073
1074 typedef struct _DDBLTFX
1075 {
1076     DWORD       dwSize;                         /* size of structure */
1077     DWORD       dwDDFX;                         /* FX operations */
1078     DWORD       dwROP;                          /* Win32 raster operations */
1079     DWORD       dwDDROP;                        /* Raster operations new for DirectDraw */
1080     DWORD       dwRotationAngle;                /* Rotation angle for blt */
1081     DWORD       dwZBufferOpCode;                /* ZBuffer compares */
1082     DWORD       dwZBufferLow;                   /* Low limit of Z buffer */
1083     DWORD       dwZBufferHigh;                  /* High limit of Z buffer */
1084     DWORD       dwZBufferBaseDest;              /* Destination base value */
1085     DWORD       dwZDestConstBitDepth;           /* Bit depth used to specify Z constant for destination */
1086     union
1087     {
1088         DWORD   dwZDestConst;                   /* Constant to use as Z buffer for dest */
1089         LPDIRECTDRAWSURFACE lpDDSZBufferDest;   /* Surface to use as Z buffer for dest */
1090     } DUMMYUNIONNAME1;
1091     DWORD       dwZSrcConstBitDepth;            /* Bit depth used to specify Z constant for source */
1092     union
1093     {
1094         DWORD   dwZSrcConst;                    /* Constant to use as Z buffer for src */
1095         LPDIRECTDRAWSURFACE lpDDSZBufferSrc;    /* Surface to use as Z buffer for src */
1096     } DUMMYUNIONNAME2;
1097     DWORD       dwAlphaEdgeBlendBitDepth;       /* Bit depth used to specify constant for alpha edge blend */
1098     DWORD       dwAlphaEdgeBlend;               /* Alpha for edge blending */
1099     DWORD       dwReserved;
1100     DWORD       dwAlphaDestConstBitDepth;       /* Bit depth used to specify alpha constant for destination */
1101     union
1102     {
1103         DWORD   dwAlphaDestConst;               /* Constant to use as Alpha Channel */
1104         LPDIRECTDRAWSURFACE lpDDSAlphaDest;     /* Surface to use as Alpha Channel */
1105     } DUMMYUNIONNAME3;
1106     DWORD       dwAlphaSrcConstBitDepth;        /* Bit depth used to specify alpha constant for source */
1107     union
1108     {
1109         DWORD   dwAlphaSrcConst;                /* Constant to use as Alpha Channel */
1110         LPDIRECTDRAWSURFACE lpDDSAlphaSrc;      /* Surface to use as Alpha Channel */
1111     } DUMMYUNIONNAME4;
1112     union
1113     {
1114         DWORD   dwFillColor;                    /* color in RGB or Palettized */
1115         DWORD   dwFillDepth;                    /* depth value for z-buffer */
1116         DWORD   dwFillPixel;                    /* pixel val for RGBA or RGBZ */
1117         LPDIRECTDRAWSURFACE lpDDSPattern;       /* Surface to use as pattern */
1118     } DUMMYUNIONNAME5;
1119     DDCOLORKEY  ddckDestColorkey;               /* DestColorkey override */
1120     DDCOLORKEY  ddckSrcColorkey;                /* SrcColorkey override */
1121 } DDBLTFX,*LPDDBLTFX;
1122
1123 /* dwDDFX */
1124 /* arithmetic stretching along y axis */
1125 #define DDBLTFX_ARITHSTRETCHY                   0x00000001
1126 /* mirror on y axis */
1127 #define DDBLTFX_MIRRORLEFTRIGHT                 0x00000002
1128 /* mirror on x axis */
1129 #define DDBLTFX_MIRRORUPDOWN                    0x00000004
1130 /* do not tear */
1131 #define DDBLTFX_NOTEARING                       0x00000008
1132 /* 180 degrees clockwise rotation */
1133 #define DDBLTFX_ROTATE180                       0x00000010
1134 /* 270 degrees clockwise rotation */
1135 #define DDBLTFX_ROTATE270                       0x00000020
1136 /* 90 degrees clockwise rotation */
1137 #define DDBLTFX_ROTATE90                        0x00000040
1138 /* dwZBufferLow and dwZBufferHigh specify limits to the copied Z values */
1139 #define DDBLTFX_ZBUFFERRANGE                    0x00000080
1140 /* add dwZBufferBaseDest to every source z value before compare */
1141 #define DDBLTFX_ZBUFFERBASEDEST                 0x00000100
1142
1143 typedef struct _DDOVERLAYFX
1144 {
1145     DWORD       dwSize;                         /* size of structure */
1146     DWORD       dwAlphaEdgeBlendBitDepth;       /* Bit depth used to specify constant for alpha edge blend */
1147     DWORD       dwAlphaEdgeBlend;               /* Constant to use as alpha for edge blend */
1148     DWORD       dwReserved;
1149     DWORD       dwAlphaDestConstBitDepth;       /* Bit depth used to specify alpha constant for destination */
1150     union
1151     {
1152         DWORD   dwAlphaDestConst;               /* Constant to use as alpha channel for dest */
1153         LPDIRECTDRAWSURFACE lpDDSAlphaDest;     /* Surface to use as alpha channel for dest */
1154     } DUMMYUNIONNAME1;
1155     DWORD       dwAlphaSrcConstBitDepth;        /* Bit depth used to specify alpha constant for source */
1156     union
1157     {
1158         DWORD   dwAlphaSrcConst;                /* Constant to use as alpha channel for src */
1159         LPDIRECTDRAWSURFACE lpDDSAlphaSrc;      /* Surface to use as alpha channel for src */
1160     } DUMMYUNIONNAME2;
1161     DDCOLORKEY  dckDestColorkey;                /* DestColorkey override */
1162     DDCOLORKEY  dckSrcColorkey;                 /* DestColorkey override */
1163     DWORD       dwDDFX;                         /* Overlay FX */
1164     DWORD       dwFlags;                        /* flags */
1165 } DDOVERLAYFX,*LPDDOVERLAYFX;
1166
1167 typedef struct _DDBLTBATCH
1168 {
1169     LPRECT              lprDest;
1170     LPDIRECTDRAWSURFACE lpDDSSrc;
1171     LPRECT              lprSrc;
1172     DWORD               dwFlags;
1173     LPDDBLTFX           lpDDBltFx;
1174 } DDBLTBATCH,*LPDDBLTBATCH;
1175
1176 #define MAX_DDDEVICEID_STRING          512
1177
1178 typedef struct tagDDDEVICEIDENTIFIER {
1179   char    szDriver[MAX_DDDEVICEID_STRING];
1180   char    szDescription[MAX_DDDEVICEID_STRING];
1181   LARGE_INTEGER  liDriverVersion;
1182   DWORD   dwVendorId;
1183   DWORD   dwDeviceId;
1184   DWORD   dwSubSysId;
1185   DWORD   dwRevision;
1186   GUID    guidDeviceIdentifier;
1187 } DDDEVICEIDENTIFIER, * LPDDDEVICEIDENTIFIER;
1188
1189 typedef struct tagDDDEVICEIDENTIFIER2 {
1190   char    szDriver[MAX_DDDEVICEID_STRING];      /* user readable driver name */
1191   char    szDescription[MAX_DDDEVICEID_STRING]; /* user readable description */
1192   LARGE_INTEGER  liDriverVersion;               /* driver version */
1193   DWORD   dwVendorId;                           /* vendor ID, zero if unknown */
1194   DWORD   dwDeviceId;                           /* chipset ID, zero if unknown */
1195   DWORD   dwSubSysId;                           /* board ID, zero if unknown */
1196   DWORD   dwRevision;                           /* chipset version, zero if unknown */
1197   GUID    guidDeviceIdentifier;                 /* unique ID for this driver/chipset combination */
1198   DWORD   dwWHQLLevel;                          /* Windows Hardware Quality Lab certification level */
1199 } DDDEVICEIDENTIFIER2, * LPDDDEVICEIDENTIFIER2;
1200
1201 /*****************************************************************************
1202  * IDirectDrawPalette interface
1203  */
1204 #define ICOM_INTERFACE IDirectDrawPalette
1205 #define IDirectDrawPalette_METHODS \
1206     ICOM_METHOD1(HRESULT,GetCaps,    LPDWORD,lpdwCaps) \
1207     ICOM_METHOD4(HRESULT,GetEntries, DWORD,dwFlags, DWORD,dwBase, DWORD,dwNumEntries, LPPALETTEENTRY,lpEntries) \
1208     ICOM_METHOD3(HRESULT,Initialize, LPDIRECTDRAW,lpDD, DWORD,dwFlags, LPPALETTEENTRY,lpDDColorTable) \
1209     ICOM_METHOD4(HRESULT,SetEntries, DWORD,dwFlags, DWORD,dwStartingEntry, DWORD,dwCount, LPPALETTEENTRY,lpEntries)
1210 #define IDirectDrawPalette_IMETHODS \
1211     IUnknown_IMETHODS \
1212     IDirectDrawPalette_METHODS
1213 ICOM_DEFINE(IDirectDrawPalette,IUnknown)
1214 #undef ICOM_INTERFACE
1215
1216     /*** IUnknown methods ***/
1217 #define IDirectDrawPalette_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1218 #define IDirectDrawPalette_AddRef(p)             ICOM_CALL (AddRef,p)
1219 #define IDirectDrawPalette_Release(p)            ICOM_CALL (Release,p)
1220     /*** IDirectDrawPalette methods ***/
1221 #define IDirectDrawPalette_GetCaps(p,a)          ICOM_CALL1(GetCaps,p,a)
1222 #define IDirectDrawPalette_GetEntries(p,a,b,c,d) ICOM_CALL4(GetEntries,p,a,b,c,d)
1223 #define IDirectDrawPalette_Initialize(p,a,b,c)   ICOM_CALL3(Initialize,p,a,b,c)
1224 #define IDirectDrawPalette_SetEntries(p,a,b,c,d) ICOM_CALL4(SetEntries,p,a,b,c,d)
1225
1226
1227 /*****************************************************************************
1228  * IDirectDrawClipper interface
1229  */
1230 #define ICOM_INTERFACE IDirectDrawClipper
1231 #define IDirectDrawClipper_METHODS \
1232     ICOM_METHOD3(HRESULT,GetClipList,       LPRECT,lpRect, LPRGNDATA,lpClipList, LPDWORD,lpdwSize) \
1233     ICOM_METHOD1(HRESULT,GetHWnd,           HWND*,lphWnd) \
1234     ICOM_METHOD2(HRESULT,Initialize,        LPDIRECTDRAW,lpDD, DWORD,dwFlags) \
1235     ICOM_METHOD1(HRESULT,IsClipListChanged, BOOL*,lpbChanged) \
1236     ICOM_METHOD2(HRESULT,SetClipList,       LPRGNDATA,lpClipList, DWORD,dwFlags) \
1237     ICOM_METHOD2(HRESULT,SetHWnd,           DWORD,dwFlags, HWND,hWnd)
1238 #define IDirectDrawClipper_IMETHODS \
1239     IUnknown_IMETHODS \
1240     IDirectDrawClipper_METHODS
1241 ICOM_DEFINE(IDirectDrawClipper,IUnknown)
1242 #undef ICOM_INTERFACE
1243
1244     /*** IUnknown methods ***/
1245 #define IDirectDrawClipper_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1246 #define IDirectDrawClipper_AddRef(p)             ICOM_CALL (AddRef,p)
1247 #define IDirectDrawClipper_Release(p)            ICOM_CALL (Release,p)
1248     /*** IDirectDrawClipper methods ***/
1249 #define IDirectDrawClipper_GetClipList(p,a,b,c)   ICOM_CALL3(GetClipList,p,a,b,c)
1250 #define IDirectDrawClipper_GetHWnd(p,a)           ICOM_CALL1(GetHWnd,p,a)
1251 #define IDirectDrawClipper_Initialize(p,a,b)      ICOM_CALL2(Initialize,p,a,b)
1252 #define IDirectDrawClipper_IsClipListChanged(p,a) ICOM_CALL1(IsClipListChanged,p,a)
1253 #define IDirectDrawClipper_SetClipList(p,a,b)     ICOM_CALL2(SetClipList,p,a,b)
1254 #define IDirectDrawClipper_SetHWnd(p,a,b)         ICOM_CALL2(SetHWnd,p,a,b)
1255
1256
1257 /*****************************************************************************
1258  * IDirectDraw interface
1259  */
1260 #define ICOM_INTERFACE IDirectDraw
1261 #define IDirectDraw_METHODS \
1262     ICOM_METHOD (HRESULT,Compact) \
1263     ICOM_METHOD3(HRESULT,CreateClipper,          DWORD,dwFlags, LPDIRECTDRAWCLIPPER*,lplpDDClipper, IUnknown*,pUnkOuter) \
1264     ICOM_METHOD4(HRESULT,CreatePalette,          DWORD,dwFlags, LPPALETTEENTRY,lpColorTable, LPDIRECTDRAWPALETTE*,lplpDDPalette, IUnknown*,pUnkOuter) \
1265     ICOM_METHOD3(HRESULT,CreateSurface,          LPDDSURFACEDESC,lpDDSurfaceDesc, LPDIRECTDRAWSURFACE*,lplpDDSurface, IUnknown*,pUnkOuter) \
1266     ICOM_METHOD2(HRESULT,DuplicateSurface,       LPDIRECTDRAWSURFACE,lpDDSurface, LPDIRECTDRAWSURFACE*,lplpDupDDSurface) \
1267     ICOM_METHOD4(HRESULT,EnumDisplayModes,       DWORD,dwFlags, LPDDSURFACEDESC,lpDDSurfaceDesc, LPVOID,lpContext, LPDDENUMMODESCALLBACK,lpEnumModesCallback) \
1268     ICOM_METHOD4(HRESULT,EnumSurfaces,           DWORD,dwFlags, LPDDSURFACEDESC,lpDDSD, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
1269     ICOM_METHOD (HRESULT,FlipToGDISurface) \
1270     ICOM_METHOD2(HRESULT,GetCaps,                LPDDCAPS,lpDDDriverCaps, LPDDCAPS,lpDDHELCaps) \
1271     ICOM_METHOD1(HRESULT,GetDisplayMode,         LPDDSURFACEDESC,lpDDSurfaceDesc) \
1272     ICOM_METHOD2(HRESULT,GetFourCCCodes,         LPDWORD,lpNumCodes, LPDWORD,lpCodes) \
1273     ICOM_METHOD1(HRESULT,GetGDISurface,          LPDIRECTDRAWSURFACE*,lplpGDIDDSurface) \
1274     ICOM_METHOD1(HRESULT,GetMonitorFrequency,    LPDWORD,lpdwFrequency) \
1275     ICOM_METHOD1(HRESULT,GetScanLine,            LPDWORD,lpdwScanLine) \
1276     ICOM_METHOD1(HRESULT,GetVerticalBlankStatus, BOOL*,lpbIsInVB) \
1277     ICOM_METHOD1(HRESULT,Initialize,             GUID*,lpGUID) \
1278     ICOM_METHOD (HRESULT,RestoreDisplayMode) \
1279     ICOM_METHOD2(HRESULT,SetCooperativeLevel,    HWND,hWnd, DWORD,dwFlags) \
1280     ICOM_METHOD3(HRESULT,SetDisplayMode,         DWORD,, DWORD,, DWORD,) \
1281     ICOM_METHOD2(HRESULT,WaitForVerticalBlank,   DWORD,dwFlags, HANDLE,hEvent)
1282 #define IDirectDraw_IMETHODS \
1283     IUnknown_IMETHODS \
1284     IDirectDraw_METHODS
1285 ICOM_DEFINE(IDirectDraw,IUnknown)
1286 #undef ICOM_INTERFACE
1287
1288     /*** IUnknown methods ***/
1289 #define IDirectDraw_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1290 #define IDirectDraw_AddRef(p)             ICOM_CALL (AddRef,p)
1291 #define IDirectDraw_Release(p)            ICOM_CALL (Release,p)
1292     /*** IDirectDraw methods ***/
1293 #define IDirectDraw_Compact(p)                  ICOM_CALL (Compact,p)
1294 #define IDirectDraw_CreateClipper(p,a,b,c)      ICOM_CALL3(CreateClipper,p,a,b,c)
1295 #define IDirectDraw_CreatePalette(p,a,b,c,d)    ICOM_CALL4(CreatePalette,p,a,b,c,d)
1296 #define IDirectDraw_CreateSurface(p,a,b,c)      ICOM_CALL3(CreateSurface,p,a,b,c)
1297 #define IDirectDraw_DuplicateSurface(p,a,b)     ICOM_CALL2(DuplicateSurface,p,a,b)
1298 #define IDirectDraw_EnumDisplayModes(p,a,b,c,d) ICOM_CALL4(EnumDisplayModes,p,a,b,c,d)
1299 #define IDirectDraw_EnumSurfaces(p,a,b,c,d)     ICOM_CALL4(EnumSurfaces,p,a,b,c,d)
1300 #define IDirectDraw_FlipToGDISurface(p)         ICOM_CALL (FlipToGDISurface,p)
1301 #define IDirectDraw_GetCaps(p,a,b)              ICOM_CALL2(GetCaps,p,a,b)
1302 #define IDirectDraw_GetDisplayMode(p,a)         ICOM_CALL1(GetDisplayMode,p,a)
1303 #define IDirectDraw_GetFourCCCodes(p,a,b)       ICOM_CALL2(GetFourCCCodes,p,a,b)
1304 #define IDirectDraw_GetGDISurface(p,a)          ICOM_CALL1(GetGDISurface,p,a)
1305 #define IDirectDraw_GetMonitorFrequency(p,a)    ICOM_CALL1(GetMonitorFrequency,p,a)
1306 #define IDirectDraw_GetScanLine(p,a)            ICOM_CALL1(GetScanLine,p,a)
1307 #define IDirectDraw_GetVerticalBlankStatus(p,a) ICOM_CALL1(GetVerticalBlankStatus,p,a)
1308 #define IDirectDraw_Initialize(p,a)             ICOM_CALL1(Initialize,p,a)
1309 #define IDirectDraw_RestoreDisplayMode(p)       ICOM_CALL (RestoreDisplayMode,p)
1310 #define IDirectDraw_SetCooperativeLevel(p,a,b)  ICOM_CALL2(SetCooperativeLevel,p,a,b)
1311 #define IDirectDraw_SetDisplayMode(p,a,b,c)     ICOM_CALL3(SetDisplayMode,p,a,b,c)
1312 #define IDirectDraw_WaitForVerticalBlank(p,a,b) ICOM_CALL2(WaitForVerticalBlank,p,a,b)
1313
1314
1315 /* flags for Lock() */
1316 #define DDLOCK_SURFACEMEMORYPTR 0x00000000
1317 #define DDLOCK_WAIT             0x00000001
1318 #define DDLOCK_EVENT            0x00000002
1319 #define DDLOCK_READONLY         0x00000010
1320 #define DDLOCK_WRITEONLY        0x00000020
1321 #define DDLOCK_NOSYSLOCK        0x00000800
1322
1323
1324 /*****************************************************************************
1325  * IDirectDraw2 interface
1326  */
1327 /* Note: IDirectDraw2 cannot derive from IDirectDraw because the number of
1328  * arguments of SetDisplayMode has changed !
1329  */
1330 #define ICOM_INTERFACE IDirectDraw2
1331 #define IDirectDraw2_METHODS \
1332 /*0c*/    ICOM_METHOD (HRESULT,Compact) \
1333 /*10*/    ICOM_METHOD3(HRESULT,CreateClipper,          DWORD,dwFlags, LPDIRECTDRAWCLIPPER*,lplpDDClipper, IUnknown*,pUnkOuter) \
1334 /*14*/    ICOM_METHOD4(HRESULT,CreatePalette,          DWORD,dwFlags, LPPALETTEENTRY,lpColorTable, LPDIRECTDRAWPALETTE*,lplpDDPalette, IUnknown*,pUnkOuter) \
1335 /*18*/    ICOM_METHOD3(HRESULT,CreateSurface,          LPDDSURFACEDESC,lpDDSurfaceDesc, LPDIRECTDRAWSURFACE*,lplpDDSurface, IUnknown*,pUnkOuter) \
1336 /*1c*/    ICOM_METHOD2(HRESULT,DuplicateSurface,       LPDIRECTDRAWSURFACE,lpDDSurface, LPDIRECTDRAWSURFACE*,lplpDupDDSurface) \
1337 /*20*/    ICOM_METHOD4(HRESULT,EnumDisplayModes,       DWORD,dwFlags, LPDDSURFACEDESC,lpDDSurfaceDesc, LPVOID,lpContext, LPDDENUMMODESCALLBACK,lpEnumModesCallback) \
1338 /*24*/    ICOM_METHOD4(HRESULT,EnumSurfaces,           DWORD,dwFlags, LPDDSURFACEDESC,lpDDSD, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
1339 /*28*/    ICOM_METHOD (HRESULT,FlipToGDISurface) \
1340 /*2c*/    ICOM_METHOD2(HRESULT,GetCaps,                LPDDCAPS,lpDDDriverCaps, LPDDCAPS,lpDDHELCaps) \
1341 /*30*/    ICOM_METHOD1(HRESULT,GetDisplayMode,         LPDDSURFACEDESC,lpDDSurfaceDesc) \
1342 /*34*/    ICOM_METHOD2(HRESULT,GetFourCCCodes,         LPDWORD,lpNumCodes, LPDWORD,lpCodes) \
1343 /*38*/    ICOM_METHOD1(HRESULT,GetGDISurface,          LPDIRECTDRAWSURFACE*,lplpGDIDDSurface) \
1344 /*3c*/    ICOM_METHOD1(HRESULT,GetMonitorFrequency,    LPDWORD,lpdwFrequency) \
1345 /*40*/    ICOM_METHOD1(HRESULT,GetScanLine,            LPDWORD,lpdwScanLine) \
1346 /*44*/    ICOM_METHOD1(HRESULT,GetVerticalBlankStatus, BOOL*,lpbIsInVB) \
1347 /*48*/    ICOM_METHOD1(HRESULT,Initialize,             GUID*,lpGUID) \
1348 /*4c*/    ICOM_METHOD (HRESULT,RestoreDisplayMode) \
1349 /*50*/    ICOM_METHOD2(HRESULT,SetCooperativeLevel,    HWND,hWnd, DWORD,dwFlags) \
1350 /*54*/    ICOM_METHOD5(HRESULT,SetDisplayMode,         DWORD,dwWidth, DWORD,dwHeight, DWORD,dwBPP, DWORD,dwRefreshRate, DWORD,dwFlags) \
1351 /*58*/    ICOM_METHOD2(HRESULT,WaitForVerticalBlank,   DWORD,dwFlags, HANDLE,hEvent) \
1352           /* added in v2 */ \
1353 /*5c*/    ICOM_METHOD3(HRESULT,GetAvailableVidMem, LPDDSCAPS,lpDDCaps, LPDWORD,lpdwTotal, LPDWORD,lpdwFree)
1354 #define IDirectDraw2_IMETHODS \
1355     IUnknown_IMETHODS \
1356     IDirectDraw2_METHODS
1357 ICOM_DEFINE(IDirectDraw2,IUnknown)
1358 #undef ICOM_INTERFACE
1359
1360     /*** IUnknown methods ***/
1361 #define IDirectDraw2_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1362 #define IDirectDraw2_AddRef(p)             ICOM_CALL (AddRef,p)
1363 #define IDirectDraw2_Release(p)            ICOM_CALL (Release,p)
1364     /*** IDirectDraw methods ***/
1365 #define IDirectDraw2_Compact(p)                  ICOM_CALL (Compact,p)
1366 #define IDirectDraw2_CreateClipper(p,a,b,c)      ICOM_CALL3(CreateClipper,p,a,b,c)
1367 #define IDirectDraw2_CreatePalette(p,a,b,c,d)    ICOM_CALL4(CreatePalette,p,a,b,c,d)
1368 #define IDirectDraw2_CreateSurface(p,a,b,c)      ICOM_CALL3(CreateSurface,p,a,b,c)
1369 #define IDirectDraw2_DuplicateSurface(p,a,b)     ICOM_CALL2(DuplicateSurface,p,a,b)
1370 #define IDirectDraw2_EnumDisplayModes(p,a,b,c,d) ICOM_CALL4(EnumDisplayModes,p,a,b,c,d)
1371 #define IDirectDraw2_EnumSurfaces(p,a,b,c,d)     ICOM_CALL4(EnumSurfaces,p,a,b,c,d)
1372 #define IDirectDraw2_FlipToGDISurface(p)         ICOM_CALL (FlipToGDISurface,p)
1373 #define IDirectDraw2_GetCaps(p,a,b)              ICOM_CALL2(GetCaps,p,a,b)
1374 #define IDirectDraw2_GetDisplayMode(p,a)         ICOM_CALL1(GetDisplayMode,p,a)
1375 #define IDirectDraw2_GetFourCCCodes(p,a,b)       ICOM_CALL2(GetFourCCCodes,p,a,b)
1376 #define IDirectDraw2_GetGDISurface(p,a)          ICOM_CALL1(GetGDISurface,p,a)
1377 #define IDirectDraw2_GetMonitorFrequency(p,a)    ICOM_CALL1(GetMonitorFrequency,p,a)
1378 #define IDirectDraw2_GetScanLine(p,a)            ICOM_CALL1(GetScanLine,p,a)
1379 #define IDirectDraw2_GetVerticalBlankStatus(p,a) ICOM_CALL1(GetVerticalBlankStatus,p,a)
1380 #define IDirectDraw2_Initialize(p,a)             ICOM_CALL1(Initialize,p,a)
1381 #define IDirectDraw2_RestoreDisplayMode(p)       ICOM_CALL (RestoreDisplayMode,p)
1382 #define IDirectDraw2_SetCooperativeLevel(p,a,b)  ICOM_CALL2(SetCooperativeLevel,p,a,b)
1383 #define IDirectDraw2_SetDisplayMode(p,a,b,c,d,e) ICOM_CALL5(SetDisplayMode,p,a,b,c,d,e)
1384 #define IDirectDraw2_WaitForVerticalBlank(p,a,b) ICOM_CALL2(WaitForVerticalBlank,p,a,b)
1385 /*** IDirectDraw2 methods ***/
1386 #define IDirectDraw2_GetAvailableVidMem(p,a,b,c) ICOM_CALL3(GetAvailableVidMem,p,a,b,c)
1387
1388
1389 /*****************************************************************************
1390  * IDirectDraw4 interface
1391  */
1392 #define ICOM_INTERFACE IDirectDraw4
1393 #define IDirectDraw4_METHODS \
1394 /*0c*/    ICOM_METHOD (HRESULT,Compact) \
1395 /*10*/    ICOM_METHOD3(HRESULT,CreateClipper,          DWORD,dwFlags, LPDIRECTDRAWCLIPPER*,lplpDDClipper, IUnknown*,pUnkOuter) \
1396 /*14*/    ICOM_METHOD4(HRESULT,CreatePalette,          DWORD,dwFlags, LPPALETTEENTRY,lpColorTable, LPDIRECTDRAWPALETTE*,lplpDDPalette, IUnknown*,pUnkOuter) \
1397 /*18*/    ICOM_METHOD3(HRESULT,CreateSurface,          LPDDSURFACEDESC2,lpDDSurfaceDesc, LPDIRECTDRAWSURFACE4*,lplpDDSurface, IUnknown*,pUnkOuter) \
1398 /*1c*/    ICOM_METHOD2(HRESULT,DuplicateSurface,       LPDIRECTDRAWSURFACE4,lpDDSurface, LPDIRECTDRAWSURFACE4*,lplpDupDDSurface) \
1399 /*20*/    ICOM_METHOD4(HRESULT,EnumDisplayModes,       DWORD,dwFlags, LPDDSURFACEDESC2,lpDDSurfaceDesc, LPVOID,lpContext, LPDDENUMMODESCALLBACK2,lpEnumModesCallback) \
1400 /*24*/    ICOM_METHOD4(HRESULT,EnumSurfaces,           DWORD,dwFlags, LPDDSURFACEDESC2,lpDDSD, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK2,lpEnumSurfacesCallback) \
1401 /*28*/    ICOM_METHOD (HRESULT,FlipToGDISurface) \
1402 /*2c*/    ICOM_METHOD2(HRESULT,GetCaps,                LPDDCAPS,lpDDDriverCaps, LPDDCAPS,lpDDHELCaps) \
1403 /*30*/    ICOM_METHOD1(HRESULT,GetDisplayMode,         LPDDSURFACEDESC2,lpDDSurfaceDesc) \
1404 /*34*/    ICOM_METHOD2(HRESULT,GetFourCCCodes,         LPDWORD,lpNumCodes, LPDWORD,lpCodes) \
1405 /*38*/    ICOM_METHOD1(HRESULT,GetGDISurface,          LPDIRECTDRAWSURFACE4*,lplpGDIDDSurface) \
1406 /*3c*/    ICOM_METHOD1(HRESULT,GetMonitorFrequency,    LPDWORD,lpdwFrequency) \
1407 /*40*/    ICOM_METHOD1(HRESULT,GetScanLine,            LPDWORD,lpdwScanLine) \
1408 /*44*/    ICOM_METHOD1(HRESULT,GetVerticalBlankStatus, BOOL*,lpbIsInVB) \
1409 /*48*/    ICOM_METHOD1(HRESULT,Initialize,             GUID*,lpGUID) \
1410 /*4c*/    ICOM_METHOD (HRESULT,RestoreDisplayMode) \
1411 /*50*/    ICOM_METHOD2(HRESULT,SetCooperativeLevel,    HWND,hWnd, DWORD,dwFlags) \
1412 /*54*/    ICOM_METHOD5(HRESULT,SetDisplayMode,         DWORD,dwWidth, DWORD,dwHeight, DWORD,dwBPP, DWORD,dwRefreshRate, DWORD,dwFlags) \
1413 /*58*/    ICOM_METHOD2(HRESULT,WaitForVerticalBlank,   DWORD,dwFlags, HANDLE,hEvent) \
1414           /* added in v2 */ \
1415 /*5c*/    ICOM_METHOD3(HRESULT,GetAvailableVidMem, LPDDSCAPS2,lpDDCaps, LPDWORD,lpdwTotal, LPDWORD,lpdwFree) \
1416     /* added in v4 */ \
1417     ICOM_METHOD2(HRESULT,GetSurfaceFromDC,    HDC,, LPDIRECTDRAWSURFACE4*,) \
1418     ICOM_METHOD (HRESULT,RestoreAllSurfaces) \
1419     ICOM_METHOD (HRESULT,TestCooperativeLevel) \
1420     ICOM_METHOD2(HRESULT,GetDeviceIdentifier, LPDDDEVICEIDENTIFIER,, DWORD,)
1421 #define IDirectDraw4_IMETHODS \
1422     IUnknown_IMETHODS \
1423     IDirectDraw4_METHODS
1424 ICOM_DEFINE(IDirectDraw4,IUnknown)
1425 #undef ICOM_INTERFACE
1426
1427     /*** IUnknown methods ***/
1428 #define IDirectDraw4_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1429 #define IDirectDraw4_AddRef(p)             ICOM_CALL (AddRef,p)
1430 #define IDirectDraw4_Release(p)            ICOM_CALL (Release,p)
1431     /*** IDirectDraw methods ***/
1432 #define IDirectDraw4_Compact(p)                  ICOM_CALL (Compact,p)
1433 #define IDirectDraw4_CreateClipper(p,a,b,c)      ICOM_CALL3(CreateClipper,p,a,b,c)
1434 #define IDirectDraw4_CreatePalette(p,a,b,c,d)    ICOM_CALL4(CreatePalette,p,a,b,c,d)
1435 #define IDirectDraw4_CreateSurface(p,a,b,c)      ICOM_CALL3(CreateSurface,p,a,b,c)
1436 #define IDirectDraw4_DuplicateSurface(p,a,b)     ICOM_CALL2(DuplicateSurface,p,a,b)
1437 #define IDirectDraw4_EnumDisplayModes(p,a,b,c,d) ICOM_CALL4(EnumDisplayModes,p,a,b,c,d)
1438 #define IDirectDraw4_EnumSurfaces(p,a,b,c,d)     ICOM_CALL4(EnumSurfaces,p,a,b,c,d)
1439 #define IDirectDraw4_FlipToGDISurface(p)         ICOM_CALL (FlipToGDISurface,p)
1440 #define IDirectDraw4_GetCaps(p,a,b)              ICOM_CALL2(GetCaps,p,a,b)
1441 #define IDirectDraw4_GetDisplayMode(p,a)         ICOM_CALL1(GetDisplayMode,p,a)
1442 #define IDirectDraw4_GetFourCCCodes(p,a,b)       ICOM_CALL2(GetFourCCCodes,p,a,b)
1443 #define IDirectDraw4_GetGDISurface(p,a)          ICOM_CALL1(GetGDISurface,p,a)
1444 #define IDirectDraw4_GetMonitorFrequency(p,a)    ICOM_CALL1(GetMonitorFrequency,p,a)
1445 #define IDirectDraw4_GetScanLine(p,a)            ICOM_CALL1(GetScanLine,p,a)
1446 #define IDirectDraw4_GetVerticalBlankStatus(p,a) ICOM_CALL1(GetVerticalBlankStatus,p,a)
1447 #define IDirectDraw4_Initialize(p,a)             ICOM_CALL1(Initialize,p,a)
1448 #define IDirectDraw4_RestoreDisplayMode(p)       ICOM_CALL (RestoreDisplayMode,p)
1449 #define IDirectDraw4_SetCooperativeLevel(p,a,b)  ICOM_CALL2(SetCooperativeLevel,p,a,b)
1450 #define IDirectDraw4_SetDisplayMode(p,a,b,c,d,e) ICOM_CALL5(SetDisplayMode,p,a,b,c,d,e)
1451 #define IDirectDraw4_WaitForVerticalBlank(p,a,b) ICOM_CALL2(WaitForVerticalBlank,p,a,b)
1452 /*** IDirectDraw2 methods ***/
1453 #define IDirectDraw4_GetAvailableVidMem(p,a,b,c) ICOM_CALL3(GetAvailableVidMem,p,a,b,c)
1454 /*** IDirectDraw4 methods ***/
1455 #define IDirectDraw4_GetSurfaceFromDC(p,a,b)    ICOM_CALL2(GetSurfaceFromDC,p,a,b)
1456 #define IDirectDraw4_RestoreAllSurfaces(pc)     ICOM_CALL (RestoreAllSurfaces,p)
1457 #define IDirectDraw4_TestCooperativeLevel(p)    ICOM_CALL (TestCooperativeLevel,p)
1458 #define IDirectDraw4_GetDeviceIdentifier(p,a,b) ICOM_CALL2(GetDeviceIdentifier,p,a,b)
1459
1460
1461 /*****************************************************************************
1462  * IDirectDraw7 interface
1463  */
1464 /* Note: IDirectDraw7 cannot derive from IDirectDraw4; it is even documented
1465  * as not interchangeable with earlier DirectDraw interfaces.
1466  */
1467 #define ICOM_INTERFACE IDirectDraw7
1468 #define IDirectDraw7_METHODS \
1469 /*0c*/    ICOM_METHOD (HRESULT,Compact) \
1470 /*10*/    ICOM_METHOD3(HRESULT,CreateClipper,          DWORD,dwFlags, LPDIRECTDRAWCLIPPER*,lplpDDClipper, IUnknown*,pUnkOuter) \
1471 /*14*/    ICOM_METHOD4(HRESULT,CreatePalette,          DWORD,dwFlags, LPPALETTEENTRY,lpColorTable, LPDIRECTDRAWPALETTE*,lplpDDPalette, IUnknown*,pUnkOuter) \
1472 /*18*/    ICOM_METHOD3(HRESULT,CreateSurface,          LPDDSURFACEDESC2,lpDDSurfaceDesc, LPDIRECTDRAWSURFACE7*,lplpDDSurface, IUnknown*,pUnkOuter) \
1473 /*1c*/    ICOM_METHOD2(HRESULT,DuplicateSurface,       LPDIRECTDRAWSURFACE7,lpDDSurface, LPDIRECTDRAWSURFACE7*,lplpDupDDSurface) \
1474 /*20*/    ICOM_METHOD4(HRESULT,EnumDisplayModes,       DWORD,dwFlags, LPDDSURFACEDESC2,lpDDSurfaceDesc, LPVOID,lpContext, LPDDENUMMODESCALLBACK2,lpEnumModesCallback) \
1475 /*24*/    ICOM_METHOD4(HRESULT,EnumSurfaces,           DWORD,dwFlags, LPDDSURFACEDESC2,lpDDSD, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK7,lpEnumSurfacesCallback) \
1476 /*28*/    ICOM_METHOD (HRESULT,FlipToGDISurface) \
1477 /*2c*/    ICOM_METHOD2(HRESULT,GetCaps,                LPDDCAPS,lpDDDriverCaps, LPDDCAPS,lpDDHELCaps) \
1478 /*30*/    ICOM_METHOD1(HRESULT,GetDisplayMode,         LPDDSURFACEDESC2,lpDDSurfaceDesc) \
1479 /*34*/    ICOM_METHOD2(HRESULT,GetFourCCCodes,         LPDWORD,lpNumCodes, LPDWORD,lpCodes) \
1480 /*38*/    ICOM_METHOD1(HRESULT,GetGDISurface,          LPDIRECTDRAWSURFACE7*,lplpGDIDDSurface) \
1481 /*3c*/    ICOM_METHOD1(HRESULT,GetMonitorFrequency,    LPDWORD,lpdwFrequency) \
1482 /*40*/    ICOM_METHOD1(HRESULT,GetScanLine,            LPDWORD,lpdwScanLine) \
1483 /*44*/    ICOM_METHOD1(HRESULT,GetVerticalBlankStatus, BOOL*,lpbIsInVB) \
1484 /*48*/    ICOM_METHOD1(HRESULT,Initialize,             GUID*,lpGUID) \
1485 /*4c*/    ICOM_METHOD (HRESULT,RestoreDisplayMode) \
1486 /*50*/    ICOM_METHOD2(HRESULT,SetCooperativeLevel,    HWND,hWnd, DWORD,dwFlags) \
1487 /*54*/    ICOM_METHOD5(HRESULT,SetDisplayMode,         DWORD,dwWidth, DWORD,dwHeight, DWORD,dwBPP, DWORD,dwRefreshRate, DWORD,dwFlags) \
1488 /*58*/    ICOM_METHOD2(HRESULT,WaitForVerticalBlank,   DWORD,dwFlags, HANDLE,hEvent) \
1489           /* added in v2 */ \
1490 /*5c*/    ICOM_METHOD3(HRESULT,GetAvailableVidMem, LPDDSCAPS2,lpDDCaps, LPDWORD,lpdwTotal, LPDWORD,lpdwFree) \
1491           /* added in v4 */ \
1492 /*60*/    ICOM_METHOD2(HRESULT,GetSurfaceFromDC,    HDC,, LPDIRECTDRAWSURFACE7*,) \
1493 /*64*/    ICOM_METHOD (HRESULT,RestoreAllSurfaces) \
1494 /*68*/    ICOM_METHOD (HRESULT,TestCooperativeLevel) \
1495 /*6c*/    ICOM_METHOD2(HRESULT,GetDeviceIdentifier, LPDDDEVICEIDENTIFIER2,, DWORD,) \
1496           /* added in v7 */ \
1497 /*70*/    ICOM_METHOD3(HRESULT,StartModeTest,    LPSIZE,, DWORD,, DWORD,) \
1498 /*74*/    ICOM_METHOD2(HRESULT,EvaluateMode,     DWORD,, DWORD *,)
1499 #define IDirectDraw7_IMETHODS \
1500     IUnknown_IMETHODS \
1501     IDirectDraw7_METHODS
1502 ICOM_DEFINE(IDirectDraw7,IUnknown)
1503 #undef ICOM_INTERFACE
1504
1505     /*** IUnknown methods ***/
1506 #define IDirectDraw7_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1507 #define IDirectDraw7_AddRef(p)             ICOM_CALL (AddRef,p)
1508 #define IDirectDraw7_Release(p)            ICOM_CALL (Release,p)
1509     /*** IDirectDraw methods ***/
1510 #define IDirectDraw7_Compact(p)                  ICOM_CALL (Compact,p)
1511 #define IDirectDraw7_CreateClipper(p,a,b,c)      ICOM_CALL3(CreateClipper,p,a,b,c)
1512 #define IDirectDraw7_CreatePalette(p,a,b,c,d)    ICOM_CALL4(CreatePalette,p,a,b,c,d)
1513 #define IDirectDraw7_CreateSurface(p,a,b,c)      ICOM_CALL3(CreateSurface,p,a,b,c)
1514 #define IDirectDraw7_DuplicateSurface(p,a,b)     ICOM_CALL2(DuplicateSurface,p,a,b)
1515 #define IDirectDraw7_EnumDisplayModes(p,a,b,c,d) ICOM_CALL4(EnumDisplayModes,p,a,b,c,d)
1516 #define IDirectDraw7_EnumSurfaces(p,a,b,c,d)     ICOM_CALL4(EnumSurfaces,p,a,b,c,d)
1517 #define IDirectDraw7_FlipToGDISurface(p)         ICOM_CALL (FlipToGDISurface,p)
1518 #define IDirectDraw7_GetCaps(p,a,b)              ICOM_CALL2(GetCaps,p,a,b)
1519 #define IDirectDraw7_GetDisplayMode(p,a)         ICOM_CALL1(GetDisplayMode,p,a)
1520 #define IDirectDraw7_GetFourCCCodes(p,a,b)       ICOM_CALL2(GetFourCCCodes,p,a,b)
1521 #define IDirectDraw7_GetGDISurface(p,a)          ICOM_CALL1(GetGDISurface,p,a)
1522 #define IDirectDraw7_GetMonitorFrequency(p,a)    ICOM_CALL1(GetMonitorFrequency,p,a)
1523 #define IDirectDraw7_GetScanLine(p,a)            ICOM_CALL1(GetScanLine,p,a)
1524 #define IDirectDraw7_GetVerticalBlankStatus(p,a) ICOM_CALL1(GetVerticalBlankStatus,p,a)
1525 #define IDirectDraw7_Initialize(p,a)             ICOM_CALL1(Initialize,p,a)
1526 #define IDirectDraw7_RestoreDisplayMode(p)       ICOM_CALL (RestoreDisplayMode,p)
1527 #define IDirectDraw7_SetCooperativeLevel(p,a,b)  ICOM_CALL2(SetCooperativeLevel,p,a,b)
1528 #define IDirectDraw7_SetDisplayMode(p,a,b,c,d,e) ICOM_CALL5(SetDisplayMode,p,a,b,c,d,e)
1529 #define IDirectDraw7_WaitForVerticalBlank(p,a,b) ICOM_CALL2(WaitForVerticalBlank,p,a,b)
1530 /*** added in IDirectDraw2 ***/
1531 #define IDirectDraw7_GetAvailableVidMem(p,a,b,c) ICOM_CALL3(GetAvailableVidMem,p,a,b,c)
1532 /*** added in IDirectDraw4 ***/
1533 #define IDirectDraw7_GetSurfaceFromDC(p,a,b)    ICOM_CALL2(GetSurfaceFromDC,p,a,b)
1534 #define IDirectDraw7_RestoreAllSurfaces(p)     ICOM_CALL (RestoreAllSurfaces,p)
1535 #define IDirectDraw7_TestCooperativeLevel(p)    ICOM_CALL (TestCooperativeLevel,p)
1536 #define IDirectDraw7_GetDeviceIdentifier(p,a,b) ICOM_CALL2(GetDeviceIdentifier,p,a,b)
1537 /*** added in IDirectDraw 7 ***/
1538 #define IDirectDraw7_StartModeTest(p,a,b,c)     ICOM_CALL3(StartModeTest,p,a,b,c)
1539 #define IDirectDraw7_EvaluateMode(p,a,b)        ICOM_CALL2(EvaluateMode,p,a,b)
1540
1541
1542 /*****************************************************************************
1543  * IDirectDrawSurface interface
1544  */
1545 #define ICOM_INTERFACE IDirectDrawSurface
1546 #define IDirectDrawSurface_METHODS \
1547 /*0c*/    ICOM_METHOD1(HRESULT,AddAttachedSurface,    LPDIRECTDRAWSURFACE,lpDDSAttachedSurface) \
1548 /*10*/    ICOM_METHOD1(HRESULT,AddOverlayDirtyRect,   LPRECT,lpRect) \
1549 /*14*/    ICOM_METHOD5(HRESULT,Blt,                   LPRECT,lpDestRect, LPDIRECTDRAWSURFACE,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
1550 /*18*/    ICOM_METHOD3(HRESULT,BltBatch,              LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
1551 /*1c*/    ICOM_METHOD5(HRESULT,BltFast,               DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
1552 /*20*/    ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE,lpDDSAttachedSurface) \
1553 /*24*/    ICOM_METHOD2(HRESULT,EnumAttachedSurfaces,  LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
1554 /*28*/    ICOM_METHOD3(HRESULT,EnumOverlayZOrders,    DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
1555 /*2c*/    ICOM_METHOD2(HRESULT,Flip,                  LPDIRECTDRAWSURFACE,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
1556 /*30*/    ICOM_METHOD2(HRESULT,GetAttachedSurface,    LPDDSCAPS,lpDDSCaps, LPDIRECTDRAWSURFACE*,lplpDDAttachedSurface) \
1557 /*34*/    ICOM_METHOD1(HRESULT,GetBltStatus,          DWORD,dwFlags) \
1558 /*38*/    ICOM_METHOD1(HRESULT,GetCaps,               LPDDSCAPS,lpDDSCaps) \
1559 /*3c*/    ICOM_METHOD1(HRESULT,GetClipper,            LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
1560 /*40*/    ICOM_METHOD2(HRESULT,GetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1561 /*44*/    ICOM_METHOD1(HRESULT,GetDC,                 HDC*,lphDC) \
1562 /*48*/    ICOM_METHOD1(HRESULT,GetFlipStatus,         DWORD,dwFlags) \
1563 /*4c*/    ICOM_METHOD2(HRESULT,GetOverlayPosition,    LPLONG,lplX, LPLONG,lplY) \
1564 /*50*/    ICOM_METHOD1(HRESULT,GetPalette,            LPDIRECTDRAWPALETTE*,lplpDDPalette) \
1565 /*54*/    ICOM_METHOD1(HRESULT,GetPixelFormat,        LPDDPIXELFORMAT,lpDDPixelFormat) \
1566 /*58*/    ICOM_METHOD1(HRESULT,GetSurfaceDesc,        LPDDSURFACEDESC,lpDDSurfaceDesc) \
1567 /*5c*/    ICOM_METHOD2(HRESULT,Initialize,            LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
1568 /*60*/    ICOM_METHOD (HRESULT,IsLost) \
1569 /*64*/    ICOM_METHOD4(HRESULT,Lock,                  LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
1570 /*68*/    ICOM_METHOD1(HRESULT,ReleaseDC,             HDC,hDC) \
1571 /*6c*/    ICOM_METHOD (HRESULT,Restore) \
1572 /*70*/    ICOM_METHOD1(HRESULT,SetClipper,            LPDIRECTDRAWCLIPPER,lpDDClipper) \
1573 /*74*/    ICOM_METHOD2(HRESULT,SetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1574 /*78*/    ICOM_METHOD2(HRESULT,SetOverlayPosition,    LONG,lX, LONG,lY) \
1575 /*7c*/    ICOM_METHOD1(HRESULT,SetPalette,            LPDIRECTDRAWPALETTE,lpDDPalette) \
1576 /*80*/    ICOM_METHOD1(HRESULT,Unlock,                LPVOID,lpSurfaceData) \
1577 /*84*/    ICOM_METHOD5(HRESULT,UpdateOverlay,         LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
1578 /*88*/    ICOM_METHOD1(HRESULT,UpdateOverlayDisplay,  DWORD,dwFlags) \
1579 /*8c*/    ICOM_METHOD2(HRESULT,UpdateOverlayZOrder,   DWORD,dwFlags, LPDIRECTDRAWSURFACE,lpDDSReference)
1580 #define IDirectDrawSurface_IMETHODS \
1581     IUnknown_IMETHODS \
1582     IDirectDrawSurface_METHODS
1583 ICOM_DEFINE(IDirectDrawSurface,IUnknown)
1584 #undef ICOM_INTERFACE
1585
1586     /*** IUnknown methods ***/
1587 #define IDirectDrawSurface_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1588 #define IDirectDrawSurface_AddRef(p)             ICOM_CALL (AddRef,p)
1589 #define IDirectDrawSurface_Release(p)            ICOM_CALL (Release,p)
1590     /*** IDirectDrawSurface methods ***/
1591 #define IDirectDrawSurface_AddAttachedSurface(p,a)      ICOM_CALL1(AddAttachedSurface,p,a)
1592 #define IDirectDrawSurface_AddOverlayDirtyRect(p,a)     ICOM_CALL1(AddOverlayDirtyRect,p,a)
1593 #define IDirectDrawSurface_Blt(p,a,b,c,d,e)             ICOM_CALL5(Blt,p,a,b,c,d,e)
1594 #define IDirectDrawSurface_BltBatch(p,a,b,c)            ICOM_CALL3(BltBatch,p,a,b,c)
1595 #define IDirectDrawSurface_BltFast(p,a,b,c,d,e)         ICOM_CALL5(BltFast,p,a,b,c,d,e)
1596 #define IDirectDrawSurface_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
1597 #define IDirectDrawSurface_EnumAttachedSurfaces(p,a,b)  ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
1598 #define IDirectDrawSurface_EnumOverlayZOrders(p,a,b,c)  ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
1599 #define IDirectDrawSurface_Flip(p,a,b)                  ICOM_CALL2(Flip,p,a,b)
1600 #define IDirectDrawSurface_GetAttachedSurface(p,a,b)    ICOM_CALL2(GetAttachedSurface,p,a,b)
1601 #define IDirectDrawSurface_GetBltStatus(p,a)            ICOM_CALL1(GetBltStatus,p,a)
1602 #define IDirectDrawSurface_GetCaps(p,a)                 ICOM_CALL1(GetCaps,p,a)
1603 #define IDirectDrawSurface_GetClipper(p,a)              ICOM_CALL1(GetClipper,p,a)
1604 #define IDirectDrawSurface_GetColorKey(p,a,b)           ICOM_CALL2(GetColorKey,p,a,b)
1605 #define IDirectDrawSurface_GetDC(p,a)                   ICOM_CALL1(GetDC,p,a)
1606 #define IDirectDrawSurface_GetFlipStatus(p,a)           ICOM_CALL1(GetFlipStatus,p,a)
1607 #define IDirectDrawSurface_GetOverlayPosition(p,a,b)    ICOM_CALL2(GetOverlayPosition,p,a,b)
1608 #define IDirectDrawSurface_GetPalette(p,a)              ICOM_CALL1(GetPalette,p,a)
1609 #define IDirectDrawSurface_GetPixelFormat(p,a)          ICOM_CALL1(GetPixelFormat,p,a)
1610 #define IDirectDrawSurface_GetSurfaceDesc(p,a)          ICOM_CALL1(GetSurfaceDesc,p,a)
1611 #define IDirectDrawSurface_Initialize(p,a,b)            ICOM_CALL2(Initialize,p,a,b)
1612 #define IDirectDrawSurface_IsLost(p)                    ICOM_CALL (IsLost,p)
1613 #define IDirectDrawSurface_Lock(p,a,b,c,d)              ICOM_CALL4(Lock,p,a,b,c,d)
1614 #define IDirectDrawSurface_ReleaseDC(p,a)               ICOM_CALL1(ReleaseDC,p,a)
1615 #define IDirectDrawSurface_Restore(p)                   ICOM_CALL (Restore,p)
1616 #define IDirectDrawSurface_SetClipper(p,a)              ICOM_CALL1(SetClipper,p,a)
1617 #define IDirectDrawSurface_SetColorKey(p,a,b)           ICOM_CALL2(SetColorKey,p,a,b)
1618 #define IDirectDrawSurface_SetOverlayPosition(p,a,b)    ICOM_CALL2(SetOverlayPosition,p,a,b)
1619 #define IDirectDrawSurface_SetPalette(p,a)              ICOM_CALL1(SetPalette,p,a)
1620 #define IDirectDrawSurface_Unlock(p,a)                  ICOM_CALL1(Unlock,p,a)
1621 #define IDirectDrawSurface_UpdateOverlay(p,a,b,c,d,e)   ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
1622 #define IDirectDrawSurface_UpdateOverlayDisplay(p,a)    ICOM_CALL1(UpdateOverlayDisplay,p,a)
1623 #define IDirectDrawSurface_UpdateOverlayZOrder(p,a,b)   ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
1624
1625
1626 /*****************************************************************************
1627  * IDirectDrawSurface2 interface
1628  */
1629 /* Cannot inherit from IDirectDrawSurface because the LPDIRECTDRAWSURFACE parameters
1630  * have been converted to LPDIRECTDRAWSURFACE2.
1631  */
1632 #define ICOM_INTERFACE IDirectDrawSurface2
1633 #define IDirectDrawSurface2_METHODS \
1634     ICOM_METHOD1(HRESULT,AddAttachedSurface,    LPDIRECTDRAWSURFACE2,lpDDSAttachedSurface) \
1635     ICOM_METHOD1(HRESULT,AddOverlayDirtyRect,   LPRECT,lpRect) \
1636     ICOM_METHOD5(HRESULT,Blt,                   LPRECT,lpDestRect, LPDIRECTDRAWSURFACE2,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
1637     ICOM_METHOD3(HRESULT,BltBatch,              LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
1638     ICOM_METHOD5(HRESULT,BltFast,               DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE2,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
1639     ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE2,lpDDSAttachedSurface) \
1640     ICOM_METHOD2(HRESULT,EnumAttachedSurfaces,  LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
1641     ICOM_METHOD3(HRESULT,EnumOverlayZOrders,    DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
1642     ICOM_METHOD2(HRESULT,Flip,                  LPDIRECTDRAWSURFACE2,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
1643     ICOM_METHOD2(HRESULT,GetAttachedSurface,    LPDDSCAPS,lpDDSCaps, LPDIRECTDRAWSURFACE2*,lplpDDAttachedSurface) \
1644     ICOM_METHOD1(HRESULT,GetBltStatus,          DWORD,dwFlags) \
1645     ICOM_METHOD1(HRESULT,GetCaps,               LPDDSCAPS,lpDDSCaps) \
1646     ICOM_METHOD1(HRESULT,GetClipper,            LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
1647     ICOM_METHOD2(HRESULT,GetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1648     ICOM_METHOD1(HRESULT,GetDC,                 HDC*,lphDC) \
1649     ICOM_METHOD1(HRESULT,GetFlipStatus,         DWORD,dwFlags) \
1650     ICOM_METHOD2(HRESULT,GetOverlayPosition,    LPLONG,lplX, LPLONG,lplY) \
1651     ICOM_METHOD1(HRESULT,GetPalette,            LPDIRECTDRAWPALETTE*,lplpDDPalette) \
1652     ICOM_METHOD1(HRESULT,GetPixelFormat,        LPDDPIXELFORMAT,lpDDPixelFormat) \
1653     ICOM_METHOD1(HRESULT,GetSurfaceDesc,        LPDDSURFACEDESC,lpDDSurfaceDesc) \
1654     ICOM_METHOD2(HRESULT,Initialize,            LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
1655     ICOM_METHOD (HRESULT,IsLost) \
1656     ICOM_METHOD4(HRESULT,Lock,                  LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
1657     ICOM_METHOD1(HRESULT,ReleaseDC,             HDC,hDC) \
1658     ICOM_METHOD (HRESULT,Restore) \
1659     ICOM_METHOD1(HRESULT,SetClipper,            LPDIRECTDRAWCLIPPER,lpDDClipper) \
1660     ICOM_METHOD2(HRESULT,SetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1661     ICOM_METHOD2(HRESULT,SetOverlayPosition,    LONG,lX, LONG,lY) \
1662     ICOM_METHOD1(HRESULT,SetPalette,            LPDIRECTDRAWPALETTE,lpDDPalette) \
1663     ICOM_METHOD1(HRESULT,Unlock,                LPVOID,lpSurfaceData) \
1664     ICOM_METHOD5(HRESULT,UpdateOverlay,         LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE2,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
1665     ICOM_METHOD1(HRESULT,UpdateOverlayDisplay,  DWORD,dwFlags) \
1666     ICOM_METHOD2(HRESULT,UpdateOverlayZOrder,   DWORD,dwFlags, LPDIRECTDRAWSURFACE2,lpDDSReference) \
1667     /* added in v2 */ \
1668     ICOM_METHOD1(HRESULT,GetDDInterface, LPVOID*,lplpDD) \
1669     ICOM_METHOD1(HRESULT,PageLock,       DWORD,dwFlags) \
1670     ICOM_METHOD1(HRESULT,PageUnlock,     DWORD,dwFlags)
1671 #define IDirectDrawSurface2_IMETHODS \
1672     IUnknown_IMETHODS \
1673     IDirectDrawSurface2_METHODS
1674 ICOM_DEFINE(IDirectDrawSurface2,IUnknown)
1675 #undef ICOM_INTERFACE
1676
1677     /*** IUnknown methods ***/
1678 #define IDirectDrawSurface2_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1679 #define IDirectDrawSurface2_AddRef(p)             ICOM_CALL (AddRef,p)
1680 #define IDirectDrawSurface2_Release(p)            ICOM_CALL (Release,p)
1681 /*** IDirectDrawSurface methods (almost) ***/
1682 #define IDirectDrawSurface2_AddAttachedSurface(p,a)      ICOM_CALL1(AddAttachedSurface,p,a)
1683 #define IDirectDrawSurface2_AddOverlayDirtyRect(p,a)     ICOM_CALL1(AddOverlayDirtyRect,p,a)
1684 #define IDirectDrawSurface2_Blt(p,a,b,c,d,e)             ICOM_CALL5(Blt,p,a,b,c,d,e)
1685 #define IDirectDrawSurface2_BltBatch(p,a,b,c)            ICOM_CALL3(BltBatch,p,a,b,c)
1686 #define IDirectDrawSurface2_BltFast(p,a,b,c,d,e)         ICOM_CALL5(BltFast,p,a,b,c,d,e)
1687 #define IDirectDrawSurface2_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
1688 #define IDirectDrawSurface2_EnumAttachedSurfaces(p,a,b)  ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
1689 #define IDirectDrawSurface2_EnumOverlayZOrders(p,a,b,c)  ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
1690 #define IDirectDrawSurface2_Flip(p,a,b)                  ICOM_CALL2(Flip,p,a,b)
1691 #define IDirectDrawSurface2_GetAttachedSurface(p,a,b)    ICOM_CALL2(GetAttachedSurface,p,a,b)
1692 #define IDirectDrawSurface2_GetBltStatus(p,a)            ICOM_CALL1(GetBltStatus,p,a)
1693 #define IDirectDrawSurface2_GetCaps(p,a)                 ICOM_CALL1(GetCaps,p,a)
1694 #define IDirectDrawSurface2_GetClipper(p,a)              ICOM_CALL1(GetClipper,p,a)
1695 #define IDirectDrawSurface2_GetColorKey(p,a,b)           ICOM_CALL2(GetColorKey,p,a,b)
1696 #define IDirectDrawSurface2_GetDC(p,a)                   ICOM_CALL1(GetDC,p,a)
1697 #define IDirectDrawSurface2_GetFlipStatus(p,a)           ICOM_CALL1(GetFlipStatus,p,a)
1698 #define IDirectDrawSurface2_GetOverlayPosition(p,a,b)    ICOM_CALL2(GetOverlayPosition,p,a,b)
1699 #define IDirectDrawSurface2_GetPalette(p,a)              ICOM_CALL1(GetPalette,p,a)
1700 #define IDirectDrawSurface2_GetPixelFormat(p,a)          ICOM_CALL1(GetPixelFormat,p,a)
1701 #define IDirectDrawSurface2_GetSurfaceDesc(p,a)          ICOM_CALL1(GetSurfaceDesc,p,a)
1702 #define IDirectDrawSurface2_Initialize(p,a,b)            ICOM_CALL2(Initialize,p,a,b)
1703 #define IDirectDrawSurface2_IsLost(p)                    ICOM_CALL (IsLost,p)
1704 #define IDirectDrawSurface2_Lock(p,a,b,c,d)              ICOM_CALL4(Lock,p,a,b,c,d)
1705 #define IDirectDrawSurface2_ReleaseDC(p,a)               ICOM_CALL1(ReleaseDC,p,a)
1706 #define IDirectDrawSurface2_Restore(p)                   ICOM_CALL (Restore,p)
1707 #define IDirectDrawSurface2_SetClipper(p,a)              ICOM_CALL1(SetClipper,p,a)
1708 #define IDirectDrawSurface2_SetColorKey(p,a,b)           ICOM_CALL2(SetColorKey,p,a,b)
1709 #define IDirectDrawSurface2_SetOverlayPosition(p,a,b)    ICOM_CALL2(SetOverlayPosition,p,a,b)
1710 #define IDirectDrawSurface2_SetPalette(p,a)              ICOM_CALL1(SetPalette,p,a)
1711 #define IDirectDrawSurface2_Unlock(p,a)                  ICOM_CALL1(Unlock,p,a)
1712 #define IDirectDrawSurface2_UpdateOverlay(p,a,b,c,d,e)   ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
1713 #define IDirectDrawSurface2_UpdateOverlayDisplay(p,a)    ICOM_CALL1(UpdateOverlayDisplay,p,a)
1714 #define IDirectDrawSurface2_UpdateOverlayZOrder(p,a,b)   ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
1715 /*** IDirectDrawSurface2 methods ***/
1716 #define IDirectDrawSurface2_GetDDInterface(p,a) ICOM_CALL1(GetDDInterface,p,a)
1717 #define IDirectDrawSurface2_PageLock(p,a)       ICOM_CALL1(PageLock,p,a)
1718 #define IDirectDrawSurface2_PageUnlock(p,a)     ICOM_CALL1(PageUnlock,p,a)
1719
1720
1721 /*****************************************************************************
1722  * IDirectDrawSurface3 interface
1723  */
1724 /* Cannot inherit from IDirectDrawSurface2 because the LPDIRECTDRAWSURFACE2 parameters
1725  * have been converted to LPDIRECTDRAWSURFACE3.
1726  */
1727 #define ICOM_INTERFACE IDirectDrawSurface3
1728 #define IDirectDrawSurface3_METHODS \
1729     ICOM_METHOD1(HRESULT,AddAttachedSurface,    LPDIRECTDRAWSURFACE3,lpDDSAttachedSurface) \
1730     ICOM_METHOD1(HRESULT,AddOverlayDirtyRect,   LPRECT,lpRect) \
1731     ICOM_METHOD5(HRESULT,Blt,                   LPRECT,lpDestRect, LPDIRECTDRAWSURFACE3,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
1732     ICOM_METHOD3(HRESULT,BltBatch,              LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
1733     ICOM_METHOD5(HRESULT,BltFast,               DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE3,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
1734     ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE3,lpDDSAttachedSurface) \
1735     ICOM_METHOD2(HRESULT,EnumAttachedSurfaces,  LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
1736     ICOM_METHOD3(HRESULT,EnumOverlayZOrders,    DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
1737     ICOM_METHOD2(HRESULT,Flip,                  LPDIRECTDRAWSURFACE3,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
1738     ICOM_METHOD2(HRESULT,GetAttachedSurface,    LPDDSCAPS,lpDDSCaps, LPDIRECTDRAWSURFACE3*,lplpDDAttachedSurface) \
1739     ICOM_METHOD1(HRESULT,GetBltStatus,          DWORD,dwFlags) \
1740     ICOM_METHOD1(HRESULT,GetCaps,               LPDDSCAPS,lpDDSCaps) \
1741     ICOM_METHOD1(HRESULT,GetClipper,            LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
1742     ICOM_METHOD2(HRESULT,GetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1743     ICOM_METHOD1(HRESULT,GetDC,                 HDC*,lphDC) \
1744     ICOM_METHOD1(HRESULT,GetFlipStatus,         DWORD,dwFlags) \
1745     ICOM_METHOD2(HRESULT,GetOverlayPosition,    LPLONG,lplX, LPLONG,lplY) \
1746     ICOM_METHOD1(HRESULT,GetPalette,            LPDIRECTDRAWPALETTE*,lplpDDPalette) \
1747     ICOM_METHOD1(HRESULT,GetPixelFormat,        LPDDPIXELFORMAT,lpDDPixelFormat) \
1748     ICOM_METHOD1(HRESULT,GetSurfaceDesc,        LPDDSURFACEDESC,lpDDSurfaceDesc) \
1749     ICOM_METHOD2(HRESULT,Initialize,            LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
1750     ICOM_METHOD (HRESULT,IsLost) \
1751     ICOM_METHOD4(HRESULT,Lock,                  LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
1752     ICOM_METHOD1(HRESULT,ReleaseDC,             HDC,hDC) \
1753     ICOM_METHOD (HRESULT,Restore) \
1754     ICOM_METHOD1(HRESULT,SetClipper,            LPDIRECTDRAWCLIPPER,lpDDClipper) \
1755     ICOM_METHOD2(HRESULT,SetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1756     ICOM_METHOD2(HRESULT,SetOverlayPosition,    LONG,lX, LONG,lY) \
1757     ICOM_METHOD1(HRESULT,SetPalette,            LPDIRECTDRAWPALETTE,lpDDPalette) \
1758     ICOM_METHOD1(HRESULT,Unlock,                LPVOID,lpSurfaceData) \
1759     ICOM_METHOD5(HRESULT,UpdateOverlay,         LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE3,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
1760     ICOM_METHOD1(HRESULT,UpdateOverlayDisplay,  DWORD,dwFlags) \
1761     ICOM_METHOD2(HRESULT,UpdateOverlayZOrder,   DWORD,dwFlags, LPDIRECTDRAWSURFACE3,lpDDSReference) \
1762     /* added in v2 */ \
1763     ICOM_METHOD1(HRESULT,GetDDInterface, LPVOID*,lplpDD) \
1764     ICOM_METHOD1(HRESULT,PageLock,       DWORD,dwFlags) \
1765     ICOM_METHOD1(HRESULT,PageUnlock,     DWORD,dwFlags) \
1766     /* added in v3 */ \
1767     ICOM_METHOD2(HRESULT,SetSurfaceDesc, LPDDSURFACEDESC,lpDDSD, DWORD,dwFlags)
1768 #define IDirectDrawSurface3_IMETHODS \
1769     IUnknown_IMETHODS \
1770     IDirectDrawSurface3_METHODS
1771 ICOM_DEFINE(IDirectDrawSurface3,IUnknown)
1772 #undef ICOM_INTERFACE
1773
1774     /*** IUnknown methods ***/
1775 #define IDirectDrawSurface3_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1776 #define IDirectDrawSurface3_AddRef(p)             ICOM_CALL (AddRef,p)
1777 #define IDirectDrawSurface3_Release(p)            ICOM_CALL (Release,p)
1778 /*** IDirectDrawSurface methods (almost) ***/
1779 #define IDirectDrawSurface3_AddAttachedSurface(p,a)      ICOM_CALL1(AddAttachedSurface,p,a)
1780 #define IDirectDrawSurface3_AddOverlayDirtyRect(p,a)     ICOM_CALL1(AddOverlayDirtyRect,p,a)
1781 #define IDirectDrawSurface3_Blt(p,a,b,c,d,e)             ICOM_CALL5(Blt,p,a,b,c,d,e)
1782 #define IDirectDrawSurface3_BltBatch(p,a,b,c)            ICOM_CALL3(BltBatch,p,a,b,c)
1783 #define IDirectDrawSurface3_BltFast(p,a,b,c,d,e)         ICOM_CALL5(BltFast,p,a,b,c,d,e)
1784 #define IDirectDrawSurface3_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
1785 #define IDirectDrawSurface3_EnumAttachedSurfaces(p,a,b)  ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
1786 #define IDirectDrawSurface3_EnumOverlayZOrders(p,a,b,c)  ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
1787 #define IDirectDrawSurface3_Flip(p,a,b)                  ICOM_CALL2(Flip,p,a,b)
1788 #define IDirectDrawSurface3_GetAttachedSurface(p,a,b)    ICOM_CALL2(GetAttachedSurface,p,a,b)
1789 #define IDirectDrawSurface3_GetBltStatus(p,a)            ICOM_CALL1(GetBltStatus,p,a)
1790 #define IDirectDrawSurface3_GetCaps(p,a)                 ICOM_CALL1(GetCaps,p,a)
1791 #define IDirectDrawSurface3_GetClipper(p,a)              ICOM_CALL1(GetClipper,p,a)
1792 #define IDirectDrawSurface3_GetColorKey(p,a,b)           ICOM_CALL2(GetColorKey,p,a,b)
1793 #define IDirectDrawSurface3_GetDC(p,a)                   ICOM_CALL1(GetDC,p,a)
1794 #define IDirectDrawSurface3_GetFlipStatus(p,a)           ICOM_CALL1(GetFlipStatus,p,a)
1795 #define IDirectDrawSurface3_GetOverlayPosition(p,a,b)    ICOM_CALL2(GetOverlayPosition,p,a,b)
1796 #define IDirectDrawSurface3_GetPalette(p,a)              ICOM_CALL1(GetPalette,p,a)
1797 #define IDirectDrawSurface3_GetPixelFormat(p,a)          ICOM_CALL1(GetPixelFormat,p,a)
1798 #define IDirectDrawSurface3_GetSurfaceDesc(p,a)          ICOM_CALL1(GetSurfaceDesc,p,a)
1799 #define IDirectDrawSurface3_Initialize(p,a,b)            ICOM_CALL2(Initialize,p,a,b)
1800 #define IDirectDrawSurface3_IsLost(p)                    ICOM_CALL (IsLost,p)
1801 #define IDirectDrawSurface3_Lock(p,a,b,c,d)              ICOM_CALL4(Lock,p,a,b,c,d)
1802 #define IDirectDrawSurface3_ReleaseDC(p,a)               ICOM_CALL1(ReleaseDC,p,a)
1803 #define IDirectDrawSurface3_Restore(p)                   ICOM_CALL (Restore,p)
1804 #define IDirectDrawSurface3_SetClipper(p,a)              ICOM_CALL1(SetClipper,p,a)
1805 #define IDirectDrawSurface3_SetColorKey(p,a,b)           ICOM_CALL2(SetColorKey,p,a,b)
1806 #define IDirectDrawSurface3_SetOverlayPosition(p,a,b)    ICOM_CALL2(SetOverlayPosition,p,a,b)
1807 #define IDirectDrawSurface3_SetPalette(p,a)              ICOM_CALL1(SetPalette,p,a)
1808 #define IDirectDrawSurface3_Unlock(p,a)                  ICOM_CALL1(Unlock,p,a)
1809 #define IDirectDrawSurface3_UpdateOverlay(p,a,b,c,d,e)   ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
1810 #define IDirectDrawSurface3_UpdateOverlayDisplay(p,a)    ICOM_CALL1(UpdateOverlayDisplay,p,a)
1811 #define IDirectDrawSurface3_UpdateOverlayZOrder(p,a,b)   ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
1812 /*** IDirectDrawSurface2 methods ***/
1813 #define IDirectDrawSurface3_GetDDInterface(p,a) ICOM_CALL1(GetDDInterface,p,a)
1814 #define IDirectDrawSurface3_PageLock(p,a)       ICOM_CALL1(PageLock,p,a)
1815 #define IDirectDrawSurface3_PageUnlock(p,a)     ICOM_CALL1(PageUnlock,p,a)
1816 /*** IDirectDrawSurface3 methods ***/
1817 #define IDirectDrawSurface3_SetSurfaceDesc(p,a,b) ICOM_CALL2(SetSurfaceDesc,p,a,b)
1818
1819
1820 /*****************************************************************************
1821  * IDirectDrawSurface4 interface
1822  */
1823 /* Cannot inherit from IDirectDrawSurface2 because DDSCAPS changed to DDSCAPS2.
1824  */
1825 #define ICOM_INTERFACE IDirectDrawSurface4
1826 #define IDirectDrawSurface4_METHODS \
1827     ICOM_METHOD1(HRESULT,AddAttachedSurface,    LPDIRECTDRAWSURFACE4,lpDDSAttachedSurface) \
1828     ICOM_METHOD1(HRESULT,AddOverlayDirtyRect,   LPRECT,lpRect) \
1829     ICOM_METHOD5(HRESULT,Blt,                   LPRECT,lpDestRect, LPDIRECTDRAWSURFACE4,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
1830     ICOM_METHOD3(HRESULT,BltBatch,              LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
1831     ICOM_METHOD5(HRESULT,BltFast,               DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE4,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
1832     ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE4,lpDDSAttachedSurface) \
1833     ICOM_METHOD2(HRESULT,EnumAttachedSurfaces,  LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
1834     ICOM_METHOD3(HRESULT,EnumOverlayZOrders,    DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
1835     ICOM_METHOD2(HRESULT,Flip,                  LPDIRECTDRAWSURFACE4,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
1836     ICOM_METHOD2(HRESULT,GetAttachedSurface,    LPDDSCAPS2,lpDDSCaps, LPDIRECTDRAWSURFACE4*,lplpDDAttachedSurface) \
1837     ICOM_METHOD1(HRESULT,GetBltStatus,          DWORD,dwFlags) \
1838     ICOM_METHOD1(HRESULT,GetCaps,               LPDDSCAPS2,lpDDSCaps) \
1839     ICOM_METHOD1(HRESULT,GetClipper,            LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
1840     ICOM_METHOD2(HRESULT,GetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1841     ICOM_METHOD1(HRESULT,GetDC,                 HDC*,lphDC) \
1842     ICOM_METHOD1(HRESULT,GetFlipStatus,         DWORD,dwFlags) \
1843     ICOM_METHOD2(HRESULT,GetOverlayPosition,    LPLONG,lplX, LPLONG,lplY) \
1844     ICOM_METHOD1(HRESULT,GetPalette,            LPDIRECTDRAWPALETTE*,lplpDDPalette) \
1845     ICOM_METHOD1(HRESULT,GetPixelFormat,        LPDDPIXELFORMAT,lpDDPixelFormat) \
1846     ICOM_METHOD1(HRESULT,GetSurfaceDesc,        LPDDSURFACEDESC,lpDDSurfaceDesc) \
1847     ICOM_METHOD2(HRESULT,Initialize,            LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
1848     ICOM_METHOD (HRESULT,IsLost) \
1849     ICOM_METHOD4(HRESULT,Lock,                  LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
1850     ICOM_METHOD1(HRESULT,ReleaseDC,             HDC,hDC) \
1851     ICOM_METHOD (HRESULT,Restore) \
1852     ICOM_METHOD1(HRESULT,SetClipper,            LPDIRECTDRAWCLIPPER,lpDDClipper) \
1853     ICOM_METHOD2(HRESULT,SetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1854     ICOM_METHOD2(HRESULT,SetOverlayPosition,    LONG,lX, LONG,lY) \
1855     ICOM_METHOD1(HRESULT,SetPalette,            LPDIRECTDRAWPALETTE,lpDDPalette) \
1856     ICOM_METHOD1(HRESULT,Unlock,                LPRECT,lpSurfaceData) \
1857     ICOM_METHOD5(HRESULT,UpdateOverlay,         LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE4,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
1858     ICOM_METHOD1(HRESULT,UpdateOverlayDisplay,  DWORD,dwFlags) \
1859     ICOM_METHOD2(HRESULT,UpdateOverlayZOrder,   DWORD,dwFlags, LPDIRECTDRAWSURFACE4,lpDDSReference) \
1860     /* added in v2 */ \
1861     ICOM_METHOD1(HRESULT,GetDDInterface, LPVOID*,lplpDD) \
1862     ICOM_METHOD1(HRESULT,PageLock,       DWORD,dwFlags) \
1863     ICOM_METHOD1(HRESULT,PageUnlock,     DWORD,dwFlags) \
1864     /* added in v3 */ \
1865     ICOM_METHOD2(HRESULT,SetSurfaceDesc, LPDDSURFACEDESC,lpDDSD, DWORD,dwFlags) \
1866     /* added in v4 */ \
1867     ICOM_METHOD4(HRESULT,SetPrivateData,       REFGUID,, LPVOID,, DWORD,, DWORD,) \
1868     ICOM_METHOD3(HRESULT,GetPrivateData,       REFGUID,, LPVOID,, LPDWORD,) \
1869     ICOM_METHOD1(HRESULT,FreePrivateData,      REFGUID,) \
1870     ICOM_METHOD1(HRESULT,GetUniquenessValue,   LPDWORD,) \
1871     ICOM_METHOD (HRESULT,ChangeUniquenessValue)
1872 #define IDirectDrawSurface4_IMETHODS \
1873     IUnknown_IMETHODS \
1874     IDirectDrawSurface4_METHODS
1875 ICOM_DEFINE(IDirectDrawSurface4,IUnknown)
1876 #undef ICOM_INTERFACE
1877
1878     /*** IUnknown methods ***/
1879 #define IDirectDrawSurface4_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1880 #define IDirectDrawSurface4_AddRef(p)             ICOM_CALL (AddRef,p)
1881 #define IDirectDrawSurface4_Release(p)            ICOM_CALL (Release,p)
1882 /*** IDirectDrawSurface (almost) methods ***/
1883 #define IDirectDrawSurface4_AddAttachedSurface(p,a)      ICOM_CALL1(AddAttachedSurface,p,a)
1884 #define IDirectDrawSurface4_AddOverlayDirtyRect(p,a)     ICOM_CALL1(AddOverlayDirtyRect,p,a)
1885 #define IDirectDrawSurface4_Blt(p,a,b,c,d,e)             ICOM_CALL5(Blt,p,a,b,c,d,e)
1886 #define IDirectDrawSurface4_BltBatch(p,a,b,c)            ICOM_CALL3(BltBatch,p,a,b,c)
1887 #define IDirectDrawSurface4_BltFast(p,a,b,c,d,e)         ICOM_CALL5(BltFast,p,a,b,c,d,e)
1888 #define IDirectDrawSurface4_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
1889 #define IDirectDrawSurface4_EnumAttachedSurfaces(p,a,b)  ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
1890 #define IDirectDrawSurface4_EnumOverlayZOrders(p,a,b,c)  ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
1891 #define IDirectDrawSurface4_Flip(p,a,b)                  ICOM_CALL2(Flip,p,a,b)
1892 #define IDirectDrawSurface4_GetAttachedSurface(p,a,b)    ICOM_CALL2(GetAttachedSurface,p,a,b)
1893 #define IDirectDrawSurface4_GetBltStatus(p,a)            ICOM_CALL1(GetBltStatus,p,a)
1894 #define IDirectDrawSurface4_GetCaps(p,a)                 ICOM_CALL1(GetCaps,p,a)
1895 #define IDirectDrawSurface4_GetClipper(p,a)              ICOM_CALL1(GetClipper,p,a)
1896 #define IDirectDrawSurface4_GetColorKey(p,a,b)           ICOM_CALL2(GetColorKey,p,a,b)
1897 #define IDirectDrawSurface4_GetDC(p,a)                   ICOM_CALL1(GetDC,p,a)
1898 #define IDirectDrawSurface4_GetFlipStatus(p,a)           ICOM_CALL1(GetFlipStatus,p,a)
1899 #define IDirectDrawSurface4_GetOverlayPosition(p,a,b)    ICOM_CALL2(GetOverlayPosition,p,a,b)
1900 #define IDirectDrawSurface4_GetPalette(p,a)              ICOM_CALL1(GetPalette,p,a)
1901 #define IDirectDrawSurface4_GetPixelFormat(p,a)          ICOM_CALL1(GetPixelFormat,p,a)
1902 #define IDirectDrawSurface4_GetSurfaceDesc(p,a)          ICOM_CALL1(GetSurfaceDesc,p,a)
1903 #define IDirectDrawSurface4_Initialize(p,a,b)            ICOM_CALL2(Initialize,p,a,b)
1904 #define IDirectDrawSurface4_IsLost(p)                    ICOM_CALL (IsLost,p)
1905 #define IDirectDrawSurface4_Lock(p,a,b,c,d)              ICOM_CALL4(Lock,p,a,b,c,d)
1906 #define IDirectDrawSurface4_ReleaseDC(p,a)               ICOM_CALL1(ReleaseDC,p,a)
1907 #define IDirectDrawSurface4_Restore(p)                   ICOM_CALL (Restore,p)
1908 #define IDirectDrawSurface4_SetClipper(p,a)              ICOM_CALL1(SetClipper,p,a)
1909 #define IDirectDrawSurface4_SetColorKey(p,a,b)           ICOM_CALL2(SetColorKey,p,a,b)
1910 #define IDirectDrawSurface4_SetOverlayPosition(p,a,b)    ICOM_CALL2(SetOverlayPosition,p,a,b)
1911 #define IDirectDrawSurface4_SetPalette(p,a)              ICOM_CALL1(SetPalette,p,a)
1912 #define IDirectDrawSurface4_Unlock(p,a)                  ICOM_CALL1(Unlock,p,a)
1913 #define IDirectDrawSurface4_UpdateOverlay(p,a,b,c,d,e)   ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
1914 #define IDirectDrawSurface4_UpdateOverlayDisplay(p,a)    ICOM_CALL1(UpdateOverlayDisplay,p,a)
1915 #define IDirectDrawSurface4_UpdateOverlayZOrder(p,a,b)   ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
1916 /*** IDirectDrawSurface2 methods ***/
1917 #define IDirectDrawSurface4_GetDDInterface(p,a) ICOM_CALL1(GetDDInterface,p,a)
1918 #define IDirectDrawSurface4_PageLock(p,a)       ICOM_CALL1(PageLock,p,a)
1919 #define IDirectDrawSurface4_PageUnlock(p,a)     ICOM_CALL1(PageUnlock,p,a)
1920 /*** IDirectDrawSurface3 methods ***/
1921 #define IDirectDrawSurface4_SetSurfaceDesc(p,a,b) ICOM_CALL2(SetSurfaceDesc,p,a,b)
1922 /*** IDirectDrawSurface4 methods ***/
1923 #define IDirectDrawSurface4_SetPrivateData(p,a,b,c,d) ICOM_CALL4(SetPrivateData,p,a,b,c,d)
1924 #define IDirectDrawSurface4_GetPrivateData(p,a,b,c)   ICOM_CALL3(GetPrivateData,p,a,b,c)
1925 #define IDirectDrawSurface4_FreePrivateData(p,a)      ICOM_CALL1(FreePrivateData,p,a)
1926 #define IDirectDrawSurface4_GetUniquenessValue(p,a)   ICOM_CALL1(GetUniquenessValue,p,a)
1927 #define IDirectDrawSurface4_ChangeUniquenessValue(p)  ICOM_CALL (ChangeUniquenessValue,p)
1928
1929
1930 /*****************************************************************************
1931  * IDirectDrawSurface7 interface
1932  */
1933 #define ICOM_INTERFACE IDirectDrawSurface7
1934 #define IDirectDrawSurface7_METHODS \
1935     ICOM_METHOD1(HRESULT,AddAttachedSurface,    LPDIRECTDRAWSURFACE7,lpDDSAttachedSurface) \
1936     ICOM_METHOD1(HRESULT,AddOverlayDirtyRect,   LPRECT,lpRect) \
1937     ICOM_METHOD5(HRESULT,Blt,                   LPRECT,lpDestRect, LPDIRECTDRAWSURFACE7,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
1938     ICOM_METHOD3(HRESULT,BltBatch,              LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
1939     ICOM_METHOD5(HRESULT,BltFast,               DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE7,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
1940     ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE7,lpDDSAttachedSurface) \
1941     ICOM_METHOD2(HRESULT,EnumAttachedSurfaces,  LPVOID,lpContext, LPDDENUMSURFACESCALLBACK7,lpEnumSurfacesCallback) \
1942     ICOM_METHOD3(HRESULT,EnumOverlayZOrders,    DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK7,lpfnCallback) \
1943     ICOM_METHOD2(HRESULT,Flip,                  LPDIRECTDRAWSURFACE7,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
1944     ICOM_METHOD2(HRESULT,GetAttachedSurface,    LPDDSCAPS2,lpDDSCaps, LPDIRECTDRAWSURFACE7*,lplpDDAttachedSurface) \
1945     ICOM_METHOD1(HRESULT,GetBltStatus,          DWORD,dwFlags) \
1946     ICOM_METHOD1(HRESULT,GetCaps,               LPDDSCAPS2,lpDDSCaps) \
1947     ICOM_METHOD1(HRESULT,GetClipper,            LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
1948     ICOM_METHOD2(HRESULT,GetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1949     ICOM_METHOD1(HRESULT,GetDC,                 HDC*,lphDC) \
1950     ICOM_METHOD1(HRESULT,GetFlipStatus,         DWORD,dwFlags) \
1951     ICOM_METHOD2(HRESULT,GetOverlayPosition,    LPLONG,lplX, LPLONG,lplY) \
1952     ICOM_METHOD1(HRESULT,GetPalette,            LPDIRECTDRAWPALETTE*,lplpDDPalette) \
1953     ICOM_METHOD1(HRESULT,GetPixelFormat,        LPDDPIXELFORMAT,lpDDPixelFormat) \
1954     ICOM_METHOD1(HRESULT,GetSurfaceDesc,        LPDDSURFACEDESC2,lpDDSurfaceDesc) \
1955     ICOM_METHOD2(HRESULT,Initialize,            LPDIRECTDRAW,lpDD, LPDDSURFACEDESC2,lpDDSurfaceDesc) \
1956     ICOM_METHOD (HRESULT,IsLost) \
1957     ICOM_METHOD4(HRESULT,Lock,                  LPRECT,lpDestRect, LPDDSURFACEDESC2,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
1958     ICOM_METHOD1(HRESULT,ReleaseDC,             HDC,hDC) \
1959     ICOM_METHOD (HRESULT,Restore) \
1960     ICOM_METHOD1(HRESULT,SetClipper,            LPDIRECTDRAWCLIPPER,lpDDClipper) \
1961     ICOM_METHOD2(HRESULT,SetColorKey,           DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
1962     ICOM_METHOD2(HRESULT,SetOverlayPosition,    LONG,lX, LONG,lY) \
1963     ICOM_METHOD1(HRESULT,SetPalette,            LPDIRECTDRAWPALETTE,lpDDPalette) \
1964     ICOM_METHOD1(HRESULT,Unlock,                LPRECT,lpSurfaceData) \
1965     ICOM_METHOD5(HRESULT,UpdateOverlay,         LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE7,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
1966     ICOM_METHOD1(HRESULT,UpdateOverlayDisplay,  DWORD,dwFlags) \
1967     ICOM_METHOD2(HRESULT,UpdateOverlayZOrder,   DWORD,dwFlags, LPDIRECTDRAWSURFACE7,lpDDSReference) \
1968     /* added in v2 */ \
1969     ICOM_METHOD1(HRESULT,GetDDInterface, LPVOID*,lplpDD) \
1970     ICOM_METHOD1(HRESULT,PageLock,       DWORD,dwFlags) \
1971     ICOM_METHOD1(HRESULT,PageUnlock,     DWORD,dwFlags) \
1972     /* added in v3 */ \
1973     ICOM_METHOD2(HRESULT,SetSurfaceDesc, LPDDSURFACEDESC2,lpDDSD, DWORD,dwFlags) \
1974     /* added in v4 */ \
1975     ICOM_METHOD4(HRESULT,SetPrivateData,       REFGUID,, LPVOID,, DWORD,, DWORD,) \
1976     ICOM_METHOD3(HRESULT,GetPrivateData,       REFGUID,, LPVOID,, LPDWORD,) \
1977     ICOM_METHOD1(HRESULT,FreePrivateData,      REFGUID,) \
1978     ICOM_METHOD1(HRESULT,GetUniquenessValue,   LPDWORD,) \
1979     ICOM_METHOD (HRESULT,ChangeUniquenessValue) \
1980     /* added in v7 */ \
1981     ICOM_METHOD1(HRESULT,SetPriority,    DWORD,prio) \
1982     ICOM_METHOD1(HRESULT,GetPriority,    LPDWORD,prio) \
1983     ICOM_METHOD1(HRESULT,SetLOD,         DWORD,lod) \
1984     ICOM_METHOD1(HRESULT,GetLOD,         LPDWORD,lod)
1985 #define IDirectDrawSurface7_IMETHODS \
1986     IUnknown_IMETHODS \
1987     IDirectDrawSurface7_METHODS
1988 ICOM_DEFINE(IDirectDrawSurface7,IUnknown)
1989 #undef ICOM_INTERFACE
1990
1991     /*** IUnknown methods ***/
1992 #define IDirectDrawSurface7_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
1993 #define IDirectDrawSurface7_AddRef(p)             ICOM_CALL (AddRef,p)
1994 #define IDirectDrawSurface7_Release(p)            ICOM_CALL (Release,p)
1995 /*** IDirectDrawSurface (almost) methods ***/
1996 #define IDirectDrawSurface7_AddAttachedSurface(p,a)      ICOM_CALL1(AddAttachedSurface,p,a)
1997 #define IDirectDrawSurface7_AddOverlayDirtyRect(p,a)     ICOM_CALL1(AddOverlayDirtyRect,p,a)
1998 #define IDirectDrawSurface7_Blt(p,a,b,c,d,e)             ICOM_CALL5(Blt,p,a,b,c,d,e)
1999 #define IDirectDrawSurface7_BltBatch(p,a,b,c)            ICOM_CALL3(BltBatch,p,a,b,c)
2000 #define IDirectDrawSurface7_BltFast(p,a,b,c,d,e)         ICOM_CALL5(BltFast,p,a,b,c,d,e)
2001 #define IDirectDrawSurface7_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
2002 #define IDirectDrawSurface7_EnumAttachedSurfaces(p,a,b)  ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
2003 #define IDirectDrawSurface7_EnumOverlayZOrders(p,a,b,c)  ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
2004 #define IDirectDrawSurface7_Flip(p,a,b)                  ICOM_CALL2(Flip,p,a,b)
2005 #define IDirectDrawSurface7_GetAttachedSurface(p,a,b)    ICOM_CALL2(GetAttachedSurface,p,a,b)
2006 #define IDirectDrawSurface7_GetBltStatus(p,a)            ICOM_CALL1(GetBltStatus,p,a)
2007 #define IDirectDrawSurface7_GetCaps(p,a)                 ICOM_CALL1(GetCaps,p,a)
2008 #define IDirectDrawSurface7_GetClipper(p,a)              ICOM_CALL1(GetClipper,p,a)
2009 #define IDirectDrawSurface7_GetColorKey(p,a,b)           ICOM_CALL2(GetColorKey,p,a,b)
2010 #define IDirectDrawSurface7_GetDC(p,a)                   ICOM_CALL1(GetDC,p,a)
2011 #define IDirectDrawSurface7_GetFlipStatus(p,a)           ICOM_CALL1(GetFlipStatus,p,a)
2012 #define IDirectDrawSurface7_GetOverlayPosition(p,a,b)    ICOM_CALL2(GetOverlayPosition,p,a,b)
2013 #define IDirectDrawSurface7_GetPalette(p,a)              ICOM_CALL1(GetPalette,p,a)
2014 #define IDirectDrawSurface7_GetPixelFormat(p,a)          ICOM_CALL1(GetPixelFormat,p,a)
2015 #define IDirectDrawSurface7_GetSurfaceDesc(p,a)          ICOM_CALL1(GetSurfaceDesc,p,a)
2016 #define IDirectDrawSurface7_Initialize(p,a,b)            ICOM_CALL2(Initialize,p,a,b)
2017 #define IDirectDrawSurface7_IsLost(p)                    ICOM_CALL (IsLost,p)
2018 #define IDirectDrawSurface7_Lock(p,a,b,c,d)              ICOM_CALL4(Lock,p,a,b,c,d)
2019 #define IDirectDrawSurface7_ReleaseDC(p,a)               ICOM_CALL1(ReleaseDC,p,a)
2020 #define IDirectDrawSurface7_Restore(p)                   ICOM_CALL (Restore,p)
2021 #define IDirectDrawSurface7_SetClipper(p,a)              ICOM_CALL1(SetClipper,p,a)
2022 #define IDirectDrawSurface7_SetColorKey(p,a,b)           ICOM_CALL2(SetColorKey,p,a,b)
2023 #define IDirectDrawSurface7_SetOverlayPosition(p,a,b)    ICOM_CALL2(SetOverlayPosition,p,a,b)
2024 #define IDirectDrawSurface7_SetPalette(p,a)              ICOM_CALL1(SetPalette,p,a)
2025 #define IDirectDrawSurface7_Unlock(p,a)                  ICOM_CALL1(Unlock,p,a)
2026 #define IDirectDrawSurface7_UpdateOverlay(p,a,b,c,d,e)   ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
2027 #define IDirectDrawSurface7_UpdateOverlayDisplay(p,a)    ICOM_CALL1(UpdateOverlayDisplay,p,a)
2028 #define IDirectDrawSurface7_UpdateOverlayZOrder(p,a,b)   ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
2029 /*** IDirectDrawSurface2 methods ***/
2030 #define IDirectDrawSurface7_GetDDInterface(p,a) ICOM_CALL1(GetDDInterface,p,a)
2031 #define IDirectDrawSurface7_PageLock(p,a)       ICOM_CALL1(PageLock,p,a)
2032 #define IDirectDrawSurface7_PageUnlock(p,a)     ICOM_CALL1(PageUnlock,p,a)
2033 /*** IDirectDrawSurface3 methods ***/
2034 #define IDirectDrawSurface7_SetSurfaceDesc(p,a,b) ICOM_CALL2(SetSurfaceDesc,p,a,b)
2035 /*** IDirectDrawSurface4 methods ***/
2036 #define IDirectDrawSurface7_SetPrivateData(p,a,b,c,d) ICOM_CALL4(SetPrivateData,p,a,b,c,d)
2037 #define IDirectDrawSurface7_GetPrivateData(p,a,b,c)   ICOM_CALL3(GetPrivateData,p,a,b,c)
2038 #define IDirectDrawSurface7_FreePrivateData(p,a)      ICOM_CALL1(FreePrivateData,p,a)
2039 #define IDirectDrawSurface7_GetUniquenessValue(p,a)   ICOM_CALL1(GetUniquenessValue,p,a)
2040 #define IDirectDrawSurface7_ChangeUniquenessValue(p)  ICOM_CALL (ChangeUniquenessValue,p)
2041 /*** IDirectDrawSurface7 methods ***/
2042 #define IDirectDrawSurface7_SetPriority(p,a)          ICOM_CALL1(SetPriority,p,a)
2043 #define IDirectDrawSurface7_GetPriority(p,a)          ICOM_CALL1(GetPriority,p,a)
2044 #define IDirectDrawSurface7_SetLOD(p,a)               ICOM_CALL1(SetLOD,p,a)
2045 #define IDirectDrawSurface7_GetLOD(p,a)               ICOM_CALL1(GetLOD,p,a)
2046
2047 /*****************************************************************************
2048  * IDirectDrawColorControl interface
2049  */
2050 #define ICOM_INTERFACE IDirectDrawColorControl
2051 #define IDirectDrawColorControl_METHODS \
2052     ICOM_METHOD1(HRESULT,GetColorControls, LPDDCOLORCONTROL,lpColorControl) \
2053     ICOM_METHOD1(HRESULT,SetColorControls, LPDDCOLORCONTROL,lpColorControl)
2054 #define IDirectDrawColorControl_IMETHODS \
2055     IUnknown_IMETHODS \
2056     IDirectDrawColorControl_METHODS
2057 ICOM_DEFINE(IDirectDrawColorControl,IUnknown)
2058 #undef ICOM_INTERFACE
2059
2060         /*** IUnknown methods ***/
2061 #define IDirectDrawColorControl_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
2062 #define IDirectDrawColorControl_AddRef(p)             ICOM_CALL (AddRef,p)
2063 #define IDirectDrawColorControl_Release(p)            ICOM_CALL (Release,p)
2064         /*** IDirectDrawColorControl methods ***/
2065 #define IDirectDrawColorControl_GetColorControls(p,a) ICOM_CALL(GetColorControls,p,a)
2066 #define IDirectDrawColorControl_SetColorControls(p,a) ICOM_CALL(SetColorControls,p,a)
2067
2068 /*****************************************************************************
2069  * IDirectDrawGammaControl interface
2070  */
2071 #define ICOM_INTERFACE IDirectDrawGammaControl
2072 #define IDirectDrawGammaControl_METHODS \
2073     ICOM_METHOD2(HRESULT,GetGammaRamp, DWORD,dwFlags, LPDDGAMMARAMP,lpGammaRamp) \
2074     ICOM_METHOD2(HRESULT,SetGammaRamp, DWORD,dwFlags, LPDDGAMMARAMP,lpGammaRamp)
2075 #define IDirectDrawGammaControl_IMETHODS \
2076     IUnknown_IMETHODS \
2077     IDirectDrawGammaControl_METHODS
2078 ICOM_DEFINE(IDirectDrawGammaControl,IUnknown)
2079 #undef ICOM_INTERFACE
2080
2081         /*** IUnknown methods ***/
2082 #define IDirectDrawGammaControl_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
2083 #define IDirectDrawGammaControl_AddRef(p)             ICOM_CALL (AddRef,p)
2084 #define IDirectDrawGammaControl_Release(p)            ICOM_CALL (Release,p)
2085         /*** IDirectDrawGammaControl methods ***/
2086 #define IDirectDrawGammaControl_GetGammaRamp(p,a,b)   ICOM_CALL(GetGammaRamp,p,a,b)
2087 #define IDirectDrawGammaControl_SetGammaRamp(p,a,b)   ICOM_CALL(SetGammaRamp,p,a,b)
2088
2089
2090 HRESULT WINAPI DirectDrawCreate(LPGUID,LPDIRECTDRAW*,LPUNKNOWN);
2091 HRESULT WINAPI DirectDrawCreateEx(LPGUID,LPVOID*,REFIID,LPUNKNOWN);
2092 HRESULT WINAPI DirectDrawEnumerateA(LPDDENUMCALLBACKA,LPVOID);
2093 HRESULT WINAPI DirectDrawEnumerateW(LPDDENUMCALLBACKW,LPVOID);
2094 #define DirectDrawEnumerate WINELIB_NAME_AW(DirectDrawEnumerate)
2095 HRESULT WINAPI DirectDrawCreateClipper(DWORD,LPDIRECTDRAWCLIPPER*,LPUNKNOWN);
2096
2097 #ifdef __cplusplus
2098 } /* extern "C" */
2099 #endif /* defined(__cplusplus) */
2100
2101 #endif /* __WINE_DDRAW_H */