user: Added fast W->A mapping for WM_GETTEXT and WM_ASKCBFORNAME.
[wine/multimedia.git] / include / ddraw.h
blobb06a720092aacb81edc130bb4c3ea06ecd66b5ac
1 /*
2 * Copyright (C) the Wine project
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.
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.
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
19 #ifndef __WINE_DDRAW_H
20 #define __WINE_DDRAW_H
22 #include <objbase.h>
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* defined(__cplusplus) */
28 #ifndef DIRECTDRAW_VERSION
29 #define DIRECTDRAW_VERSION 0x0700
30 #endif /* DIRECTDRAW_VERSION */
32 /*****************************************************************************
33 * Predeclare the interfaces
35 #ifndef __DDRAW_GUID_DEFINED__
36 DEFINE_GUID( CLSID_DirectDraw, 0xD7B70EE0,0x4340,0x11CF,0xB0,0x63,0x00,0x20,0xAF,0xC2,0xCD,0x35 );
37 DEFINE_GUID( CLSID_DirectDraw7, 0x3C305196,0x50DB,0x11D3,0x9C,0xFE,0x00,0xC0,0x4F,0xD9,0x30,0xC5 );
38 DEFINE_GUID( CLSID_DirectDrawClipper, 0x593817A0,0x7DB3,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xb9,0x33,0x56 );
39 DEFINE_GUID( IID_IDirectDraw, 0x6C14DB80,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
40 DEFINE_GUID( IID_IDirectDraw2, 0xB3A6F3E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 );
41 DEFINE_GUID( IID_IDirectDraw4, 0x9c59509a,0x39bd,0x11d1,0x8c,0x4a,0x00,0xc0,0x4f,0xd9,0x30,0xc5 );
42 DEFINE_GUID( IID_IDirectDraw7, 0x15e65ec0,0x3b9c,0x11d2,0xb9,0x2f,0x00,0x60,0x97,0x97,0xea,0x5b );
43 DEFINE_GUID( IID_IDirectDrawSurface, 0x6C14DB81,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
44 DEFINE_GUID( IID_IDirectDrawSurface2, 0x57805885,0x6eec,0x11cf,0x94,0x41,0xa8,0x23,0x03,0xc1,0x0e,0x27 );
45 DEFINE_GUID( IID_IDirectDrawSurface3, 0xDA044E00,0x69B2,0x11D0,0xA1,0xD5,0x00,0xAA,0x00,0xB8,0xDF,0xBB );
46 DEFINE_GUID( IID_IDirectDrawSurface4, 0x0B2B8630,0xAD35,0x11D0,0x8E,0xA6,0x00,0x60,0x97,0x97,0xEA,0x5B );
47 DEFINE_GUID( IID_IDirectDrawSurface7, 0x06675a80,0x3b9b,0x11d2,0xb9,0x2f,0x00,0x60,0x97,0x97,0xea,0x5b );
48 DEFINE_GUID( IID_IDirectDrawPalette, 0x6C14DB84,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
49 DEFINE_GUID( IID_IDirectDrawClipper, 0x6C14DB85,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
50 DEFINE_GUID( IID_IDirectDrawColorControl,0x4B9F0EE0,0x0D7E,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8 );
51 DEFINE_GUID( IID_IDirectDrawGammaControl,0x69C11C3E,0xB46B,0x11D1,0xAD,0x7A,0x00,0xC0,0x4F,0xC2,0x9B,0x4E );
52 #endif
54 typedef struct IDirectDraw *LPDIRECTDRAW;
55 typedef struct IDirectDraw2 *LPDIRECTDRAW2;
56 typedef struct IDirectDraw4 *LPDIRECTDRAW4;
57 typedef struct IDirectDraw7 *LPDIRECTDRAW7;
58 typedef struct IDirectDrawClipper *LPDIRECTDRAWCLIPPER;
59 typedef struct IDirectDrawPalette *LPDIRECTDRAWPALETTE;
60 typedef struct IDirectDrawSurface *LPDIRECTDRAWSURFACE;
61 typedef struct IDirectDrawSurface2 *LPDIRECTDRAWSURFACE2;
62 typedef struct IDirectDrawSurface3 *LPDIRECTDRAWSURFACE3;
63 typedef struct IDirectDrawSurface4 *LPDIRECTDRAWSURFACE4;
64 typedef struct IDirectDrawSurface7 *LPDIRECTDRAWSURFACE7;
65 typedef struct IDirectDrawColorControl *LPDIRECTDRAWCOLORCONTROL;
66 typedef struct IDirectDrawGammaControl *LPDIRECTDRAWGAMMACONTROL;
69 #define DDENUMRET_CANCEL 0
70 #define DDENUMRET_OK 1
72 #define DD_OK 0
75 #define _FACDD 0x876
76 #define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code )
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
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
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
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
242 /* dwFlags for GetBltStatus */
243 #define DDGBS_CANBLT 0x00000001
244 #define DDGBS_ISBLTDONE 0x00000002
246 /* dwFlags for IDirectDrawSurface7::GetFlipStatus */
247 #define DDGFS_CANFLIP 1L
248 #define DDGFS_ISFLIPDONE 2L
250 /* dwFlags for IDirectDrawSurface7::SetPrivateData */
251 #define DDSPD_IUNKNOWNPTR 1L
252 #define DDSPD_VOLATILE 2L
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
315 typedef struct _DDSCAPS {
316 DWORD dwCaps; /* capabilities of surface wanted */
317 } DDSCAPS,*LPDDSCAPS;
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
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;
368 #define DD_ROP_SPACE (256/32) /* space required to store ROP array */
370 typedef struct _DDCAPS_DX7 /* DirectX 7 version of caps struct */
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 - superseded 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;
431 typedef struct _DDCAPS_DX6 /* DirectX 6 version of caps struct */
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 - superseded 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;
493 typedef struct _DDCAPS_DX5 /* DirectX5 version of caps struct */
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;
554 typedef struct _DDCAPS_DX3 /* DirectX3 version of caps struct */
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;
609 /* set caps struct according to DIRECTDRAW_VERSION */
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
621 typedef DDCAPS *LPDDCAPS;
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
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
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 */
692 typedef struct _DDCOLORKEY
694 DWORD dwColorSpaceLowValue;/* low boundary of color space that is to
695 * be treated as Color Key, inclusive
697 DWORD dwColorSpaceHighValue;/* high boundary of color space that is
698 * to be treated as Color Key, inclusive
700 } DDCOLORKEY,*LPDDCOLORKEY;
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
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;
764 #define MAKEFOURCC(ch0, ch1, ch2, ch3) \
765 ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | \
766 ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24 ))
768 /* DDCAPS.dwFXCaps */
769 #define DDFXCAPS_BLTALPHA 0x00000001
770 #define DDFXCAPS_OVERLAYALPHA 0x00000004
771 #define DDFXCAPS_BLTARITHSTRETCHYN 0x00000010
772 #define DDFXCAPS_BLTARITHSTRETCHY 0x00000020
773 #define DDFXCAPS_BLTMIRRORLEFTRIGHT 0x00000040
774 #define DDFXCAPS_BLTMIRRORUPDOWN 0x00000080
775 #define DDFXCAPS_BLTROTATION 0x00000100
776 #define DDFXCAPS_BLTROTATION90 0x00000200
777 #define DDFXCAPS_BLTSHRINKX 0x00000400
778 #define DDFXCAPS_BLTSHRINKXN 0x00000800
779 #define DDFXCAPS_BLTSHRINKY 0x00001000
780 #define DDFXCAPS_BLTSHRINKYN 0x00002000
781 #define DDFXCAPS_BLTSTRETCHX 0x00004000
782 #define DDFXCAPS_BLTSTRETCHXN 0x00008000
783 #define DDFXCAPS_BLTSTRETCHY 0x00010000
784 #define DDFXCAPS_BLTSTRETCHYN 0x00020000
785 #define DDFXCAPS_OVERLAYARITHSTRETCHY 0x00040000
786 #define DDFXCAPS_OVERLAYARITHSTRETCHYN 0x00000008
787 #define DDFXCAPS_OVERLAYSHRINKX 0x00080000
788 #define DDFXCAPS_OVERLAYSHRINKXN 0x00100000
789 #define DDFXCAPS_OVERLAYSHRINKY 0x00200000
790 #define DDFXCAPS_OVERLAYSHRINKYN 0x00400000
791 #define DDFXCAPS_OVERLAYSTRETCHX 0x00800000
792 #define DDFXCAPS_OVERLAYSTRETCHXN 0x01000000
793 #define DDFXCAPS_OVERLAYSTRETCHY 0x02000000
794 #define DDFXCAPS_OVERLAYSTRETCHYN 0x04000000
795 #define DDFXCAPS_OVERLAYMIRRORLEFTRIGHT 0x08000000
796 #define DDFXCAPS_OVERLAYMIRRORUPDOWN 0x10000000
798 #define DDFXCAPS_OVERLAYFILTER DDFXCAPS_OVERLAYARITHSTRETCHY
800 /* DDCAPS.dwFXAlphaCaps */
801 #define DDFXALPHACAPS_BLTALPHAEDGEBLEND 0x00000001
802 #define DDFXALPHACAPS_BLTALPHAPIXELS 0x00000002
803 #define DDFXALPHACAPS_BLTALPHAPIXELSNEG 0x00000004
804 #define DDFXALPHACAPS_BLTALPHASURFACES 0x00000008
805 #define DDFXALPHACAPS_BLTALPHASURFACESNEG 0x00000010
806 #define DDFXALPHACAPS_OVERLAYALPHAEDGEBLEND 0x00000020
807 #define DDFXALPHACAPS_OVERLAYALPHAPIXELS 0x00000040
808 #define DDFXALPHACAPS_OVERLAYALPHAPIXELSNEG 0x00000080
809 #define DDFXALPHACAPS_OVERLAYALPHASURFACES 0x00000100
810 #define DDFXALPHACAPS_OVERLAYALPHASURFACESNEG 0x00000200
812 /* DDCAPS.dwPalCaps */
813 #define DDPCAPS_4BIT 0x00000001
814 #define DDPCAPS_8BITENTRIES 0x00000002
815 #define DDPCAPS_8BIT 0x00000004
816 #define DDPCAPS_INITIALIZE 0x00000008
817 #define DDPCAPS_PRIMARYSURFACE 0x00000010
818 #define DDPCAPS_PRIMARYSURFACELEFT 0x00000020
819 #define DDPCAPS_ALLOW256 0x00000040
820 #define DDPCAPS_VSYNC 0x00000080
821 #define DDPCAPS_1BIT 0x00000100
822 #define DDPCAPS_2BIT 0x00000200
823 #define DDPCAPS_ALPHA 0x00000400
825 /* DDCAPS.dwSVCaps */
826 /* the first 4 of these are now obsolete */
827 #if DIRECTDRAW_VERSION >= 0x700 /* FIXME: I'm not sure when this switch occurred */
828 #define DDSVCAPS_RESERVED1 0x00000001
829 #define DDSVCAPS_RESERVED2 0x00000002
830 #define DDSVCAPS_RESERVED3 0x00000004
831 #define DDSVCAPS_RESERVED4 0x00000008
832 #else
833 #define DDSVCAPS_ENIGMA 0x00000001
834 #define DDSVCAPS_FLICKER 0x00000002
835 #define DDSVCAPS_REDBLUE 0x00000004
836 #define DDSVCAPS_SPLIT 0x00000008
837 #endif
838 #define DDSVCAPS_STEREOSEQUENTIAL 0x00000010
840 /* BitDepths */
841 #define DDBD_1 0x00004000
842 #define DDBD_2 0x00002000
843 #define DDBD_4 0x00001000
844 #define DDBD_8 0x00000800
845 #define DDBD_16 0x00000400
846 #define DDBD_24 0x00000200
847 #define DDBD_32 0x00000100
849 /* DDOVERLAYFX.dwDDFX */
850 #define DDOVERFX_ARITHSTRETCHY 0x00000001
851 #define DDOVERFX_MIRRORLEFTRIGHT 0x00000002
852 #define DDOVERFX_MIRRORUPDOWN 0x00000004
854 /* UpdateOverlay flags */
855 #define DDOVER_ALPHADEST 0x00000001
856 #define DDOVER_ALPHADESTCONSTOVERRIDE 0x00000002
857 #define DDOVER_ALPHADESTNEG 0x00000004
858 #define DDOVER_ALPHADESTSURFACEOVERRIDE 0x00000008
859 #define DDOVER_ALPHAEDGEBLEND 0x00000010
860 #define DDOVER_ALPHASRC 0x00000020
861 #define DDOVER_ALPHASRCCONSTOVERRIDE 0x00000040
862 #define DDOVER_ALPHASRCNEG 0x00000080
863 #define DDOVER_ALPHASRCSURFACEOVERRIDE 0x00000100
864 #define DDOVER_HIDE 0x00000200
865 #define DDOVER_KEYDEST 0x00000400
866 #define DDOVER_KEYDESTOVERRIDE 0x00000800
867 #define DDOVER_KEYSRC 0x00001000
868 #define DDOVER_KEYSRCOVERRIDE 0x00002000
869 #define DDOVER_SHOW 0x00004000
870 #define DDOVER_ADDDIRTYRECT 0x00008000
871 #define DDOVER_REFRESHDIRTYRECTS 0x00010000
872 #define DDOVER_REFRESHALL 0x00020000
873 #define DDOVER_DDFX 0x00080000
874 #define DDOVER_AUTOFLIP 0x00100000
875 #define DDOVER_BOB 0x00200000
876 #define DDOVER_OVERRIDEBOBWEAVE 0x00400000
877 #define DDOVER_INTERLEAVED 0x00800000
879 /* DDCOLORKEY.dwFlags */
880 #define DDPF_ALPHAPIXELS 0x00000001
881 #define DDPF_ALPHA 0x00000002
882 #define DDPF_FOURCC 0x00000004
883 #define DDPF_PALETTEINDEXED4 0x00000008
884 #define DDPF_PALETTEINDEXEDTO8 0x00000010
885 #define DDPF_PALETTEINDEXED8 0x00000020
886 #define DDPF_RGB 0x00000040
887 #define DDPF_COMPRESSED 0x00000080
888 #define DDPF_RGBTOYUV 0x00000100
889 #define DDPF_YUV 0x00000200
890 #define DDPF_ZBUFFER 0x00000400
891 #define DDPF_PALETTEINDEXED1 0x00000800
892 #define DDPF_PALETTEINDEXED2 0x00001000
893 #define DDPF_ZPIXELS 0x00002000
894 #define DDPF_STENCILBUFFER 0x00004000
895 #define DDPF_ALPHAPREMULT 0x00008000
896 #define DDPF_LUMINANCE 0x00020000
897 #define DDPF_BUMPLUMINANCE 0x00040000
898 #define DDPF_BUMPDUDV 0x00080000
900 /* SetCooperativeLevel dwFlags */
901 #define DDSCL_FULLSCREEN 0x00000001
902 #define DDSCL_ALLOWREBOOT 0x00000002
903 #define DDSCL_NOWINDOWCHANGES 0x00000004
904 #define DDSCL_NORMAL 0x00000008
905 #define DDSCL_EXCLUSIVE 0x00000010
906 #define DDSCL_ALLOWMODEX 0x00000040
907 #define DDSCL_SETFOCUSWINDOW 0x00000080
908 #define DDSCL_SETDEVICEWINDOW 0x00000100
909 #define DDSCL_CREATEDEVICEWINDOW 0x00000200
910 #define DDSCL_MULTITHREADED 0x00000400
911 #define DDSCL_FPUSETUP 0x00000800
912 #define DDSCL_FPUPRESERVE 0x00001000
915 /* DDSURFACEDESC.dwFlags */
916 #define DDSD_CAPS 0x00000001
917 #define DDSD_HEIGHT 0x00000002
918 #define DDSD_WIDTH 0x00000004
919 #define DDSD_PITCH 0x00000008
920 #define DDSD_BACKBUFFERCOUNT 0x00000020
921 #define DDSD_ZBUFFERBITDEPTH 0x00000040
922 #define DDSD_ALPHABITDEPTH 0x00000080
923 #define DDSD_LPSURFACE 0x00000800
924 #define DDSD_PIXELFORMAT 0x00001000
925 #define DDSD_CKDESTOVERLAY 0x00002000
926 #define DDSD_CKDESTBLT 0x00004000
927 #define DDSD_CKSRCOVERLAY 0x00008000
928 #define DDSD_CKSRCBLT 0x00010000
929 #define DDSD_MIPMAPCOUNT 0x00020000
930 #define DDSD_REFRESHRATE 0x00040000
931 #define DDSD_LINEARSIZE 0x00080000
932 #define DDSD_TEXTURESTAGE 0x00100000
933 #define DDSD_FVF 0x00200000
934 #define DDSD_SRCVBHANDLE 0x00400000
935 #define DDSD_ALL 0x007ff9ee
937 /* EnumSurfaces flags */
938 #define DDENUMSURFACES_ALL 0x00000001
939 #define DDENUMSURFACES_MATCH 0x00000002
940 #define DDENUMSURFACES_NOMATCH 0x00000004
941 #define DDENUMSURFACES_CANBECREATED 0x00000008
942 #define DDENUMSURFACES_DOESEXIST 0x00000010
944 /* SetDisplayMode flags */
945 #define DDSDM_STANDARDVGAMODE 0x00000001
947 /* EnumDisplayModes flags */
948 #define DDEDM_REFRESHRATES 0x00000001
949 #define DDEDM_STANDARDVGAMODES 0x00000002
951 /* WaitForVerticalDisplay flags */
953 #define DDWAITVB_BLOCKBEGIN 0x00000001
954 #define DDWAITVB_BLOCKBEGINEVENT 0x00000002
955 #define DDWAITVB_BLOCKEND 0x00000004
957 typedef struct _DDSURFACEDESC
959 DWORD dwSize; /* 0: size of the DDSURFACEDESC structure*/
960 DWORD dwFlags; /* 4: determines what fields are valid*/
961 DWORD dwHeight; /* 8: height of surface to be created*/
962 DWORD dwWidth; /* C: width of input surface*/
963 union {
964 LONG lPitch; /* 10: distance to start of next line (return value only)*/
965 DWORD dwLinearSize;
966 } DUMMYUNIONNAME1;
967 DWORD dwBackBufferCount;/* 14: number of back buffers requested*/
968 union {
969 DWORD dwMipMapCount;/* 18:number of mip-map levels requested*/
970 DWORD dwZBufferBitDepth;/*18: depth of Z buffer requested*/
971 DWORD dwRefreshRate;/* 18:refresh rate (used when display mode is described)*/
972 } DUMMYUNIONNAME2;
973 DWORD dwAlphaBitDepth;/* 1C:depth of alpha buffer requested*/
974 DWORD dwReserved; /* 20:reserved*/
975 LPVOID lpSurface; /* 24:pointer to the associated surface memory*/
976 DDCOLORKEY ddckCKDestOverlay;/* 28: CK for dest overlay use*/
977 DDCOLORKEY ddckCKDestBlt; /* 30: CK for destination blt use*/
978 DDCOLORKEY ddckCKSrcOverlay;/* 38: CK for source overlay use*/
979 DDCOLORKEY ddckCKSrcBlt; /* 40: CK for source blt use*/
980 DDPIXELFORMAT ddpfPixelFormat;/* 48: pixel format description of the surface*/
981 DDSCAPS ddsCaps; /* 68: direct draw surface caps */
982 } DDSURFACEDESC,*LPDDSURFACEDESC;
984 typedef struct _DDSURFACEDESC2
986 DWORD dwSize; /* 0: size of the DDSURFACEDESC2 structure*/
987 DWORD dwFlags; /* 4: determines what fields are valid*/
988 DWORD dwHeight; /* 8: height of surface to be created*/
989 DWORD dwWidth; /* C: width of input surface*/
990 union {
991 LONG lPitch; /*10: distance to start of next line (return value only)*/
992 DWORD dwLinearSize; /*10: formless late-allocated optimized surface size */
993 } DUMMYUNIONNAME1;
994 DWORD dwBackBufferCount;/* 14: number of back buffers requested*/
995 union {
996 DWORD dwMipMapCount;/* 18:number of mip-map levels requested*/
997 DWORD dwRefreshRate;/* 18:refresh rate (used when display mode is described)*/
998 DWORD dwSrcVBHandle;/* 18:source used in VB::Optimize */
999 } DUMMYUNIONNAME2;
1000 DWORD dwAlphaBitDepth;/* 1C:depth of alpha buffer requested*/
1001 DWORD dwReserved; /* 20:reserved*/
1002 LPVOID lpSurface; /* 24:pointer to the associated surface memory*/
1003 union {
1004 DDCOLORKEY ddckCKDestOverlay; /* 28: CK for dest overlay use*/
1005 DWORD dwEmptyFaceColor; /* 28: color for empty cubemap faces */
1006 } DUMMYUNIONNAME3;
1007 DDCOLORKEY ddckCKDestBlt; /* 30: CK for destination blt use*/
1008 DDCOLORKEY ddckCKSrcOverlay;/* 38: CK for source overlay use*/
1009 DDCOLORKEY ddckCKSrcBlt; /* 40: CK for source blt use*/
1011 union {
1012 DDPIXELFORMAT ddpfPixelFormat;/* 48: pixel format description of the surface*/
1013 DWORD dwFVF; /* 48: vertex format description of vertex buffers */
1014 } DUMMYUNIONNAME4;
1015 DDSCAPS2 ddsCaps; /* 68: DDraw surface caps */
1016 DWORD dwTextureStage; /* 78: stage in multitexture cascade */
1017 } DDSURFACEDESC2,*LPDDSURFACEDESC2;
1019 /* DDCOLORCONTROL.dwFlags */
1020 #define DDCOLOR_BRIGHTNESS 0x00000001
1021 #define DDCOLOR_CONTRAST 0x00000002
1022 #define DDCOLOR_HUE 0x00000004
1023 #define DDCOLOR_SATURATION 0x00000008
1024 #define DDCOLOR_SHARPNESS 0x00000010
1025 #define DDCOLOR_GAMMA 0x00000020
1026 #define DDCOLOR_COLORENABLE 0x00000040
1028 typedef struct {
1029 DWORD dwSize;
1030 DWORD dwFlags;
1031 LONG lBrightness;
1032 LONG lContrast;
1033 LONG lHue;
1034 LONG lSaturation;
1035 LONG lSharpness;
1036 LONG lGamma;
1037 LONG lColorEnable;
1038 DWORD dwReserved1;
1039 } DDCOLORCONTROL,*LPDDCOLORCONTROL;
1041 typedef struct {
1042 WORD red[256];
1043 WORD green[256];
1044 WORD blue[256];
1045 } DDGAMMARAMP,*LPDDGAMMARAMP;
1047 typedef BOOL (CALLBACK *LPDDENUMCALLBACKA)(GUID *, LPSTR, LPSTR, LPVOID);
1048 typedef BOOL (CALLBACK *LPDDENUMCALLBACKW)(GUID *, LPWSTR, LPWSTR, LPVOID);
1049 DECL_WINELIB_TYPE_AW(LPDDENUMCALLBACK)
1051 typedef HRESULT (CALLBACK *LPDDENUMMODESCALLBACK)(LPDDSURFACEDESC, LPVOID);
1052 typedef HRESULT (CALLBACK *LPDDENUMMODESCALLBACK2)(LPDDSURFACEDESC2, LPVOID);
1053 typedef HRESULT (CALLBACK *LPDDENUMSURFACESCALLBACK)(LPDIRECTDRAWSURFACE, LPDDSURFACEDESC, LPVOID);
1054 typedef HRESULT (CALLBACK *LPDDENUMSURFACESCALLBACK2)(LPDIRECTDRAWSURFACE4, LPDDSURFACEDESC2, LPVOID);
1055 typedef HRESULT (CALLBACK *LPDDENUMSURFACESCALLBACK7)(LPDIRECTDRAWSURFACE7, LPDDSURFACEDESC2, LPVOID);
1057 typedef BOOL (CALLBACK *LPDDENUMCALLBACKEXA)(GUID *, LPSTR, LPSTR, LPVOID, HMONITOR);
1058 typedef BOOL (CALLBACK *LPDDENUMCALLBACKEXW)(GUID *, LPWSTR, LPWSTR, LPVOID, HMONITOR);
1059 DECL_WINELIB_TYPE_AW(LPDDENUMCALLBACKEX)
1061 HRESULT WINAPI DirectDrawEnumerateExA( LPDDENUMCALLBACKEXA lpCallback, LPVOID lpContext, DWORD dwFlags);
1062 HRESULT WINAPI DirectDrawEnumerateExW( LPDDENUMCALLBACKEXW lpCallback, LPVOID lpContext, DWORD dwFlags);
1063 #define DirectDrawEnumerateEx WINELIB_NAME_AW(DirectDrawEnumerateEx)
1065 typedef HRESULT (WINAPI * LPDIRECTDRAWENUMERATEEXA)( LPDDENUMCALLBACKEXA lpCallback, LPVOID lpContext, DWORD dwFlags);
1066 typedef HRESULT (WINAPI * LPDIRECTDRAWENUMERATEEXW)( LPDDENUMCALLBACKEXW lpCallback, LPVOID lpContext, DWORD dwFlags);
1067 DECL_WINELIB_TYPE_AW(LPDIRECTDRAWENUMERATEEX)
1069 /* flags for DirectDrawEnumerateEx */
1070 #define DDENUM_ATTACHEDSECONDARYDEVICES 0x00000001
1071 #define DDENUM_DETACHEDSECONDARYDEVICES 0x00000002
1072 #define DDENUM_NONDISPLAYDEVICES 0x00000004
1074 /* flags for DirectDrawCreate or IDirectDraw::Initialize */
1075 #define DDCREATE_HARDWAREONLY 1L
1076 #define DDCREATE_EMULATIONONLY 2L
1078 typedef struct _DDBLTFX
1080 DWORD dwSize; /* size of structure */
1081 DWORD dwDDFX; /* FX operations */
1082 DWORD dwROP; /* Win32 raster operations */
1083 DWORD dwDDROP; /* Raster operations new for DirectDraw */
1084 DWORD dwRotationAngle; /* Rotation angle for blt */
1085 DWORD dwZBufferOpCode; /* ZBuffer compares */
1086 DWORD dwZBufferLow; /* Low limit of Z buffer */
1087 DWORD dwZBufferHigh; /* High limit of Z buffer */
1088 DWORD dwZBufferBaseDest; /* Destination base value */
1089 DWORD dwZDestConstBitDepth; /* Bit depth used to specify Z constant for destination */
1090 union
1092 DWORD dwZDestConst; /* Constant to use as Z buffer for dest */
1093 LPDIRECTDRAWSURFACE lpDDSZBufferDest; /* Surface to use as Z buffer for dest */
1094 } DUMMYUNIONNAME1;
1095 DWORD dwZSrcConstBitDepth; /* Bit depth used to specify Z constant for source */
1096 union
1098 DWORD dwZSrcConst; /* Constant to use as Z buffer for src */
1099 LPDIRECTDRAWSURFACE lpDDSZBufferSrc; /* Surface to use as Z buffer for src */
1100 } DUMMYUNIONNAME2;
1101 DWORD dwAlphaEdgeBlendBitDepth; /* Bit depth used to specify constant for alpha edge blend */
1102 DWORD dwAlphaEdgeBlend; /* Alpha for edge blending */
1103 DWORD dwReserved;
1104 DWORD dwAlphaDestConstBitDepth; /* Bit depth used to specify alpha constant for destination */
1105 union
1107 DWORD dwAlphaDestConst; /* Constant to use as Alpha Channel */
1108 LPDIRECTDRAWSURFACE lpDDSAlphaDest; /* Surface to use as Alpha Channel */
1109 } DUMMYUNIONNAME3;
1110 DWORD dwAlphaSrcConstBitDepth; /* Bit depth used to specify alpha constant for source */
1111 union
1113 DWORD dwAlphaSrcConst; /* Constant to use as Alpha Channel */
1114 LPDIRECTDRAWSURFACE lpDDSAlphaSrc; /* Surface to use as Alpha Channel */
1115 } DUMMYUNIONNAME4;
1116 union
1118 DWORD dwFillColor; /* color in RGB or Palettized */
1119 DWORD dwFillDepth; /* depth value for z-buffer */
1120 DWORD dwFillPixel; /* pixel val for RGBA or RGBZ */
1121 LPDIRECTDRAWSURFACE lpDDSPattern; /* Surface to use as pattern */
1122 } DUMMYUNIONNAME5;
1123 DDCOLORKEY ddckDestColorkey; /* DestColorkey override */
1124 DDCOLORKEY ddckSrcColorkey; /* SrcColorkey override */
1125 } DDBLTFX,*LPDDBLTFX;
1127 /* dwDDFX */
1128 /* arithmetic stretching along y axis */
1129 #define DDBLTFX_ARITHSTRETCHY 0x00000001
1130 /* mirror on y axis */
1131 #define DDBLTFX_MIRRORLEFTRIGHT 0x00000002
1132 /* mirror on x axis */
1133 #define DDBLTFX_MIRRORUPDOWN 0x00000004
1134 /* do not tear */
1135 #define DDBLTFX_NOTEARING 0x00000008
1136 /* 180 degrees clockwise rotation */
1137 #define DDBLTFX_ROTATE180 0x00000010
1138 /* 270 degrees clockwise rotation */
1139 #define DDBLTFX_ROTATE270 0x00000020
1140 /* 90 degrees clockwise rotation */
1141 #define DDBLTFX_ROTATE90 0x00000040
1142 /* dwZBufferLow and dwZBufferHigh specify limits to the copied Z values */
1143 #define DDBLTFX_ZBUFFERRANGE 0x00000080
1144 /* add dwZBufferBaseDest to every source z value before compare */
1145 #define DDBLTFX_ZBUFFERBASEDEST 0x00000100
1147 typedef struct _DDOVERLAYFX
1149 DWORD dwSize; /* size of structure */
1150 DWORD dwAlphaEdgeBlendBitDepth; /* Bit depth used to specify constant for alpha edge blend */
1151 DWORD dwAlphaEdgeBlend; /* Constant to use as alpha for edge blend */
1152 DWORD dwReserved;
1153 DWORD dwAlphaDestConstBitDepth; /* Bit depth used to specify alpha constant for destination */
1154 union
1156 DWORD dwAlphaDestConst; /* Constant to use as alpha channel for dest */
1157 LPDIRECTDRAWSURFACE lpDDSAlphaDest; /* Surface to use as alpha channel for dest */
1158 } DUMMYUNIONNAME1;
1159 DWORD dwAlphaSrcConstBitDepth; /* Bit depth used to specify alpha constant for source */
1160 union
1162 DWORD dwAlphaSrcConst; /* Constant to use as alpha channel for src */
1163 LPDIRECTDRAWSURFACE lpDDSAlphaSrc; /* Surface to use as alpha channel for src */
1164 } DUMMYUNIONNAME2;
1165 DDCOLORKEY dckDestColorkey; /* DestColorkey override */
1166 DDCOLORKEY dckSrcColorkey; /* DestColorkey override */
1167 DWORD dwDDFX; /* Overlay FX */
1168 DWORD dwFlags; /* flags */
1169 } DDOVERLAYFX,*LPDDOVERLAYFX;
1171 typedef struct _DDBLTBATCH
1173 LPRECT lprDest;
1174 LPDIRECTDRAWSURFACE lpDDSSrc;
1175 LPRECT lprSrc;
1176 DWORD dwFlags;
1177 LPDDBLTFX lpDDBltFx;
1178 } DDBLTBATCH,*LPDDBLTBATCH;
1180 #define MAX_DDDEVICEID_STRING 512
1182 #define DDGDI_GETHOSTIDENTIFIER 1
1184 typedef struct tagDDDEVICEIDENTIFIER {
1185 char szDriver[MAX_DDDEVICEID_STRING];
1186 char szDescription[MAX_DDDEVICEID_STRING];
1187 LARGE_INTEGER liDriverVersion;
1188 DWORD dwVendorId;
1189 DWORD dwDeviceId;
1190 DWORD dwSubSysId;
1191 DWORD dwRevision;
1192 GUID guidDeviceIdentifier;
1193 } DDDEVICEIDENTIFIER, * LPDDDEVICEIDENTIFIER;
1195 typedef struct tagDDDEVICEIDENTIFIER2 {
1196 char szDriver[MAX_DDDEVICEID_STRING]; /* user readable driver name */
1197 char szDescription[MAX_DDDEVICEID_STRING]; /* user readable description */
1198 LARGE_INTEGER liDriverVersion; /* driver version */
1199 DWORD dwVendorId; /* vendor ID, zero if unknown */
1200 DWORD dwDeviceId; /* chipset ID, zero if unknown */
1201 DWORD dwSubSysId; /* board ID, zero if unknown */
1202 DWORD dwRevision; /* chipset version, zero if unknown */
1203 GUID guidDeviceIdentifier; /* unique ID for this driver/chipset combination */
1204 DWORD dwWHQLLevel; /* Windows Hardware Quality Lab certification level */
1205 } DDDEVICEIDENTIFIER2, * LPDDDEVICEIDENTIFIER2;
1207 /*****************************************************************************
1208 * IDirectDrawPalette interface
1210 #define INTERFACE IDirectDrawPalette
1211 DECLARE_INTERFACE_(IDirectDrawPalette,IUnknown)
1213 /*** IUnknown methods ***/
1214 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1215 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1216 STDMETHOD_(ULONG,Release)(THIS) PURE;
1217 /*** IDirectDrawPalette methods ***/
1218 STDMETHOD(GetCaps)(THIS_ LPDWORD lpdwCaps) PURE;
1219 STDMETHOD(GetEntries)(THIS_ DWORD dwFlags, DWORD dwBase, DWORD dwNumEntries, LPPALETTEENTRY lpEntries) PURE;
1220 STDMETHOD(Initialize)(THIS_ LPDIRECTDRAW lpDD, DWORD dwFlags, LPPALETTEENTRY lpDDColorTable) PURE;
1221 STDMETHOD(SetEntries)(THIS_ DWORD dwFlags, DWORD dwStartingEntry, DWORD dwCount, LPPALETTEENTRY lpEntries) PURE;
1223 #undef INTERFACE
1225 #if !defined(__cplusplus) || defined(CINTERFACE)
1226 /*** IUnknown methods ***/
1227 #define IDirectDrawPalette_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1228 #define IDirectDrawPalette_AddRef(p) (p)->lpVtbl->AddRef(p)
1229 #define IDirectDrawPalette_Release(p) (p)->lpVtbl->Release(p)
1230 /*** IDirectDrawPalette methods ***/
1231 #define IDirectDrawPalette_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a)
1232 #define IDirectDrawPalette_GetEntries(p,a,b,c,d) (p)->lpVtbl->GetEntries(p,a,b,c,d)
1233 #define IDirectDrawPalette_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c)
1234 #define IDirectDrawPalette_SetEntries(p,a,b,c,d) (p)->lpVtbl->SetEntries(p,a,b,c,d)
1235 #else
1236 /*** IUnknown methods ***/
1237 #define IDirectDrawPalette_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1238 #define IDirectDrawPalette_AddRef(p) (p)->AddRef()
1239 #define IDirectDrawPalette_Release(p) (p)->Release()
1240 /*** IDirectDrawPalette methods ***/
1241 #define IDirectDrawPalette_GetCaps(p,a) (p)->GetCaps(a)
1242 #define IDirectDrawPalette_GetEntries(p,a,b,c,d) (p)->GetEntries(a,b,c,d)
1243 #define IDirectDrawPalette_Initialize(p,a,b,c) (p)->Initialize(a,b,c)
1244 #define IDirectDrawPalette_SetEntries(p,a,b,c,d) (p)->SetEntries(a,b,c,d)
1245 #endif
1248 /*****************************************************************************
1249 * IDirectDrawClipper interface
1251 #define INTERFACE IDirectDrawClipper
1252 DECLARE_INTERFACE_(IDirectDrawClipper,IUnknown)
1254 /*** IUnknown methods ***/
1255 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1256 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1257 STDMETHOD_(ULONG,Release)(THIS) PURE;
1258 /*** IDirectDrawClipper methods ***/
1259 STDMETHOD(GetClipList)(THIS_ LPRECT lpRect, LPRGNDATA lpClipList, LPDWORD lpdwSize) PURE;
1260 STDMETHOD(GetHWnd)(THIS_ HWND *lphWnd) PURE;
1261 STDMETHOD(Initialize)(THIS_ LPDIRECTDRAW lpDD, DWORD dwFlags) PURE;
1262 STDMETHOD(IsClipListChanged)(THIS_ BOOL *lpbChanged) PURE;
1263 STDMETHOD(SetClipList)(THIS_ LPRGNDATA lpClipList, DWORD dwFlags) PURE;
1264 STDMETHOD(SetHWnd)(THIS_ DWORD dwFlags, HWND hWnd) PURE;
1266 #undef INTERFACE
1268 #if !defined(__cplusplus) || defined(CINTERFACE)
1269 /*** IUnknown methods ***/
1270 #define IDirectDrawClipper_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1271 #define IDirectDrawClipper_AddRef(p) (p)->lpVtbl->AddRef(p)
1272 #define IDirectDrawClipper_Release(p) (p)->lpVtbl->Release(p)
1273 /*** IDirectDrawClipper methods ***/
1274 #define IDirectDrawClipper_GetClipList(p,a,b,c) (p)->lpVtbl->GetClipList(p,a,b,c)
1275 #define IDirectDrawClipper_GetHWnd(p,a) (p)->lpVtbl->GetHWnd(p,a)
1276 #define IDirectDrawClipper_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b)
1277 #define IDirectDrawClipper_IsClipListChanged(p,a) (p)->lpVtbl->IsClipListChanged(p,a)
1278 #define IDirectDrawClipper_SetClipList(p,a,b) (p)->lpVtbl->SetClipList(p,a,b)
1279 #define IDirectDrawClipper_SetHWnd(p,a,b) (p)->lpVtbl->SetHWnd(p,a,b)
1280 #else
1281 /*** IUnknown methods ***/
1282 #define IDirectDrawClipper_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1283 #define IDirectDrawClipper_AddRef(p) (p)->AddRef()
1284 #define IDirectDrawClipper_Release(p) (p)->Release()
1285 /*** IDirectDrawClipper methods ***/
1286 #define IDirectDrawClipper_GetClipList(p,a,b,c) (p)->GetClipList(a,b,c)
1287 #define IDirectDrawClipper_GetHWnd(p,a) (p)->GetHWnd(a)
1288 #define IDirectDrawClipper_Initialize(p,a,b) (p)->Initialize(a,b)
1289 #define IDirectDrawClipper_IsClipListChanged(p,a) (p)->IsClipListChanged(a)
1290 #define IDirectDrawClipper_SetClipList(p,a,b) (p)->SetClipList(a,b)
1291 #define IDirectDrawClipper_SetHWnd(p,a,b) (p)->SetHWnd(a,b)
1292 #endif
1295 /*****************************************************************************
1296 * IDirectDraw interface
1298 #define INTERFACE IDirectDraw
1299 DECLARE_INTERFACE_(IDirectDraw,IUnknown)
1301 /*** IUnknown methods ***/
1302 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1303 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1304 STDMETHOD_(ULONG,Release)(THIS) PURE;
1305 /*** IDirectDraw methods ***/
1306 STDMETHOD(Compact)(THIS) PURE;
1307 STDMETHOD(CreateClipper)(THIS_ DWORD dwFlags, LPDIRECTDRAWCLIPPER *lplpDDClipper, IUnknown *pUnkOuter) PURE;
1308 STDMETHOD(CreatePalette)(THIS_ DWORD dwFlags, LPPALETTEENTRY lpColorTable, LPDIRECTDRAWPALETTE *lplpDDPalette, IUnknown *pUnkOuter) PURE;
1309 STDMETHOD(CreateSurface)(THIS_ LPDDSURFACEDESC lpDDSurfaceDesc, LPDIRECTDRAWSURFACE *lplpDDSurface, IUnknown *pUnkOuter) PURE;
1310 STDMETHOD(DuplicateSurface)(THIS_ LPDIRECTDRAWSURFACE lpDDSurface, LPDIRECTDRAWSURFACE *lplpDupDDSurface) PURE;
1311 STDMETHOD(EnumDisplayModes)(THIS_ DWORD dwFlags, LPDDSURFACEDESC lpDDSurfaceDesc, LPVOID lpContext, LPDDENUMMODESCALLBACK lpEnumModesCallback) PURE;
1312 STDMETHOD(EnumSurfaces)(THIS_ DWORD dwFlags, LPDDSURFACEDESC lpDDSD, LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpEnumSurfacesCallback) PURE;
1313 STDMETHOD(FlipToGDISurface)(THIS) PURE;
1314 STDMETHOD(GetCaps)(THIS_ LPDDCAPS lpDDDriverCaps, LPDDCAPS lpDDHELCaps) PURE;
1315 STDMETHOD(GetDisplayMode)(THIS_ LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
1316 STDMETHOD(GetFourCCCodes)(THIS_ LPDWORD lpNumCodes, LPDWORD lpCodes) PURE;
1317 STDMETHOD(GetGDISurface)(THIS_ LPDIRECTDRAWSURFACE *lplpGDIDDSurface) PURE;
1318 STDMETHOD(GetMonitorFrequency)(THIS_ LPDWORD lpdwFrequency) PURE;
1319 STDMETHOD(GetScanLine)(THIS_ LPDWORD lpdwScanLine) PURE;
1320 STDMETHOD(GetVerticalBlankStatus)(THIS_ BOOL *lpbIsInVB) PURE;
1321 STDMETHOD(Initialize)(THIS_ GUID *lpGUID) PURE;
1322 STDMETHOD(RestoreDisplayMode)(THIS) PURE;
1323 STDMETHOD(SetCooperativeLevel)(THIS_ HWND hWnd, DWORD dwFlags) PURE;
1324 STDMETHOD(SetDisplayMode)(THIS_ DWORD dwWidth, DWORD dwHeight, DWORD dwBPP) PURE;
1325 STDMETHOD(WaitForVerticalBlank)(THIS_ DWORD dwFlags, HANDLE hEvent) PURE;
1327 #undef INTERFACE
1329 #if !defined(__cplusplus) || defined(CINTERFACE)
1330 /*** IUnknown methods ***/
1331 #define IDirectDraw_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1332 #define IDirectDraw_AddRef(p) (p)->lpVtbl->AddRef(p)
1333 #define IDirectDraw_Release(p) (p)->lpVtbl->Release(p)
1334 /*** IDirectDraw methods ***/
1335 #define IDirectDraw_Compact(p) (p)->lpVtbl->Compact(p)
1336 #define IDirectDraw_CreateClipper(p,a,b,c) (p)->lpVtbl->CreateClipper(p,a,b,c)
1337 #define IDirectDraw_CreatePalette(p,a,b,c,d) (p)->lpVtbl->CreatePalette(p,a,b,c,d)
1338 #define IDirectDraw_CreateSurface(p,a,b,c) (p)->lpVtbl->CreateSurface(p,a,b,c)
1339 #define IDirectDraw_DuplicateSurface(p,a,b) (p)->lpVtbl->DuplicateSurface(p,a,b)
1340 #define IDirectDraw_EnumDisplayModes(p,a,b,c,d) (p)->lpVtbl->EnumDisplayModes(p,a,b,c,d)
1341 #define IDirectDraw_EnumSurfaces(p,a,b,c,d) (p)->lpVtbl->EnumSurfaces(p,a,b,c,d)
1342 #define IDirectDraw_FlipToGDISurface(p) (p)->lpVtbl->FlipToGDISurface(p)
1343 #define IDirectDraw_GetCaps(p,a,b) (p)->lpVtbl->GetCaps(p,a,b)
1344 #define IDirectDraw_GetDisplayMode(p,a) (p)->lpVtbl->GetDisplayMode(p,a)
1345 #define IDirectDraw_GetFourCCCodes(p,a,b) (p)->lpVtbl->GetFourCCCodes(p,a,b)
1346 #define IDirectDraw_GetGDISurface(p,a) (p)->lpVtbl->GetGDISurface(p,a)
1347 #define IDirectDraw_GetMonitorFrequency(p,a) (p)->lpVtbl->GetMonitorFrequency(p,a)
1348 #define IDirectDraw_GetScanLine(p,a) (p)->lpVtbl->GetScanLine(p,a)
1349 #define IDirectDraw_GetVerticalBlankStatus(p,a) (p)->lpVtbl->GetVerticalBlankStatus(p,a)
1350 #define IDirectDraw_Initialize(p,a) (p)->lpVtbl->Initialize(p,a)
1351 #define IDirectDraw_RestoreDisplayMode(p) (p)->lpVtbl->RestoreDisplayMode(p)
1352 #define IDirectDraw_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b)
1353 #define IDirectDraw_SetDisplayMode(p,a,b,c) (p)->lpVtbl->SetDisplayMode(p,a,b,c)
1354 #define IDirectDraw_WaitForVerticalBlank(p,a,b) (p)->lpVtbl->WaitForVerticalBlank(p,a,b)
1355 #else
1356 /*** IUnknown methods ***/
1357 #define IDirectDraw_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1358 #define IDirectDraw_AddRef(p) (p)->AddRef()
1359 #define IDirectDraw_Release(p) (p)->Release()
1360 /*** IDirectDraw methods ***/
1361 #define IDirectDraw_Compact(p) (p)->Compact()
1362 #define IDirectDraw_CreateClipper(p,a,b,c) (p)->CreateClipper(a,b,c)
1363 #define IDirectDraw_CreatePalette(p,a,b,c,d) (p)->CreatePalette(a,b,c,d)
1364 #define IDirectDraw_CreateSurface(p,a,b,c) (p)->CreateSurface(a,b,c)
1365 #define IDirectDraw_DuplicateSurface(p,a,b) (p)->DuplicateSurface(a,b)
1366 #define IDirectDraw_EnumDisplayModes(p,a,b,c,d) (p)->EnumDisplayModes(a,b,c,d)
1367 #define IDirectDraw_EnumSurfaces(p,a,b,c,d) (p)->EnumSurfaces(a,b,c,d)
1368 #define IDirectDraw_FlipToGDISurface(p) (p)->FlipToGDISurface()
1369 #define IDirectDraw_GetCaps(p,a,b) (p)->GetCaps(a,b)
1370 #define IDirectDraw_GetDisplayMode(p,a) (p)->GetDisplayMode(a)
1371 #define IDirectDraw_GetFourCCCodes(p,a,b) (p)->GetFourCCCodes(a,b)
1372 #define IDirectDraw_GetGDISurface(p,a) (p)->GetGDISurface(a)
1373 #define IDirectDraw_GetMonitorFrequency(p,a) (p)->GetMonitorFrequency(a)
1374 #define IDirectDraw_GetScanLine(p,a) (p)->GetScanLine(a)
1375 #define IDirectDraw_GetVerticalBlankStatus(p,a) (p)->GetVerticalBlankStatus(a)
1376 #define IDirectDraw_Initialize(p,a) (p)->Initialize(a)
1377 #define IDirectDraw_RestoreDisplayMode(p) (p)->RestoreDisplayMode()
1378 #define IDirectDraw_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b)
1379 #define IDirectDraw_SetDisplayMode(p,a,b,c) (p)->SetDisplayMode(a,b,c)
1380 #define IDirectDraw_WaitForVerticalBlank(p,a,b) (p)->WaitForVerticalBlank(a,b)
1381 #endif
1384 /* flags for Lock() */
1385 #define DDLOCK_SURFACEMEMORYPTR 0x00000000
1386 #define DDLOCK_WAIT 0x00000001
1387 #define DDLOCK_EVENT 0x00000002
1388 #define DDLOCK_READONLY 0x00000010
1389 #define DDLOCK_WRITEONLY 0x00000020
1390 #define DDLOCK_NOSYSLOCK 0x00000800
1391 #define DDLOCK_NOOVERWRITE 0x00001000
1392 #define DDLOCK_DISCARDCONTENTS 0x00002000
1395 /*****************************************************************************
1396 * IDirectDraw2 interface
1398 /* Note: IDirectDraw2 cannot derive from IDirectDraw because the number of
1399 * arguments of SetDisplayMode has changed !
1401 #define INTERFACE IDirectDraw2
1402 DECLARE_INTERFACE_(IDirectDraw2,IUnknown)
1404 /*** IUnknown methods ***/
1405 /*00*/ STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1406 /*04*/ STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1407 /*08*/ STDMETHOD_(ULONG,Release)(THIS) PURE;
1408 /*** IDirectDraw2 methods ***/
1409 /*0c*/ STDMETHOD(Compact)(THIS) PURE;
1410 /*10*/ STDMETHOD(CreateClipper)(THIS_ DWORD dwFlags, LPDIRECTDRAWCLIPPER *lplpDDClipper, IUnknown *pUnkOuter) PURE;
1411 /*14*/ STDMETHOD(CreatePalette)(THIS_ DWORD dwFlags, LPPALETTEENTRY lpColorTable, LPDIRECTDRAWPALETTE *lplpDDPalette, IUnknown *pUnkOuter) PURE;
1412 /*18*/ STDMETHOD(CreateSurface)(THIS_ LPDDSURFACEDESC lpDDSurfaceDesc, LPDIRECTDRAWSURFACE *lplpDDSurface, IUnknown *pUnkOuter) PURE;
1413 /*1c*/ STDMETHOD(DuplicateSurface)(THIS_ LPDIRECTDRAWSURFACE lpDDSurface, LPDIRECTDRAWSURFACE *lplpDupDDSurface) PURE;
1414 /*20*/ STDMETHOD(EnumDisplayModes)(THIS_ DWORD dwFlags, LPDDSURFACEDESC lpDDSurfaceDesc, LPVOID lpContext, LPDDENUMMODESCALLBACK lpEnumModesCallback) PURE;
1415 /*24*/ STDMETHOD(EnumSurfaces)(THIS_ DWORD dwFlags, LPDDSURFACEDESC lpDDSD, LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpEnumSurfacesCallback) PURE;
1416 /*28*/ STDMETHOD(FlipToGDISurface)(THIS) PURE;
1417 /*2c*/ STDMETHOD(GetCaps)(THIS_ LPDDCAPS lpDDDriverCaps, LPDDCAPS lpDDHELCaps) PURE;
1418 /*30*/ STDMETHOD(GetDisplayMode)(THIS_ LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
1419 /*34*/ STDMETHOD(GetFourCCCodes)(THIS_ LPDWORD lpNumCodes, LPDWORD lpCodes) PURE;
1420 /*38*/ STDMETHOD(GetGDISurface)(THIS_ LPDIRECTDRAWSURFACE *lplpGDIDDSurface) PURE;
1421 /*3c*/ STDMETHOD(GetMonitorFrequency)(THIS_ LPDWORD lpdwFrequency) PURE;
1422 /*40*/ STDMETHOD(GetScanLine)(THIS_ LPDWORD lpdwScanLine) PURE;
1423 /*44*/ STDMETHOD(GetVerticalBlankStatus)(THIS_ BOOL *lpbIsInVB) PURE;
1424 /*48*/ STDMETHOD(Initialize)(THIS_ GUID *lpGUID) PURE;
1425 /*4c*/ STDMETHOD(RestoreDisplayMode)(THIS) PURE;
1426 /*50*/ STDMETHOD(SetCooperativeLevel)(THIS_ HWND hWnd, DWORD dwFlags) PURE;
1427 /*54*/ STDMETHOD(SetDisplayMode)(THIS_ DWORD dwWidth, DWORD dwHeight, DWORD dwBPP, DWORD dwRefreshRate, DWORD dwFlags) PURE;
1428 /*58*/ STDMETHOD(WaitForVerticalBlank)(THIS_ DWORD dwFlags, HANDLE hEvent) PURE;
1429 /* added in v2 */
1430 /*5c*/ STDMETHOD(GetAvailableVidMem)(THIS_ LPDDSCAPS lpDDCaps, LPDWORD lpdwTotal, LPDWORD lpdwFree) PURE;
1432 #undef INTERFACE
1434 #if !defined(__cplusplus) || defined(CINTERFACE)
1435 /*** IUnknown methods ***/
1436 #define IDirectDraw2_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1437 #define IDirectDraw2_AddRef(p) (p)->lpVtbl->AddRef(p)
1438 #define IDirectDraw2_Release(p) (p)->lpVtbl->Release(p)
1439 /*** IDirectDraw methods ***/
1440 #define IDirectDraw2_Compact(p) (p)->lpVtbl->Compact(p)
1441 #define IDirectDraw2_CreateClipper(p,a,b,c) (p)->lpVtbl->CreateClipper(p,a,b,c)
1442 #define IDirectDraw2_CreatePalette(p,a,b,c,d) (p)->lpVtbl->CreatePalette(p,a,b,c,d)
1443 #define IDirectDraw2_CreateSurface(p,a,b,c) (p)->lpVtbl->CreateSurface(p,a,b,c)
1444 #define IDirectDraw2_DuplicateSurface(p,a,b) (p)->lpVtbl->DuplicateSurface(p,a,b)
1445 #define IDirectDraw2_EnumDisplayModes(p,a,b,c,d) (p)->lpVtbl->EnumDisplayModes(p,a,b,c,d)
1446 #define IDirectDraw2_EnumSurfaces(p,a,b,c,d) (p)->lpVtbl->EnumSurfaces(p,a,b,c,d)
1447 #define IDirectDraw2_FlipToGDISurface(p) (p)->lpVtbl->FlipToGDISurface(p)
1448 #define IDirectDraw2_GetCaps(p,a,b) (p)->lpVtbl->GetCaps(p,a,b)
1449 #define IDirectDraw2_GetDisplayMode(p,a) (p)->lpVtbl->GetDisplayMode(p,a)
1450 #define IDirectDraw2_GetFourCCCodes(p,a,b) (p)->lpVtbl->GetFourCCCodes(p,a,b)
1451 #define IDirectDraw2_GetGDISurface(p,a) (p)->lpVtbl->GetGDISurface(p,a)
1452 #define IDirectDraw2_GetMonitorFrequency(p,a) (p)->lpVtbl->GetMonitorFrequency(p,a)
1453 #define IDirectDraw2_GetScanLine(p,a) (p)->lpVtbl->GetScanLine(p,a)
1454 #define IDirectDraw2_GetVerticalBlankStatus(p,a) (p)->lpVtbl->GetVerticalBlankStatus(p,a)
1455 #define IDirectDraw2_Initialize(p,a) (p)->lpVtbl->Initialize(p,a)
1456 #define IDirectDraw2_RestoreDisplayMode(p) (p)->lpVtbl->RestoreDisplayMode(p)
1457 #define IDirectDraw2_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b)
1458 #define IDirectDraw2_SetDisplayMode(p,a,b,c,d,e) (p)->lpVtbl->SetDisplayMode(p,a,b,c,d,e)
1459 #define IDirectDraw2_WaitForVerticalBlank(p,a,b) (p)->lpVtbl->WaitForVerticalBlank(p,a,b)
1460 /*** IDirectDraw2 methods ***/
1461 #define IDirectDraw2_GetAvailableVidMem(p,a,b,c) (p)->lpVtbl->GetAvailableVidMem(p,a,b,c)
1462 #else
1463 /*** IUnknown methods ***/
1464 #define IDirectDraw2_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1465 #define IDirectDraw2_AddRef(p) (p)->AddRef()
1466 #define IDirectDraw2_Release(p) (p)->Release()
1467 /*** IDirectDraw methods ***/
1468 #define IDirectDraw2_Compact(p) (p)->Compact()
1469 #define IDirectDraw2_CreateClipper(p,a,b,c) (p)->CreateClipper(a,b,c)
1470 #define IDirectDraw2_CreatePalette(p,a,b,c,d) (p)->CreatePalette(a,b,c,d)
1471 #define IDirectDraw2_CreateSurface(p,a,b,c) (p)->CreateSurface(a,b,c)
1472 #define IDirectDraw2_DuplicateSurface(p,a,b) (p)->DuplicateSurface(a,b)
1473 #define IDirectDraw2_EnumDisplayModes(p,a,b,c,d) (p)->EnumDisplayModes(a,b,c,d)
1474 #define IDirectDraw2_EnumSurfaces(p,a,b,c,d) (p)->EnumSurfaces(a,b,c,d)
1475 #define IDirectDraw2_FlipToGDISurface(p) (p)->FlipToGDISurface()
1476 #define IDirectDraw2_GetCaps(p,a,b) (p)->GetCaps(a,b)
1477 #define IDirectDraw2_GetDisplayMode(p,a) (p)->GetDisplayMode(a)
1478 #define IDirectDraw2_GetFourCCCodes(p,a,b) (p)->GetFourCCCodes(a,b)
1479 #define IDirectDraw2_GetGDISurface(p,a) (p)->GetGDISurface(a)
1480 #define IDirectDraw2_GetMonitorFrequency(p,a) (p)->GetMonitorFrequency(a)
1481 #define IDirectDraw2_GetScanLine(p,a) (p)->GetScanLine(a)
1482 #define IDirectDraw2_GetVerticalBlankStatus(p,a) (p)->GetVerticalBlankStatus(a)
1483 #define IDirectDraw2_Initialize(p,a) (p)->Initialize(a)
1484 #define IDirectDraw2_RestoreDisplayMode(p) (p)->RestoreDisplayMode()
1485 #define IDirectDraw2_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b)
1486 #define IDirectDraw2_SetDisplayMode(p,a,b,c,d,e) (p)->SetDisplayMode(a,b,c,d,e)
1487 #define IDirectDraw2_WaitForVerticalBlank(p,a,b) (p)->WaitForVerticalBlank(a,b)
1488 /*** IDirectDraw2 methods ***/
1489 #define IDirectDraw2_GetAvailableVidMem(p,a,b,c) (p)->GetAvailableVidMem(a,b,c)
1490 #endif
1493 /*****************************************************************************
1494 * IDirectDraw4 interface
1496 #define INTERFACE IDirectDraw4
1497 DECLARE_INTERFACE_(IDirectDraw4,IUnknown)
1499 /*** IUnknown methods ***/
1500 /*00*/ STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1501 /*04*/ STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1502 /*08*/ STDMETHOD_(ULONG,Release)(THIS) PURE;
1503 /*** IDirectDraw4 methods ***/
1504 /*0c*/ STDMETHOD(Compact)(THIS) PURE;
1505 /*10*/ STDMETHOD(CreateClipper)(THIS_ DWORD dwFlags, LPDIRECTDRAWCLIPPER *lplpDDClipper, IUnknown *pUnkOuter) PURE;
1506 /*14*/ STDMETHOD(CreatePalette)(THIS_ DWORD dwFlags, LPPALETTEENTRY lpColorTable, LPDIRECTDRAWPALETTE *lplpDDPalette, IUnknown *pUnkOuter) PURE;
1507 /*18*/ STDMETHOD(CreateSurface)(THIS_ LPDDSURFACEDESC2 lpDDSurfaceDesc, LPDIRECTDRAWSURFACE4 *lplpDDSurface, IUnknown *pUnkOuter) PURE;
1508 /*1c*/ STDMETHOD(DuplicateSurface)(THIS_ LPDIRECTDRAWSURFACE4 lpDDSurface, LPDIRECTDRAWSURFACE4 *lplpDupDDSurface) PURE;
1509 /*20*/ STDMETHOD(EnumDisplayModes)(THIS_ DWORD dwFlags, LPDDSURFACEDESC2 lpDDSurfaceDesc, LPVOID lpContext, LPDDENUMMODESCALLBACK2 lpEnumModesCallback) PURE;
1510 /*24*/ STDMETHOD(EnumSurfaces)(THIS_ DWORD dwFlags, LPDDSURFACEDESC2 lpDDSD, LPVOID lpContext, LPDDENUMSURFACESCALLBACK2 lpEnumSurfacesCallback) PURE;
1511 /*28*/ STDMETHOD(FlipToGDISurface)(THIS) PURE;
1512 /*2c*/ STDMETHOD(GetCaps)(THIS_ LPDDCAPS lpDDDriverCaps, LPDDCAPS lpDDHELCaps) PURE;
1513 /*30*/ STDMETHOD(GetDisplayMode)(THIS_ LPDDSURFACEDESC2 lpDDSurfaceDesc) PURE;
1514 /*34*/ STDMETHOD(GetFourCCCodes)(THIS_ LPDWORD lpNumCodes, LPDWORD lpCodes) PURE;
1515 /*38*/ STDMETHOD(GetGDISurface)(THIS_ LPDIRECTDRAWSURFACE4 *lplpGDIDDSurface) PURE;
1516 /*3c*/ STDMETHOD(GetMonitorFrequency)(THIS_ LPDWORD lpdwFrequency) PURE;
1517 /*40*/ STDMETHOD(GetScanLine)(THIS_ LPDWORD lpdwScanLine) PURE;
1518 /*44*/ STDMETHOD(GetVerticalBlankStatus)(THIS_ BOOL *lpbIsInVB) PURE;
1519 /*48*/ STDMETHOD(Initialize)(THIS_ GUID *lpGUID) PURE;
1520 /*4c*/ STDMETHOD(RestoreDisplayMode)(THIS) PURE;
1521 /*50*/ STDMETHOD(SetCooperativeLevel)(THIS_ HWND hWnd, DWORD dwFlags) PURE;
1522 /*54*/ STDMETHOD(SetDisplayMode)(THIS_ DWORD dwWidth, DWORD dwHeight, DWORD dwBPP, DWORD dwRefreshRate, DWORD dwFlags) PURE;
1523 /*58*/ STDMETHOD(WaitForVerticalBlank)(THIS_ DWORD dwFlags, HANDLE hEvent) PURE;
1524 /* added in v2 */
1525 /*5c*/ STDMETHOD(GetAvailableVidMem)(THIS_ LPDDSCAPS2 lpDDCaps, LPDWORD lpdwTotal, LPDWORD lpdwFree) PURE;
1526 /* added in v4 */
1527 /*60*/ STDMETHOD(GetSurfaceFromDC)(THIS_ HDC hdc, LPDIRECTDRAWSURFACE4 *pSurf) PURE;
1528 /*64*/ STDMETHOD(RestoreAllSurfaces)(THIS) PURE;
1529 /*68*/ STDMETHOD(TestCooperativeLevel)(THIS) PURE;
1530 /*6c*/ STDMETHOD(GetDeviceIdentifier)(THIS_ LPDDDEVICEIDENTIFIER pDDDI, DWORD dwFlags) PURE;
1532 #undef INTERFACE
1534 #if !defined(__cplusplus) || defined(CINTERFACE)
1535 /*** IUnknown methods ***/
1536 #define IDirectDraw4_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1537 #define IDirectDraw4_AddRef(p) (p)->lpVtbl->AddRef(p)
1538 #define IDirectDraw4_Release(p) (p)->lpVtbl->Release(p)
1539 /*** IDirectDraw methods ***/
1540 #define IDirectDraw4_Compact(p) (p)->lpVtbl->Compact(p)
1541 #define IDirectDraw4_CreateClipper(p,a,b,c) (p)->lpVtbl->CreateClipper(p,a,b,c)
1542 #define IDirectDraw4_CreatePalette(p,a,b,c,d) (p)->lpVtbl->CreatePalette(p,a,b,c,d)
1543 #define IDirectDraw4_CreateSurface(p,a,b,c) (p)->lpVtbl->CreateSurface(p,a,b,c)
1544 #define IDirectDraw4_DuplicateSurface(p,a,b) (p)->lpVtbl->DuplicateSurface(p,a,b)
1545 #define IDirectDraw4_EnumDisplayModes(p,a,b,c,d) (p)->lpVtbl->EnumDisplayModes(p,a,b,c,d)
1546 #define IDirectDraw4_EnumSurfaces(p,a,b,c,d) (p)->lpVtbl->EnumSurfaces(p,a,b,c,d)
1547 #define IDirectDraw4_FlipToGDISurface(p) (p)->lpVtbl->FlipToGDISurface(p)
1548 #define IDirectDraw4_GetCaps(p,a,b) (p)->lpVtbl->GetCaps(p,a,b)
1549 #define IDirectDraw4_GetDisplayMode(p,a) (p)->lpVtbl->GetDisplayMode(p,a)
1550 #define IDirectDraw4_GetFourCCCodes(p,a,b) (p)->lpVtbl->GetFourCCCodes(p,a,b)
1551 #define IDirectDraw4_GetGDISurface(p,a) (p)->lpVtbl->GetGDISurface(p,a)
1552 #define IDirectDraw4_GetMonitorFrequency(p,a) (p)->lpVtbl->GetMonitorFrequency(p,a)
1553 #define IDirectDraw4_GetScanLine(p,a) (p)->lpVtbl->GetScanLine(p,a)
1554 #define IDirectDraw4_GetVerticalBlankStatus(p,a) (p)->lpVtbl->GetVerticalBlankStatus(p,a)
1555 #define IDirectDraw4_Initialize(p,a) (p)->lpVtbl->Initialize(p,a)
1556 #define IDirectDraw4_RestoreDisplayMode(p) (p)->lpVtbl->RestoreDisplayMode(p)
1557 #define IDirectDraw4_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b)
1558 #define IDirectDraw4_SetDisplayMode(p,a,b,c,d,e) (p)->lpVtbl->SetDisplayMode(p,a,b,c,d,e)
1559 #define IDirectDraw4_WaitForVerticalBlank(p,a,b) (p)->lpVtbl->WaitForVerticalBlank(p,a,b)
1560 /*** IDirectDraw2 methods ***/
1561 #define IDirectDraw4_GetAvailableVidMem(p,a,b,c) (p)->lpVtbl->GetAvailableVidMem(p,a,b,c)
1562 /*** IDirectDraw4 methods ***/
1563 #define IDirectDraw4_GetSurfaceFromDC(p,a,b) (p)->lpVtbl->GetSurfaceFromDC(p,a,b)
1564 #define IDirectDraw4_RestoreAllSurfaces(pc) (p)->lpVtbl->RestoreAllSurfaces(p)
1565 #define IDirectDraw4_TestCooperativeLevel(p) (p)->lpVtbl->TestCooperativeLevel(p)
1566 #define IDirectDraw4_GetDeviceIdentifier(p,a,b) (p)->lpVtbl->GetDeviceIdentifier(p,a,b)
1567 #else
1568 /*** IUnknown methods ***/
1569 #define IDirectDraw4_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1570 #define IDirectDraw4_AddRef(p) (p)->AddRef()
1571 #define IDirectDraw4_Release(p) (p)->Release()
1572 /*** IDirectDraw methods ***/
1573 #define IDirectDraw4_Compact(p) (p)->Compact()
1574 #define IDirectDraw4_CreateClipper(p,a,b,c) (p)->CreateClipper(a,b,c)
1575 #define IDirectDraw4_CreatePalette(p,a,b,c,d) (p)->CreatePalette(a,b,c,d)
1576 #define IDirectDraw4_CreateSurface(p,a,b,c) (p)->CreateSurface(a,b,c)
1577 #define IDirectDraw4_DuplicateSurface(p,a,b) (p)->DuplicateSurface(a,b)
1578 #define IDirectDraw4_EnumDisplayModes(p,a,b,c,d) (p)->EnumDisplayModes(a,b,c,d)
1579 #define IDirectDraw4_EnumSurfaces(p,a,b,c,d) (p)->EnumSurfaces(a,b,c,d)
1580 #define IDirectDraw4_FlipToGDISurface(p) (p)->FlipToGDISurface()
1581 #define IDirectDraw4_GetCaps(p,a,b) (p)->GetCaps(a,b)
1582 #define IDirectDraw4_GetDisplayMode(p,a) (p)->GetDisplayMode(a)
1583 #define IDirectDraw4_GetFourCCCodes(p,a,b) (p)->GetFourCCCodes(a,b)
1584 #define IDirectDraw4_GetGDISurface(p,a) (p)->GetGDISurface(a)
1585 #define IDirectDraw4_GetMonitorFrequency(p,a) (p)->GetMonitorFrequency(a)
1586 #define IDirectDraw4_GetScanLine(p,a) (p)->GetScanLine(a)
1587 #define IDirectDraw4_GetVerticalBlankStatus(p,a) (p)->GetVerticalBlankStatus(a)
1588 #define IDirectDraw4_Initialize(p,a) (p)->Initialize(a)
1589 #define IDirectDraw4_RestoreDisplayMode(p) (p)->RestoreDisplayMode()
1590 #define IDirectDraw4_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b)
1591 #define IDirectDraw4_SetDisplayMode(p,a,b,c,d,e) (p)->SetDisplayMode(a,b,c,d,e)
1592 #define IDirectDraw4_WaitForVerticalBlank(p,a,b) (p)->WaitForVerticalBlank(a,b)
1593 /*** IDirectDraw2 methods ***/
1594 #define IDirectDraw4_GetAvailableVidMem(p,a,b,c) (p)->GetAvailableVidMem(a,b,c)
1595 /*** IDirectDraw4 methods ***/
1596 #define IDirectDraw4_GetSurfaceFromDC(p,a,b) (p)->GetSurfaceFromDC(a,b)
1597 #define IDirectDraw4_RestoreAllSurfaces(pc) (p)->RestoreAllSurfaces()
1598 #define IDirectDraw4_TestCooperativeLevel(p) (p)->TestCooperativeLevel()
1599 #define IDirectDraw4_GetDeviceIdentifier(p,a,b) (p)->GetDeviceIdentifier(a,b)
1600 #endif
1603 /*****************************************************************************
1604 * IDirectDraw7 interface
1606 /* Note: IDirectDraw7 cannot derive from IDirectDraw4; it is even documented
1607 * as not interchangeable with earlier DirectDraw interfaces.
1609 #define INTERFACE IDirectDraw7
1610 DECLARE_INTERFACE_(IDirectDraw7,IUnknown)
1612 /*** IUnknown methods ***/
1613 /*00*/ STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1614 /*04*/ STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1615 /*08*/ STDMETHOD_(ULONG,Release)(THIS) PURE;
1616 /*** IDirectDraw7 methods ***/
1617 /*0c*/ STDMETHOD(Compact)(THIS) PURE;
1618 /*10*/ STDMETHOD(CreateClipper)(THIS_ DWORD dwFlags, LPDIRECTDRAWCLIPPER *lplpDDClipper, IUnknown *pUnkOuter) PURE;
1619 /*14*/ STDMETHOD(CreatePalette)(THIS_ DWORD dwFlags, LPPALETTEENTRY lpColorTable, LPDIRECTDRAWPALETTE *lplpDDPalette, IUnknown *pUnkOuter) PURE;
1620 /*18*/ STDMETHOD(CreateSurface)(THIS_ LPDDSURFACEDESC2 lpDDSurfaceDesc, LPDIRECTDRAWSURFACE7 *lplpDDSurface, IUnknown *pUnkOuter) PURE;
1621 /*1c*/ STDMETHOD(DuplicateSurface)(THIS_ LPDIRECTDRAWSURFACE7 lpDDSurface, LPDIRECTDRAWSURFACE7 *lplpDupDDSurface) PURE;
1622 /*20*/ STDMETHOD(EnumDisplayModes)(THIS_ DWORD dwFlags, LPDDSURFACEDESC2 lpDDSurfaceDesc, LPVOID lpContext, LPDDENUMMODESCALLBACK2 lpEnumModesCallback) PURE;
1623 /*24*/ STDMETHOD(EnumSurfaces)(THIS_ DWORD dwFlags, LPDDSURFACEDESC2 lpDDSD, LPVOID lpContext, LPDDENUMSURFACESCALLBACK7 lpEnumSurfacesCallback) PURE;
1624 /*28*/ STDMETHOD(FlipToGDISurface)(THIS) PURE;
1625 /*2c*/ STDMETHOD(GetCaps)(THIS_ LPDDCAPS lpDDDriverCaps, LPDDCAPS lpDDHELCaps) PURE;
1626 /*30*/ STDMETHOD(GetDisplayMode)(THIS_ LPDDSURFACEDESC2 lpDDSurfaceDesc) PURE;
1627 /*34*/ STDMETHOD(GetFourCCCodes)(THIS_ LPDWORD lpNumCodes, LPDWORD lpCodes) PURE;
1628 /*38*/ STDMETHOD(GetGDISurface)(THIS_ LPDIRECTDRAWSURFACE7 *lplpGDIDDSurface) PURE;
1629 /*3c*/ STDMETHOD(GetMonitorFrequency)(THIS_ LPDWORD lpdwFrequency) PURE;
1630 /*40*/ STDMETHOD(GetScanLine)(THIS_ LPDWORD lpdwScanLine) PURE;
1631 /*44*/ STDMETHOD(GetVerticalBlankStatus)(THIS_ BOOL *lpbIsInVB) PURE;
1632 /*48*/ STDMETHOD(Initialize)(THIS_ GUID *lpGUID) PURE;
1633 /*4c*/ STDMETHOD(RestoreDisplayMode)(THIS) PURE;
1634 /*50*/ STDMETHOD(SetCooperativeLevel)(THIS_ HWND hWnd, DWORD dwFlags) PURE;
1635 /*54*/ STDMETHOD(SetDisplayMode)(THIS_ DWORD dwWidth, DWORD dwHeight, DWORD dwBPP, DWORD dwRefreshRate, DWORD dwFlags) PURE;
1636 /*58*/ STDMETHOD(WaitForVerticalBlank)(THIS_ DWORD dwFlags, HANDLE hEvent) PURE;
1637 /* added in v2 */
1638 /*5c*/ STDMETHOD(GetAvailableVidMem)(THIS_ LPDDSCAPS2 lpDDCaps, LPDWORD lpdwTotal, LPDWORD lpdwFree) PURE;
1639 /* added in v4 */
1640 /*60*/ STDMETHOD(GetSurfaceFromDC)(THIS_ HDC hdc, LPDIRECTDRAWSURFACE7 *pSurf) PURE;
1641 /*64*/ STDMETHOD(RestoreAllSurfaces)(THIS) PURE;
1642 /*68*/ STDMETHOD(TestCooperativeLevel)(THIS) PURE;
1643 /*6c*/ STDMETHOD(GetDeviceIdentifier)(THIS_ LPDDDEVICEIDENTIFIER2 pDDDI, DWORD dwFlags) PURE;
1644 /* added in v7 */
1645 /*70*/ STDMETHOD(StartModeTest)(THIS_ LPSIZE pModes, DWORD dwNumModes, DWORD dwFlags) PURE;
1646 /*74*/ STDMETHOD(EvaluateMode)(THIS_ DWORD dwFlags, DWORD *pTimeout) PURE;
1648 #undef INTERFACE
1650 #if !defined(__cplusplus) || defined(CINTERFACE)
1651 /*** IUnknown methods ***/
1652 #define IDirectDraw7_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1653 #define IDirectDraw7_AddRef(p) (p)->lpVtbl->AddRef(p)
1654 #define IDirectDraw7_Release(p) (p)->lpVtbl->Release(p)
1655 /*** IDirectDraw methods ***/
1656 #define IDirectDraw7_Compact(p) (p)->lpVtbl->Compact(p)
1657 #define IDirectDraw7_CreateClipper(p,a,b,c) (p)->lpVtbl->CreateClipper(p,a,b,c)
1658 #define IDirectDraw7_CreatePalette(p,a,b,c,d) (p)->lpVtbl->CreatePalette(p,a,b,c,d)
1659 #define IDirectDraw7_CreateSurface(p,a,b,c) (p)->lpVtbl->CreateSurface(p,a,b,c)
1660 #define IDirectDraw7_DuplicateSurface(p,a,b) (p)->lpVtbl->DuplicateSurface(p,a,b)
1661 #define IDirectDraw7_EnumDisplayModes(p,a,b,c,d) (p)->lpVtbl->EnumDisplayModes(p,a,b,c,d)
1662 #define IDirectDraw7_EnumSurfaces(p,a,b,c,d) (p)->lpVtbl->EnumSurfaces(p,a,b,c,d)
1663 #define IDirectDraw7_FlipToGDISurface(p) (p)->lpVtbl->FlipToGDISurface(p)
1664 #define IDirectDraw7_GetCaps(p,a,b) (p)->lpVtbl->GetCaps(p,a,b)
1665 #define IDirectDraw7_GetDisplayMode(p,a) (p)->lpVtbl->GetDisplayMode(p,a)
1666 #define IDirectDraw7_GetFourCCCodes(p,a,b) (p)->lpVtbl->GetFourCCCodes(p,a,b)
1667 #define IDirectDraw7_GetGDISurface(p,a) (p)->lpVtbl->GetGDISurface(p,a)
1668 #define IDirectDraw7_GetMonitorFrequency(p,a) (p)->lpVtbl->GetMonitorFrequency(p,a)
1669 #define IDirectDraw7_GetScanLine(p,a) (p)->lpVtbl->GetScanLine(p,a)
1670 #define IDirectDraw7_GetVerticalBlankStatus(p,a) (p)->lpVtbl->GetVerticalBlankStatus(p,a)
1671 #define IDirectDraw7_Initialize(p,a) (p)->lpVtbl->Initialize(p,a)
1672 #define IDirectDraw7_RestoreDisplayMode(p) (p)->lpVtbl->RestoreDisplayMode(p)
1673 #define IDirectDraw7_SetCooperativeLevel(p,a,b) (p)->lpVtbl->SetCooperativeLevel(p,a,b)
1674 #define IDirectDraw7_SetDisplayMode(p,a,b,c,d,e) (p)->lpVtbl->SetDisplayMode(p,a,b,c,d,e)
1675 #define IDirectDraw7_WaitForVerticalBlank(p,a,b) (p)->lpVtbl->WaitForVerticalBlank(p,a,b)
1676 /*** added in IDirectDraw2 ***/
1677 #define IDirectDraw7_GetAvailableVidMem(p,a,b,c) (p)->lpVtbl->GetAvailableVidMem(p,a,b,c)
1678 /*** added in IDirectDraw4 ***/
1679 #define IDirectDraw7_GetSurfaceFromDC(p,a,b) (p)->lpVtbl->GetSurfaceFromDC(p,a,b)
1680 #define IDirectDraw7_RestoreAllSurfaces(p) (p)->lpVtbl->RestoreAllSurfaces(p)
1681 #define IDirectDraw7_TestCooperativeLevel(p) (p)->lpVtbl->TestCooperativeLevel(p)
1682 #define IDirectDraw7_GetDeviceIdentifier(p,a,b) (p)->lpVtbl->GetDeviceIdentifier(p,a,b)
1683 /*** added in IDirectDraw 7 ***/
1684 #define IDirectDraw7_StartModeTest(p,a,b,c) (p)->lpVtbl->StartModeTest(p,a,b,c)
1685 #define IDirectDraw7_EvaluateMode(p,a,b) (p)->lpVtbl->EvaluateMode(p,a,b)
1686 #else
1687 /*** IUnknown methods ***/
1688 #define IDirectDraw7_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1689 #define IDirectDraw7_AddRef(p) (p)->AddRef()
1690 #define IDirectDraw7_Release(p) (p)->Release()
1691 /*** IDirectDraw methods ***/
1692 #define IDirectDraw7_Compact(p) (p)->Compact()
1693 #define IDirectDraw7_CreateClipper(p,a,b,c) (p)->CreateClipper(a,b,c)
1694 #define IDirectDraw7_CreatePalette(p,a,b,c,d) (p)->CreatePalette(a,b,c,d)
1695 #define IDirectDraw7_CreateSurface(p,a,b,c) (p)->CreateSurface(a,b,c)
1696 #define IDirectDraw7_DuplicateSurface(p,a,b) (p)->DuplicateSurface(a,b)
1697 #define IDirectDraw7_EnumDisplayModes(p,a,b,c,d) (p)->EnumDisplayModes(a,b,c,d)
1698 #define IDirectDraw7_EnumSurfaces(p,a,b,c,d) (p)->EnumSurfaces(a,b,c,d)
1699 #define IDirectDraw7_FlipToGDISurface(p) (p)->FlipToGDISurface()
1700 #define IDirectDraw7_GetCaps(p,a,b) (p)->GetCaps(a,b)
1701 #define IDirectDraw7_GetDisplayMode(p,a) (p)->GetDisplayMode(a)
1702 #define IDirectDraw7_GetFourCCCodes(p,a,b) (p)->GetFourCCCodes(a,b)
1703 #define IDirectDraw7_GetGDISurface(p,a) (p)->GetGDISurface(a)
1704 #define IDirectDraw7_GetMonitorFrequency(p,a) (p)->GetMonitorFrequency(a)
1705 #define IDirectDraw7_GetScanLine(p,a) (p)->GetScanLine(a)
1706 #define IDirectDraw7_GetVerticalBlankStatus(p,a) (p)->GetVerticalBlankStatus(a)
1707 #define IDirectDraw7_Initialize(p,a) (p)->Initialize(a)
1708 #define IDirectDraw7_RestoreDisplayMode(p) (p)->RestoreDisplayMode()
1709 #define IDirectDraw7_SetCooperativeLevel(p,a,b) (p)->SetCooperativeLevel(a,b)
1710 #define IDirectDraw7_SetDisplayMode(p,a,b,c,d,e) (p)->SetDisplayMode(a,b,c,d,e)
1711 #define IDirectDraw7_WaitForVerticalBlank(p,a,b) (p)->WaitForVerticalBlank(a,b)
1712 /*** added in IDirectDraw2 ***/
1713 #define IDirectDraw7_GetAvailableVidMem(p,a,b,c) (p)->GetAvailableVidMem(a,b,c)
1714 /*** added in IDirectDraw4 ***/
1715 #define IDirectDraw7_GetSurfaceFromDC(p,a,b) (p)->GetSurfaceFromDC(a,b)
1716 #define IDirectDraw7_RestoreAllSurfaces(p) (p)->RestoreAllSurfaces()
1717 #define IDirectDraw7_TestCooperativeLevel(p) (p)->TestCooperativeLevel()
1718 #define IDirectDraw7_GetDeviceIdentifier(p,a,b) (p)->GetDeviceIdentifier(a,b)
1719 /*** added in IDirectDraw 7 ***/
1720 #define IDirectDraw7_StartModeTest(p,a,b,c) (p)->StartModeTest(a,b,c)
1721 #define IDirectDraw7_EvaluateMode(p,a,b) (p)->EvaluateMode(a,b)
1722 #endif
1725 /*****************************************************************************
1726 * IDirectDrawSurface interface
1728 #define INTERFACE IDirectDrawSurface
1729 DECLARE_INTERFACE_(IDirectDrawSurface,IUnknown)
1731 /*** IUnknown methods ***/
1732 /*00*/ STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1733 /*04*/ STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1734 /*08*/ STDMETHOD_(ULONG,Release)(THIS) PURE;
1735 /*** IDirectDrawSurface methods ***/
1736 /*0c*/ STDMETHOD(AddAttachedSurface)(THIS_ LPDIRECTDRAWSURFACE lpDDSAttachedSurface) PURE;
1737 /*10*/ STDMETHOD(AddOverlayDirtyRect)(THIS_ LPRECT lpRect) PURE;
1738 /*14*/ STDMETHOD(Blt)(THIS_ LPRECT lpDestRect, LPDIRECTDRAWSURFACE lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwFlags, LPDDBLTFX lpDDBltFx) PURE;
1739 /*18*/ STDMETHOD(BltBatch)(THIS_ LPDDBLTBATCH lpDDBltBatch, DWORD dwCount, DWORD dwFlags) PURE;
1740 /*1c*/ STDMETHOD(BltFast)(THIS_ DWORD dwX, DWORD dwY, LPDIRECTDRAWSURFACE lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwTrans) PURE;
1741 /*20*/ STDMETHOD(DeleteAttachedSurface)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE lpDDSAttachedSurface) PURE;
1742 /*24*/ STDMETHOD(EnumAttachedSurfaces)(THIS_ LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpEnumSurfacesCallback) PURE;
1743 /*28*/ STDMETHOD(EnumOverlayZOrders)(THIS_ DWORD dwFlags, LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpfnCallback) PURE;
1744 /*2c*/ STDMETHOD(Flip)(THIS_ LPDIRECTDRAWSURFACE lpDDSurfaceTargetOverride, DWORD dwFlags) PURE;
1745 /*30*/ STDMETHOD(GetAttachedSurface)(THIS_ LPDDSCAPS lpDDSCaps, LPDIRECTDRAWSURFACE *lplpDDAttachedSurface) PURE;
1746 /*34*/ STDMETHOD(GetBltStatus)(THIS_ DWORD dwFlags) PURE;
1747 /*38*/ STDMETHOD(GetCaps)(THIS_ LPDDSCAPS lpDDSCaps) PURE;
1748 /*3c*/ STDMETHOD(GetClipper)(THIS_ LPDIRECTDRAWCLIPPER *lplpDDClipper) PURE;
1749 /*40*/ STDMETHOD(GetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
1750 /*44*/ STDMETHOD(GetDC)(THIS_ HDC *lphDC) PURE;
1751 /*48*/ STDMETHOD(GetFlipStatus)(THIS_ DWORD dwFlags) PURE;
1752 /*4c*/ STDMETHOD(GetOverlayPosition)(THIS_ LPLONG lplX, LPLONG lplY) PURE;
1753 /*50*/ STDMETHOD(GetPalette)(THIS_ LPDIRECTDRAWPALETTE *lplpDDPalette) PURE;
1754 /*54*/ STDMETHOD(GetPixelFormat)(THIS_ LPDDPIXELFORMAT lpDDPixelFormat) PURE;
1755 /*58*/ STDMETHOD(GetSurfaceDesc)(THIS_ LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
1756 /*5c*/ STDMETHOD(Initialize)(THIS_ LPDIRECTDRAW lpDD, LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
1757 /*60*/ STDMETHOD(IsLost)(THIS) PURE;
1758 /*64*/ STDMETHOD(Lock)(THIS_ LPRECT lpDestRect, LPDDSURFACEDESC lpDDSurfaceDesc, DWORD dwFlags, HANDLE hEvent) PURE;
1759 /*68*/ STDMETHOD(ReleaseDC)(THIS_ HDC hDC) PURE;
1760 /*6c*/ STDMETHOD(Restore)(THIS) PURE;
1761 /*70*/ STDMETHOD(SetClipper)(THIS_ LPDIRECTDRAWCLIPPER lpDDClipper) PURE;
1762 /*74*/ STDMETHOD(SetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
1763 /*78*/ STDMETHOD(SetOverlayPosition)(THIS_ LONG lX, LONG lY) PURE;
1764 /*7c*/ STDMETHOD(SetPalette)(THIS_ LPDIRECTDRAWPALETTE lpDDPalette) PURE;
1765 /*80*/ STDMETHOD(Unlock)(THIS_ LPVOID lpSurfaceData) PURE;
1766 /*84*/ STDMETHOD(UpdateOverlay)(THIS_ LPRECT lpSrcRect, LPDIRECTDRAWSURFACE lpDDDestSurface, LPRECT lpDestRect, DWORD dwFlags, LPDDOVERLAYFX lpDDOverlayFx) PURE;
1767 /*88*/ STDMETHOD(UpdateOverlayDisplay)(THIS_ DWORD dwFlags) PURE;
1768 /*8c*/ STDMETHOD(UpdateOverlayZOrder)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE lpDDSReference) PURE;
1770 #undef INTERFACE
1772 #if !defined(__cplusplus) || defined(CINTERFACE)
1773 /*** IUnknown methods ***/
1774 #define IDirectDrawSurface_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1775 #define IDirectDrawSurface_AddRef(p) (p)->lpVtbl->AddRef(p)
1776 #define IDirectDrawSurface_Release(p) (p)->lpVtbl->Release(p)
1777 /*** IDirectDrawSurface methods ***/
1778 #define IDirectDrawSurface_AddAttachedSurface(p,a) (p)->lpVtbl->AddAttachedSurface(p,a)
1779 #define IDirectDrawSurface_AddOverlayDirtyRect(p,a) (p)->lpVtbl->AddOverlayDirtyRect(p,a)
1780 #define IDirectDrawSurface_Blt(p,a,b,c,d,e) (p)->lpVtbl->Blt(p,a,b,c,d,e)
1781 #define IDirectDrawSurface_BltBatch(p,a,b,c) (p)->lpVtbl->BltBatch(p,a,b,c)
1782 #define IDirectDrawSurface_BltFast(p,a,b,c,d,e) (p)->lpVtbl->BltFast(p,a,b,c,d,e)
1783 #define IDirectDrawSurface_DeleteAttachedSurface(p,a,b) (p)->lpVtbl->DeleteAttachedSurface(p,a,b)
1784 #define IDirectDrawSurface_EnumAttachedSurfaces(p,a,b) (p)->lpVtbl->EnumAttachedSurfaces(p,a,b)
1785 #define IDirectDrawSurface_EnumOverlayZOrders(p,a,b,c) (p)->lpVtbl->EnumOverlayZOrders(p,a,b,c)
1786 #define IDirectDrawSurface_Flip(p,a,b) (p)->lpVtbl->Flip(p,a,b)
1787 #define IDirectDrawSurface_GetAttachedSurface(p,a,b) (p)->lpVtbl->GetAttachedSurface(p,a,b)
1788 #define IDirectDrawSurface_GetBltStatus(p,a) (p)->lpVtbl->GetBltStatus(p,a)
1789 #define IDirectDrawSurface_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a)
1790 #define IDirectDrawSurface_GetClipper(p,a) (p)->lpVtbl->GetClipper(p,a)
1791 #define IDirectDrawSurface_GetColorKey(p,a,b) (p)->lpVtbl->GetColorKey(p,a,b)
1792 #define IDirectDrawSurface_GetDC(p,a) (p)->lpVtbl->GetDC(p,a)
1793 #define IDirectDrawSurface_GetFlipStatus(p,a) (p)->lpVtbl->GetFlipStatus(p,a)
1794 #define IDirectDrawSurface_GetOverlayPosition(p,a,b) (p)->lpVtbl->GetOverlayPosition(p,a,b)
1795 #define IDirectDrawSurface_GetPalette(p,a) (p)->lpVtbl->GetPalette(p,a)
1796 #define IDirectDrawSurface_GetPixelFormat(p,a) (p)->lpVtbl->GetPixelFormat(p,a)
1797 #define IDirectDrawSurface_GetSurfaceDesc(p,a) (p)->lpVtbl->GetSurfaceDesc(p,a)
1798 #define IDirectDrawSurface_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b)
1799 #define IDirectDrawSurface_IsLost(p) (p)->lpVtbl->IsLost(p)
1800 #define IDirectDrawSurface_Lock(p,a,b,c,d) (p)->lpVtbl->Lock(p,a,b,c,d)
1801 #define IDirectDrawSurface_ReleaseDC(p,a) (p)->lpVtbl->ReleaseDC(p,a)
1802 #define IDirectDrawSurface_Restore(p) (p)->lpVtbl->Restore(p)
1803 #define IDirectDrawSurface_SetClipper(p,a) (p)->lpVtbl->SetClipper(p,a)
1804 #define IDirectDrawSurface_SetColorKey(p,a,b) (p)->lpVtbl->SetColorKey(p,a,b)
1805 #define IDirectDrawSurface_SetOverlayPosition(p,a,b) (p)->lpVtbl->SetOverlayPosition(p,a,b)
1806 #define IDirectDrawSurface_SetPalette(p,a) (p)->lpVtbl->SetPalette(p,a)
1807 #define IDirectDrawSurface_Unlock(p,a) (p)->lpVtbl->Unlock(p,a)
1808 #define IDirectDrawSurface_UpdateOverlay(p,a,b,c,d,e) (p)->lpVtbl->UpdateOverlay(p,a,b,c,d,e)
1809 #define IDirectDrawSurface_UpdateOverlayDisplay(p,a) (p)->lpVtbl->UpdateOverlayDisplay(p,a)
1810 #define IDirectDrawSurface_UpdateOverlayZOrder(p,a,b) (p)->lpVtbl->UpdateOverlayZOrder(p,a,b)
1811 #else
1812 /*** IUnknown methods ***/
1813 #define IDirectDrawSurface_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1814 #define IDirectDrawSurface_AddRef(p) (p)->AddRef()
1815 #define IDirectDrawSurface_Release(p) (p)->Release()
1816 /*** IDirectDrawSurface methods ***/
1817 #define IDirectDrawSurface_AddAttachedSurface(p,a) (p)->AddAttachedSurface(a)
1818 #define IDirectDrawSurface_AddOverlayDirtyRect(p,a) (p)->AddOverlayDirtyRect(a)
1819 #define IDirectDrawSurface_Blt(p,a,b,c,d,e) (p)->Blt(a,b,c,d,e)
1820 #define IDirectDrawSurface_BltBatch(p,a,b,c) (p)->BltBatch(a,b,c)
1821 #define IDirectDrawSurface_BltFast(p,a,b,c,d,e) (p)->BltFast(a,b,c,d,e)
1822 #define IDirectDrawSurface_DeleteAttachedSurface(p,a,b) (p)->DeleteAttachedSurface(a,b)
1823 #define IDirectDrawSurface_EnumAttachedSurfaces(p,a,b) (p)->EnumAttachedSurfaces(a,b)
1824 #define IDirectDrawSurface_EnumOverlayZOrders(p,a,b,c) (p)->EnumOverlayZOrders(a,b,c)
1825 #define IDirectDrawSurface_Flip(p,a,b) (p)->Flip(a,b)
1826 #define IDirectDrawSurface_GetAttachedSurface(p,a,b) (p)->GetAttachedSurface(a,b)
1827 #define IDirectDrawSurface_GetBltStatus(p,a) (p)->GetBltStatus(a)
1828 #define IDirectDrawSurface_GetCaps(p,a) (p)->GetCaps(a)
1829 #define IDirectDrawSurface_GetClipper(p,a) (p)->GetClipper(a)
1830 #define IDirectDrawSurface_GetColorKey(p,a,b) (p)->GetColorKey(a,b)
1831 #define IDirectDrawSurface_GetDC(p,a) (p)->GetDC(a)
1832 #define IDirectDrawSurface_GetFlipStatus(p,a) (p)->GetFlipStatus(a)
1833 #define IDirectDrawSurface_GetOverlayPosition(p,a,b) (p)->GetOverlayPosition(a,b)
1834 #define IDirectDrawSurface_GetPalette(p,a) (p)->GetPalette(a)
1835 #define IDirectDrawSurface_GetPixelFormat(p,a) (p)->GetPixelFormat(a)
1836 #define IDirectDrawSurface_GetSurfaceDesc(p,a) (p)->GetSurfaceDesc(a)
1837 #define IDirectDrawSurface_Initialize(p,a,b) (p)->Initialize(a,b)
1838 #define IDirectDrawSurface_IsLost(p) (p)->IsLost()
1839 #define IDirectDrawSurface_Lock(p,a,b,c,d) (p)->Lock(a,b,c,d)
1840 #define IDirectDrawSurface_ReleaseDC(p,a) (p)->ReleaseDC(a)
1841 #define IDirectDrawSurface_Restore(p) (p)->Restore()
1842 #define IDirectDrawSurface_SetClipper(p,a) (p)->SetClipper(a)
1843 #define IDirectDrawSurface_SetColorKey(p,a,b) (p)->SetColorKey(a,b)
1844 #define IDirectDrawSurface_SetOverlayPosition(p,a,b) (p)->SetOverlayPosition(a,b)
1845 #define IDirectDrawSurface_SetPalette(p,a) (p)->SetPalette(a)
1846 #define IDirectDrawSurface_Unlock(p,a) (p)->Unlock(a)
1847 #define IDirectDrawSurface_UpdateOverlay(p,a,b,c,d,e) (p)->UpdateOverlay(a,b,c,d,e)
1848 #define IDirectDrawSurface_UpdateOverlayDisplay(p,a) (p)->UpdateOverlayDisplay(a)
1849 #define IDirectDrawSurface_UpdateOverlayZOrder(p,a,b) (p)->UpdateOverlayZOrder(a,b)
1850 #endif
1853 /*****************************************************************************
1854 * IDirectDrawSurface2 interface
1856 /* Cannot inherit from IDirectDrawSurface because the LPDIRECTDRAWSURFACE parameters
1857 * have been converted to LPDIRECTDRAWSURFACE2.
1859 #define INTERFACE IDirectDrawSurface2
1860 DECLARE_INTERFACE_(IDirectDrawSurface2,IUnknown)
1862 /*** IUnknown methods ***/
1863 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
1864 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
1865 STDMETHOD_(ULONG,Release)(THIS) PURE;
1866 /*** IDirectDrawSurface2 methods ***/
1867 STDMETHOD(AddAttachedSurface)(THIS_ LPDIRECTDRAWSURFACE2 lpDDSAttachedSurface) PURE;
1868 STDMETHOD(AddOverlayDirtyRect)(THIS_ LPRECT lpRect) PURE;
1869 STDMETHOD(Blt)(THIS_ LPRECT lpDestRect, LPDIRECTDRAWSURFACE2 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwFlags, LPDDBLTFX lpDDBltFx) PURE;
1870 STDMETHOD(BltBatch)(THIS_ LPDDBLTBATCH lpDDBltBatch, DWORD dwCount, DWORD dwFlags) PURE;
1871 STDMETHOD(BltFast)(THIS_ DWORD dwX, DWORD dwY, LPDIRECTDRAWSURFACE2 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwTrans) PURE;
1872 STDMETHOD(DeleteAttachedSurface)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE2 lpDDSAttachedSurface) PURE;
1873 STDMETHOD(EnumAttachedSurfaces)(THIS_ LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpEnumSurfacesCallback) PURE;
1874 STDMETHOD(EnumOverlayZOrders)(THIS_ DWORD dwFlags, LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpfnCallback) PURE;
1875 STDMETHOD(Flip)(THIS_ LPDIRECTDRAWSURFACE2 lpDDSurfaceTargetOverride, DWORD dwFlags) PURE;
1876 STDMETHOD(GetAttachedSurface)(THIS_ LPDDSCAPS lpDDSCaps, LPDIRECTDRAWSURFACE2 *lplpDDAttachedSurface) PURE;
1877 STDMETHOD(GetBltStatus)(THIS_ DWORD dwFlags) PURE;
1878 STDMETHOD(GetCaps)(THIS_ LPDDSCAPS lpDDSCaps) PURE;
1879 STDMETHOD(GetClipper)(THIS_ LPDIRECTDRAWCLIPPER *lplpDDClipper) PURE;
1880 STDMETHOD(GetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
1881 STDMETHOD(GetDC)(THIS_ HDC *lphDC) PURE;
1882 STDMETHOD(GetFlipStatus)(THIS_ DWORD dwFlags) PURE;
1883 STDMETHOD(GetOverlayPosition)(THIS_ LPLONG lplX, LPLONG lplY) PURE;
1884 STDMETHOD(GetPalette)(THIS_ LPDIRECTDRAWPALETTE *lplpDDPalette) PURE;
1885 STDMETHOD(GetPixelFormat)(THIS_ LPDDPIXELFORMAT lpDDPixelFormat) PURE;
1886 STDMETHOD(GetSurfaceDesc)(THIS_ LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
1887 STDMETHOD(Initialize)(THIS_ LPDIRECTDRAW lpDD, LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
1888 STDMETHOD(IsLost)(THIS) PURE;
1889 STDMETHOD(Lock)(THIS_ LPRECT lpDestRect, LPDDSURFACEDESC lpDDSurfaceDesc, DWORD dwFlags, HANDLE hEvent) PURE;
1890 STDMETHOD(ReleaseDC)(THIS_ HDC hDC) PURE;
1891 STDMETHOD(Restore)(THIS) PURE;
1892 STDMETHOD(SetClipper)(THIS_ LPDIRECTDRAWCLIPPER lpDDClipper) PURE;
1893 STDMETHOD(SetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
1894 STDMETHOD(SetOverlayPosition)(THIS_ LONG lX, LONG lY) PURE;
1895 STDMETHOD(SetPalette)(THIS_ LPDIRECTDRAWPALETTE lpDDPalette) PURE;
1896 STDMETHOD(Unlock)(THIS_ LPVOID lpSurfaceData) PURE;
1897 STDMETHOD(UpdateOverlay)(THIS_ LPRECT lpSrcRect, LPDIRECTDRAWSURFACE2 lpDDDestSurface, LPRECT lpDestRect, DWORD dwFlags, LPDDOVERLAYFX lpDDOverlayFx) PURE;
1898 STDMETHOD(UpdateOverlayDisplay)(THIS_ DWORD dwFlags) PURE;
1899 STDMETHOD(UpdateOverlayZOrder)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE2 lpDDSReference) PURE;
1900 /* added in v2 */
1901 STDMETHOD(GetDDInterface)(THIS_ LPVOID *lplpDD) PURE;
1902 STDMETHOD(PageLock)(THIS_ DWORD dwFlags) PURE;
1903 STDMETHOD(PageUnlock)(THIS_ DWORD dwFlags) PURE;
1905 #undef INTERFACE
1907 #if !defined(__cplusplus) || defined(CINTERFACE)
1908 /*** IUnknown methods ***/
1909 #define IDirectDrawSurface2_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
1910 #define IDirectDrawSurface2_AddRef(p) (p)->lpVtbl->AddRef(p)
1911 #define IDirectDrawSurface2_Release(p) (p)->lpVtbl->Release(p)
1912 /*** IDirectDrawSurface methods (almost) ***/
1913 #define IDirectDrawSurface2_AddAttachedSurface(p,a) (p)->lpVtbl->AddAttachedSurface(p,a)
1914 #define IDirectDrawSurface2_AddOverlayDirtyRect(p,a) (p)->lpVtbl->AddOverlayDirtyRect(p,a)
1915 #define IDirectDrawSurface2_Blt(p,a,b,c,d,e) (p)->lpVtbl->Blt(p,a,b,c,d,e)
1916 #define IDirectDrawSurface2_BltBatch(p,a,b,c) (p)->lpVtbl->BltBatch(p,a,b,c)
1917 #define IDirectDrawSurface2_BltFast(p,a,b,c,d,e) (p)->lpVtbl->BltFast(p,a,b,c,d,e)
1918 #define IDirectDrawSurface2_DeleteAttachedSurface(p,a,b) (p)->lpVtbl->DeleteAttachedSurface(p,a,b)
1919 #define IDirectDrawSurface2_EnumAttachedSurfaces(p,a,b) (p)->lpVtbl->EnumAttachedSurfaces(p,a,b)
1920 #define IDirectDrawSurface2_EnumOverlayZOrders(p,a,b,c) (p)->lpVtbl->EnumOverlayZOrders(p,a,b,c)
1921 #define IDirectDrawSurface2_Flip(p,a,b) (p)->lpVtbl->Flip(p,a,b)
1922 #define IDirectDrawSurface2_GetAttachedSurface(p,a,b) (p)->lpVtbl->GetAttachedSurface(p,a,b)
1923 #define IDirectDrawSurface2_GetBltStatus(p,a) (p)->lpVtbl->GetBltStatus(p,a)
1924 #define IDirectDrawSurface2_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a)
1925 #define IDirectDrawSurface2_GetClipper(p,a) (p)->lpVtbl->GetClipper(p,a)
1926 #define IDirectDrawSurface2_GetColorKey(p,a,b) (p)->lpVtbl->GetColorKey(p,a,b)
1927 #define IDirectDrawSurface2_GetDC(p,a) (p)->lpVtbl->GetDC(p,a)
1928 #define IDirectDrawSurface2_GetFlipStatus(p,a) (p)->lpVtbl->GetFlipStatus(p,a)
1929 #define IDirectDrawSurface2_GetOverlayPosition(p,a,b) (p)->lpVtbl->GetOverlayPosition(p,a,b)
1930 #define IDirectDrawSurface2_GetPalette(p,a) (p)->lpVtbl->GetPalette(p,a)
1931 #define IDirectDrawSurface2_GetPixelFormat(p,a) (p)->lpVtbl->GetPixelFormat(p,a)
1932 #define IDirectDrawSurface2_GetSurfaceDesc(p,a) (p)->lpVtbl->GetSurfaceDesc(p,a)
1933 #define IDirectDrawSurface2_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b)
1934 #define IDirectDrawSurface2_IsLost(p) (p)->lpVtbl->IsLost(p)
1935 #define IDirectDrawSurface2_Lock(p,a,b,c,d) (p)->lpVtbl->Lock(p,a,b,c,d)
1936 #define IDirectDrawSurface2_ReleaseDC(p,a) (p)->lpVtbl->ReleaseDC(p,a)
1937 #define IDirectDrawSurface2_Restore(p) (p)->lpVtbl->Restore(p)
1938 #define IDirectDrawSurface2_SetClipper(p,a) (p)->lpVtbl->SetClipper(p,a)
1939 #define IDirectDrawSurface2_SetColorKey(p,a,b) (p)->lpVtbl->SetColorKey(p,a,b)
1940 #define IDirectDrawSurface2_SetOverlayPosition(p,a,b) (p)->lpVtbl->SetOverlayPosition(p,a,b)
1941 #define IDirectDrawSurface2_SetPalette(p,a) (p)->lpVtbl->SetPalette(p,a)
1942 #define IDirectDrawSurface2_Unlock(p,a) (p)->lpVtbl->Unlock(p,a)
1943 #define IDirectDrawSurface2_UpdateOverlay(p,a,b,c,d,e) (p)->lpVtbl->UpdateOverlay(p,a,b,c,d,e)
1944 #define IDirectDrawSurface2_UpdateOverlayDisplay(p,a) (p)->lpVtbl->UpdateOverlayDisplay(p,a)
1945 #define IDirectDrawSurface2_UpdateOverlayZOrder(p,a,b) (p)->lpVtbl->UpdateOverlayZOrder(p,a,b)
1946 /*** IDirectDrawSurface2 methods ***/
1947 #define IDirectDrawSurface2_GetDDInterface(p,a) (p)->lpVtbl->GetDDInterface(p,a)
1948 #define IDirectDrawSurface2_PageLock(p,a) (p)->lpVtbl->PageLock(p,a)
1949 #define IDirectDrawSurface2_PageUnlock(p,a) (p)->lpVtbl->PageUnlock(p,a)
1950 #else
1951 /*** IUnknown methods ***/
1952 #define IDirectDrawSurface2_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
1953 #define IDirectDrawSurface2_AddRef(p) (p)->AddRef()
1954 #define IDirectDrawSurface2_Release(p) (p)->Release()
1955 /*** IDirectDrawSurface methods (almost) ***/
1956 #define IDirectDrawSurface2_AddAttachedSurface(p,a) (p)->AddAttachedSurface(a)
1957 #define IDirectDrawSurface2_AddOverlayDirtyRect(p,a) (p)->AddOverlayDirtyRect(a)
1958 #define IDirectDrawSurface2_Blt(p,a,b,c,d,e) (p)->Blt(a,b,c,d,e)
1959 #define IDirectDrawSurface2_BltBatch(p,a,b,c) (p)->BltBatch(a,b,c)
1960 #define IDirectDrawSurface2_BltFast(p,a,b,c,d,e) (p)->BltFast(a,b,c,d,e)
1961 #define IDirectDrawSurface2_DeleteAttachedSurface(p,a,b) (p)->DeleteAttachedSurface(a,b)
1962 #define IDirectDrawSurface2_EnumAttachedSurfaces(p,a,b) (p)->EnumAttachedSurfaces(a,b)
1963 #define IDirectDrawSurface2_EnumOverlayZOrders(p,a,b,c) (p)->EnumOverlayZOrders(a,b,c)
1964 #define IDirectDrawSurface2_Flip(p,a,b) (p)->Flip(a,b)
1965 #define IDirectDrawSurface2_GetAttachedSurface(p,a,b) (p)->GetAttachedSurface(a,b)
1966 #define IDirectDrawSurface2_GetBltStatus(p,a) (p)->GetBltStatus(a)
1967 #define IDirectDrawSurface2_GetCaps(p,a) (p)->GetCaps(a)
1968 #define IDirectDrawSurface2_GetClipper(p,a) (p)->GetClipper(a)
1969 #define IDirectDrawSurface2_GetColorKey(p,a,b) (p)->GetColorKey(a,b)
1970 #define IDirectDrawSurface2_GetDC(p,a) (p)->GetDC(a)
1971 #define IDirectDrawSurface2_GetFlipStatus(p,a) (p)->GetFlipStatus(a)
1972 #define IDirectDrawSurface2_GetOverlayPosition(p,a,b) (p)->GetOverlayPosition(a,b)
1973 #define IDirectDrawSurface2_GetPalette(p,a) (p)->GetPalette(a)
1974 #define IDirectDrawSurface2_GetPixelFormat(p,a) (p)->GetPixelFormat(a)
1975 #define IDirectDrawSurface2_GetSurfaceDesc(p,a) (p)->GetSurfaceDesc(a)
1976 #define IDirectDrawSurface2_Initialize(p,a,b) (p)->Initialize(a,b)
1977 #define IDirectDrawSurface2_IsLost(p) (p)->IsLost()
1978 #define IDirectDrawSurface2_Lock(p,a,b,c,d) (p)->Lock(a,b,c,d)
1979 #define IDirectDrawSurface2_ReleaseDC(p,a) (p)->ReleaseDC(a)
1980 #define IDirectDrawSurface2_Restore(p) (p)->Restore()
1981 #define IDirectDrawSurface2_SetClipper(p,a) (p)->SetClipper(a)
1982 #define IDirectDrawSurface2_SetColorKey(p,a,b) (p)->SetColorKey(a,b)
1983 #define IDirectDrawSurface2_SetOverlayPosition(p,a,b) (p)->SetOverlayPosition(a,b)
1984 #define IDirectDrawSurface2_SetPalette(p,a) (p)->SetPalette(a)
1985 #define IDirectDrawSurface2_Unlock(p,a) (p)->Unlock(a)
1986 #define IDirectDrawSurface2_UpdateOverlay(p,a,b,c,d,e) (p)->UpdateOverlay(a,b,c,d,e)
1987 #define IDirectDrawSurface2_UpdateOverlayDisplay(p,a) (p)->UpdateOverlayDisplay(a)
1988 #define IDirectDrawSurface2_UpdateOverlayZOrder(p,a,b) (p)->UpdateOverlayZOrder(a,b)
1989 /*** IDirectDrawSurface2 methods ***/
1990 #define IDirectDrawSurface2_GetDDInterface(p,a) (p)->GetDDInterface(a)
1991 #define IDirectDrawSurface2_PageLock(p,a) (p)->PageLock(a)
1992 #define IDirectDrawSurface2_PageUnlock(p,a) (p)->PageUnlock(a)
1993 #endif
1996 /*****************************************************************************
1997 * IDirectDrawSurface3 interface
1999 /* Cannot inherit from IDirectDrawSurface2 because the LPDIRECTDRAWSURFACE2 parameters
2000 * have been converted to LPDIRECTDRAWSURFACE3.
2002 #define INTERFACE IDirectDrawSurface3
2003 DECLARE_INTERFACE_(IDirectDrawSurface3,IUnknown)
2005 /*** IUnknown methods ***/
2006 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
2007 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
2008 STDMETHOD_(ULONG,Release)(THIS) PURE;
2009 /*** IDirectDrawSurface3 methods ***/
2010 STDMETHOD(AddAttachedSurface)(THIS_ LPDIRECTDRAWSURFACE3 lpDDSAttachedSurface) PURE;
2011 STDMETHOD(AddOverlayDirtyRect)(THIS_ LPRECT lpRect) PURE;
2012 STDMETHOD(Blt)(THIS_ LPRECT lpDestRect, LPDIRECTDRAWSURFACE3 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwFlags, LPDDBLTFX lpDDBltFx) PURE;
2013 STDMETHOD(BltBatch)(THIS_ LPDDBLTBATCH lpDDBltBatch, DWORD dwCount, DWORD dwFlags) PURE;
2014 STDMETHOD(BltFast)(THIS_ DWORD dwX, DWORD dwY, LPDIRECTDRAWSURFACE3 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwTrans) PURE;
2015 STDMETHOD(DeleteAttachedSurface)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE3 lpDDSAttachedSurface) PURE;
2016 STDMETHOD(EnumAttachedSurfaces)(THIS_ LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpEnumSurfacesCallback) PURE;
2017 STDMETHOD(EnumOverlayZOrders)(THIS_ DWORD dwFlags, LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpfnCallback) PURE;
2018 STDMETHOD(Flip)(THIS_ LPDIRECTDRAWSURFACE3 lpDDSurfaceTargetOverride, DWORD dwFlags) PURE;
2019 STDMETHOD(GetAttachedSurface)(THIS_ LPDDSCAPS lpDDSCaps, LPDIRECTDRAWSURFACE3 *lplpDDAttachedSurface) PURE;
2020 STDMETHOD(GetBltStatus)(THIS_ DWORD dwFlags) PURE;
2021 STDMETHOD(GetCaps)(THIS_ LPDDSCAPS lpDDSCaps) PURE;
2022 STDMETHOD(GetClipper)(THIS_ LPDIRECTDRAWCLIPPER *lplpDDClipper) PURE;
2023 STDMETHOD(GetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
2024 STDMETHOD(GetDC)(THIS_ HDC *lphDC) PURE;
2025 STDMETHOD(GetFlipStatus)(THIS_ DWORD dwFlags) PURE;
2026 STDMETHOD(GetOverlayPosition)(THIS_ LPLONG lplX, LPLONG lplY) PURE;
2027 STDMETHOD(GetPalette)(THIS_ LPDIRECTDRAWPALETTE *lplpDDPalette) PURE;
2028 STDMETHOD(GetPixelFormat)(THIS_ LPDDPIXELFORMAT lpDDPixelFormat) PURE;
2029 STDMETHOD(GetSurfaceDesc)(THIS_ LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
2030 STDMETHOD(Initialize)(THIS_ LPDIRECTDRAW lpDD, LPDDSURFACEDESC lpDDSurfaceDesc) PURE;
2031 STDMETHOD(IsLost)(THIS) PURE;
2032 STDMETHOD(Lock)(THIS_ LPRECT lpDestRect, LPDDSURFACEDESC lpDDSurfaceDesc, DWORD dwFlags, HANDLE hEvent) PURE;
2033 STDMETHOD(ReleaseDC)(THIS_ HDC hDC) PURE;
2034 STDMETHOD(Restore)(THIS) PURE;
2035 STDMETHOD(SetClipper)(THIS_ LPDIRECTDRAWCLIPPER lpDDClipper) PURE;
2036 STDMETHOD(SetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
2037 STDMETHOD(SetOverlayPosition)(THIS_ LONG lX, LONG lY) PURE;
2038 STDMETHOD(SetPalette)(THIS_ LPDIRECTDRAWPALETTE lpDDPalette) PURE;
2039 STDMETHOD(Unlock)(THIS_ LPVOID lpSurfaceData) PURE;
2040 STDMETHOD(UpdateOverlay)(THIS_ LPRECT lpSrcRect, LPDIRECTDRAWSURFACE3 lpDDDestSurface, LPRECT lpDestRect, DWORD dwFlags, LPDDOVERLAYFX lpDDOverlayFx) PURE;
2041 STDMETHOD(UpdateOverlayDisplay)(THIS_ DWORD dwFlags) PURE;
2042 STDMETHOD(UpdateOverlayZOrder)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE3 lpDDSReference) PURE;
2043 /* added in v2 */
2044 STDMETHOD(GetDDInterface)(THIS_ LPVOID *lplpDD) PURE;
2045 STDMETHOD(PageLock)(THIS_ DWORD dwFlags) PURE;
2046 STDMETHOD(PageUnlock)(THIS_ DWORD dwFlags) PURE;
2047 /* added in v3 */
2048 STDMETHOD(SetSurfaceDesc)(THIS_ LPDDSURFACEDESC lpDDSD, DWORD dwFlags) PURE;
2050 #undef INTERFACE
2052 #if !defined(__cplusplus) || defined(CINTERFACE)
2053 /*** IUnknown methods ***/
2054 #define IDirectDrawSurface3_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
2055 #define IDirectDrawSurface3_AddRef(p) (p)->lpVtbl->AddRef(p)
2056 #define IDirectDrawSurface3_Release(p) (p)->lpVtbl->Release(p)
2057 /*** IDirectDrawSurface methods (almost) ***/
2058 #define IDirectDrawSurface3_AddAttachedSurface(p,a) (p)->lpVtbl->AddAttachedSurface(p,a)
2059 #define IDirectDrawSurface3_AddOverlayDirtyRect(p,a) (p)->lpVtbl->AddOverlayDirtyRect(p,a)
2060 #define IDirectDrawSurface3_Blt(p,a,b,c,d,e) (p)->lpVtbl->Blt(p,a,b,c,d,e)
2061 #define IDirectDrawSurface3_BltBatch(p,a,b,c) (p)->lpVtbl->BltBatch(p,a,b,c)
2062 #define IDirectDrawSurface3_BltFast(p,a,b,c,d,e) (p)->lpVtbl->BltFast(p,a,b,c,d,e)
2063 #define IDirectDrawSurface3_DeleteAttachedSurface(p,a,b) (p)->lpVtbl->DeleteAttachedSurface(p,a,b)
2064 #define IDirectDrawSurface3_EnumAttachedSurfaces(p,a,b) (p)->lpVtbl->EnumAttachedSurfaces(p,a,b)
2065 #define IDirectDrawSurface3_EnumOverlayZOrders(p,a,b,c) (p)->lpVtbl->EnumOverlayZOrders(p,a,b,c)
2066 #define IDirectDrawSurface3_Flip(p,a,b) (p)->lpVtbl->Flip(p,a,b)
2067 #define IDirectDrawSurface3_GetAttachedSurface(p,a,b) (p)->lpVtbl->GetAttachedSurface(p,a,b)
2068 #define IDirectDrawSurface3_GetBltStatus(p,a) (p)->lpVtbl->GetBltStatus(p,a)
2069 #define IDirectDrawSurface3_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a)
2070 #define IDirectDrawSurface3_GetClipper(p,a) (p)->lpVtbl->GetClipper(p,a)
2071 #define IDirectDrawSurface3_GetColorKey(p,a,b) (p)->lpVtbl->GetColorKey(p,a,b)
2072 #define IDirectDrawSurface3_GetDC(p,a) (p)->lpVtbl->GetDC(p,a)
2073 #define IDirectDrawSurface3_GetFlipStatus(p,a) (p)->lpVtbl->GetFlipStatus(p,a)
2074 #define IDirectDrawSurface3_GetOverlayPosition(p,a,b) (p)->lpVtbl->GetOverlayPosition(p,a,b)
2075 #define IDirectDrawSurface3_GetPalette(p,a) (p)->lpVtbl->GetPalette(p,a)
2076 #define IDirectDrawSurface3_GetPixelFormat(p,a) (p)->lpVtbl->GetPixelFormat(p,a)
2077 #define IDirectDrawSurface3_GetSurfaceDesc(p,a) (p)->lpVtbl->GetSurfaceDesc(p,a)
2078 #define IDirectDrawSurface3_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b)
2079 #define IDirectDrawSurface3_IsLost(p) (p)->lpVtbl->IsLost(p)
2080 #define IDirectDrawSurface3_Lock(p,a,b,c,d) (p)->lpVtbl->Lock(p,a,b,c,d)
2081 #define IDirectDrawSurface3_ReleaseDC(p,a) (p)->lpVtbl->ReleaseDC(p,a)
2082 #define IDirectDrawSurface3_Restore(p) (p)->lpVtbl->Restore(p)
2083 #define IDirectDrawSurface3_SetClipper(p,a) (p)->lpVtbl->SetClipper(p,a)
2084 #define IDirectDrawSurface3_SetColorKey(p,a,b) (p)->lpVtbl->SetColorKey(p,a,b)
2085 #define IDirectDrawSurface3_SetOverlayPosition(p,a,b) (p)->lpVtbl->SetOverlayPosition(p,a,b)
2086 #define IDirectDrawSurface3_SetPalette(p,a) (p)->lpVtbl->SetPalette(p,a)
2087 #define IDirectDrawSurface3_Unlock(p,a) (p)->lpVtbl->Unlock(p,a)
2088 #define IDirectDrawSurface3_UpdateOverlay(p,a,b,c,d,e) (p)->lpVtbl->UpdateOverlay(p,a,b,c,d,e)
2089 #define IDirectDrawSurface3_UpdateOverlayDisplay(p,a) (p)->lpVtbl->UpdateOverlayDisplay(p,a)
2090 #define IDirectDrawSurface3_UpdateOverlayZOrder(p,a,b) (p)->lpVtbl->UpdateOverlayZOrder(p,a,b)
2091 /*** IDirectDrawSurface2 methods ***/
2092 #define IDirectDrawSurface3_GetDDInterface(p,a) (p)->lpVtbl->GetDDInterface(p,a)
2093 #define IDirectDrawSurface3_PageLock(p,a) (p)->lpVtbl->PageLock(p,a)
2094 #define IDirectDrawSurface3_PageUnlock(p,a) (p)->lpVtbl->PageUnlock(p,a)
2095 /*** IDirectDrawSurface3 methods ***/
2096 #define IDirectDrawSurface3_SetSurfaceDesc(p,a,b) (p)->lpVtbl->SetSurfaceDesc(p,a,b)
2097 #else
2098 /*** IUnknown methods ***/
2099 #define IDirectDrawSurface3_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
2100 #define IDirectDrawSurface3_AddRef(p) (p)->AddRef()
2101 #define IDirectDrawSurface3_Release(p) (p)->Release()
2102 /*** IDirectDrawSurface methods (almost) ***/
2103 #define IDirectDrawSurface3_AddAttachedSurface(p,a) (p)->AddAttachedSurface(a)
2104 #define IDirectDrawSurface3_AddOverlayDirtyRect(p,a) (p)->AddOverlayDirtyRect(a)
2105 #define IDirectDrawSurface3_Blt(p,a,b,c,d,e) (p)->Blt(a,b,c,d,e)
2106 #define IDirectDrawSurface3_BltBatch(p,a,b,c) (p)->BltBatch(a,b,c)
2107 #define IDirectDrawSurface3_BltFast(p,a,b,c,d,e) (p)->BltFast(a,b,c,d,e)
2108 #define IDirectDrawSurface3_DeleteAttachedSurface(p,a,b) (p)->DeleteAttachedSurface(a,b)
2109 #define IDirectDrawSurface3_EnumAttachedSurfaces(p,a,b) (p)->EnumAttachedSurfaces(a,b)
2110 #define IDirectDrawSurface3_EnumOverlayZOrders(p,a,b,c) (p)->EnumOverlayZOrders(a,b,c)
2111 #define IDirectDrawSurface3_Flip(p,a,b) (p)->Flip(a,b)
2112 #define IDirectDrawSurface3_GetAttachedSurface(p,a,b) (p)->GetAttachedSurface(a,b)
2113 #define IDirectDrawSurface3_GetBltStatus(p,a) (p)->GetBltStatus(a)
2114 #define IDirectDrawSurface3_GetCaps(p,a) (p)->GetCaps(a)
2115 #define IDirectDrawSurface3_GetClipper(p,a) (p)->GetClipper(a)
2116 #define IDirectDrawSurface3_GetColorKey(p,a,b) (p)->GetColorKey(a,b)
2117 #define IDirectDrawSurface3_GetDC(p,a) (p)->GetDC(a)
2118 #define IDirectDrawSurface3_GetFlipStatus(p,a) (p)->GetFlipStatus(a)
2119 #define IDirectDrawSurface3_GetOverlayPosition(p,a,b) (p)->GetOverlayPosition(a,b)
2120 #define IDirectDrawSurface3_GetPalette(p,a) (p)->GetPalette(a)
2121 #define IDirectDrawSurface3_GetPixelFormat(p,a) (p)->GetPixelFormat(a)
2122 #define IDirectDrawSurface3_GetSurfaceDesc(p,a) (p)->GetSurfaceDesc(a)
2123 #define IDirectDrawSurface3_Initialize(p,a,b) (p)->Initialize(a,b)
2124 #define IDirectDrawSurface3_IsLost(p) (p)->IsLost()
2125 #define IDirectDrawSurface3_Lock(p,a,b,c,d) (p)->Lock(a,b,c,d)
2126 #define IDirectDrawSurface3_ReleaseDC(p,a) (p)->ReleaseDC(a)
2127 #define IDirectDrawSurface3_Restore(p) (p)->Restore()
2128 #define IDirectDrawSurface3_SetClipper(p,a) (p)->SetClipper(a)
2129 #define IDirectDrawSurface3_SetColorKey(p,a,b) (p)->SetColorKey(a,b)
2130 #define IDirectDrawSurface3_SetOverlayPosition(p,a,b) (p)->SetOverlayPosition(a,b)
2131 #define IDirectDrawSurface3_SetPalette(p,a) (p)->SetPalette(a)
2132 #define IDirectDrawSurface3_Unlock(p,a) (p)->Unlock(a)
2133 #define IDirectDrawSurface3_UpdateOverlay(p,a,b,c,d,e) (p)->UpdateOverlay(a,b,c,d,e)
2134 #define IDirectDrawSurface3_UpdateOverlayDisplay(p,a) (p)->UpdateOverlayDisplay(a)
2135 #define IDirectDrawSurface3_UpdateOverlayZOrder(p,a,b) (p)->UpdateOverlayZOrder(a,b)
2136 /*** IDirectDrawSurface2 methods ***/
2137 #define IDirectDrawSurface3_GetDDInterface(p,a) (p)->GetDDInterface(a)
2138 #define IDirectDrawSurface3_PageLock(p,a) (p)->PageLock(a)
2139 #define IDirectDrawSurface3_PageUnlock(p,a) (p)->PageUnlock(a)
2140 /*** IDirectDrawSurface3 methods ***/
2141 #define IDirectDrawSurface3_SetSurfaceDesc(p,a,b) (p)->SetSurfaceDesc(a,b)
2142 #endif
2145 /*****************************************************************************
2146 * IDirectDrawSurface4 interface
2148 /* Cannot inherit from IDirectDrawSurface2 because DDSCAPS changed to DDSCAPS2.
2150 #define INTERFACE IDirectDrawSurface4
2151 DECLARE_INTERFACE_(IDirectDrawSurface4,IUnknown)
2153 /*** IUnknown methods ***/
2154 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
2155 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
2156 STDMETHOD_(ULONG,Release)(THIS) PURE;
2157 /*** IDirectDrawSurface4 methods ***/
2158 STDMETHOD(AddAttachedSurface)(THIS_ LPDIRECTDRAWSURFACE4 lpDDSAttachedSurface) PURE;
2159 STDMETHOD(AddOverlayDirtyRect)(THIS_ LPRECT lpRect) PURE;
2160 STDMETHOD(Blt)(THIS_ LPRECT lpDestRect, LPDIRECTDRAWSURFACE4 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwFlags, LPDDBLTFX lpDDBltFx) PURE;
2161 STDMETHOD(BltBatch)(THIS_ LPDDBLTBATCH lpDDBltBatch, DWORD dwCount, DWORD dwFlags) PURE;
2162 STDMETHOD(BltFast)(THIS_ DWORD dwX, DWORD dwY, LPDIRECTDRAWSURFACE4 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwTrans) PURE;
2163 STDMETHOD(DeleteAttachedSurface)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE4 lpDDSAttachedSurface) PURE;
2164 STDMETHOD(EnumAttachedSurfaces)(THIS_ LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpEnumSurfacesCallback) PURE;
2165 STDMETHOD(EnumOverlayZOrders)(THIS_ DWORD dwFlags, LPVOID lpContext, LPDDENUMSURFACESCALLBACK lpfnCallback) PURE;
2166 STDMETHOD(Flip)(THIS_ LPDIRECTDRAWSURFACE4 lpDDSurfaceTargetOverride, DWORD dwFlags) PURE;
2167 STDMETHOD(GetAttachedSurface)(THIS_ LPDDSCAPS2 lpDDSCaps, LPDIRECTDRAWSURFACE4 *lplpDDAttachedSurface) PURE;
2168 STDMETHOD(GetBltStatus)(THIS_ DWORD dwFlags) PURE;
2169 STDMETHOD(GetCaps)(THIS_ LPDDSCAPS2 lpDDSCaps) PURE;
2170 STDMETHOD(GetClipper)(THIS_ LPDIRECTDRAWCLIPPER *lplpDDClipper) PURE;
2171 STDMETHOD(GetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
2172 STDMETHOD(GetDC)(THIS_ HDC *lphDC) PURE;
2173 STDMETHOD(GetFlipStatus)(THIS_ DWORD dwFlags) PURE;
2174 STDMETHOD(GetOverlayPosition)(THIS_ LPLONG lplX, LPLONG lplY) PURE;
2175 STDMETHOD(GetPalette)(THIS_ LPDIRECTDRAWPALETTE *lplpDDPalette) PURE;
2176 STDMETHOD(GetPixelFormat)(THIS_ LPDDPIXELFORMAT lpDDPixelFormat) PURE;
2177 STDMETHOD(GetSurfaceDesc)(THIS_ LPDDSURFACEDESC2 lpDDSurfaceDesc) PURE;
2178 STDMETHOD(Initialize)(THIS_ LPDIRECTDRAW lpDD, LPDDSURFACEDESC2 lpDDSurfaceDesc) PURE;
2179 STDMETHOD(IsLost)(THIS) PURE;
2180 STDMETHOD(Lock)(THIS_ LPRECT lpDestRect, LPDDSURFACEDESC2 lpDDSurfaceDesc, DWORD dwFlags, HANDLE hEvent) PURE;
2181 STDMETHOD(ReleaseDC)(THIS_ HDC hDC) PURE;
2182 STDMETHOD(Restore)(THIS) PURE;
2183 STDMETHOD(SetClipper)(THIS_ LPDIRECTDRAWCLIPPER lpDDClipper) PURE;
2184 STDMETHOD(SetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
2185 STDMETHOD(SetOverlayPosition)(THIS_ LONG lX, LONG lY) PURE;
2186 STDMETHOD(SetPalette)(THIS_ LPDIRECTDRAWPALETTE lpDDPalette) PURE;
2187 STDMETHOD(Unlock)(THIS_ LPRECT lpSurfaceData) PURE;
2188 STDMETHOD(UpdateOverlay)(THIS_ LPRECT lpSrcRect, LPDIRECTDRAWSURFACE4 lpDDDestSurface, LPRECT lpDestRect, DWORD dwFlags, LPDDOVERLAYFX lpDDOverlayFx) PURE;
2189 STDMETHOD(UpdateOverlayDisplay)(THIS_ DWORD dwFlags) PURE;
2190 STDMETHOD(UpdateOverlayZOrder)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE4 lpDDSReference) PURE;
2191 /* added in v2 */
2192 STDMETHOD(GetDDInterface)(THIS_ LPVOID *lplpDD) PURE;
2193 STDMETHOD(PageLock)(THIS_ DWORD dwFlags) PURE;
2194 STDMETHOD(PageUnlock)(THIS_ DWORD dwFlags) PURE;
2195 /* added in v3 */
2196 STDMETHOD(SetSurfaceDesc)(THIS_ LPDDSURFACEDESC2 lpDDSD, DWORD dwFlags) PURE;
2197 /* added in v4 */
2198 STDMETHOD(SetPrivateData)(THIS_ REFGUID tag, LPVOID pData, DWORD cbSize, DWORD dwFlags) PURE;
2199 STDMETHOD(GetPrivateData)(THIS_ REFGUID tag, LPVOID pBuffer, LPDWORD pcbBufferSize) PURE;
2200 STDMETHOD(FreePrivateData)(THIS_ REFGUID tag) PURE;
2201 STDMETHOD(GetUniquenessValue)(THIS_ LPDWORD pValue) PURE;
2202 STDMETHOD(ChangeUniquenessValue)(THIS) PURE;
2204 #undef INTERFACE
2206 #if !defined(__cplusplus) || defined(CINTERFACE)
2207 /*** IUnknown methods ***/
2208 #define IDirectDrawSurface4_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
2209 #define IDirectDrawSurface4_AddRef(p) (p)->lpVtbl->AddRef(p)
2210 #define IDirectDrawSurface4_Release(p) (p)->lpVtbl->Release(p)
2211 /*** IDirectDrawSurface (almost) methods ***/
2212 #define IDirectDrawSurface4_AddAttachedSurface(p,a) (p)->lpVtbl->AddAttachedSurface(p,a)
2213 #define IDirectDrawSurface4_AddOverlayDirtyRect(p,a) (p)->lpVtbl->AddOverlayDirtyRect(p,a)
2214 #define IDirectDrawSurface4_Blt(p,a,b,c,d,e) (p)->lpVtbl->Blt(p,a,b,c,d,e)
2215 #define IDirectDrawSurface4_BltBatch(p,a,b,c) (p)->lpVtbl->BltBatch(p,a,b,c)
2216 #define IDirectDrawSurface4_BltFast(p,a,b,c,d,e) (p)->lpVtbl->BltFast(p,a,b,c,d,e)
2217 #define IDirectDrawSurface4_DeleteAttachedSurface(p,a,b) (p)->lpVtbl->DeleteAttachedSurface(p,a,b)
2218 #define IDirectDrawSurface4_EnumAttachedSurfaces(p,a,b) (p)->lpVtbl->EnumAttachedSurfaces(p,a,b)
2219 #define IDirectDrawSurface4_EnumOverlayZOrders(p,a,b,c) (p)->lpVtbl->EnumOverlayZOrders(p,a,b,c)
2220 #define IDirectDrawSurface4_Flip(p,a,b) (p)->lpVtbl->Flip(p,a,b)
2221 #define IDirectDrawSurface4_GetAttachedSurface(p,a,b) (p)->lpVtbl->GetAttachedSurface(p,a,b)
2222 #define IDirectDrawSurface4_GetBltStatus(p,a) (p)->lpVtbl->GetBltStatus(p,a)
2223 #define IDirectDrawSurface4_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a)
2224 #define IDirectDrawSurface4_GetClipper(p,a) (p)->lpVtbl->GetClipper(p,a)
2225 #define IDirectDrawSurface4_GetColorKey(p,a,b) (p)->lpVtbl->GetColorKey(p,a,b)
2226 #define IDirectDrawSurface4_GetDC(p,a) (p)->lpVtbl->GetDC(p,a)
2227 #define IDirectDrawSurface4_GetFlipStatus(p,a) (p)->lpVtbl->GetFlipStatus(p,a)
2228 #define IDirectDrawSurface4_GetOverlayPosition(p,a,b) (p)->lpVtbl->GetOverlayPosition(p,a,b)
2229 #define IDirectDrawSurface4_GetPalette(p,a) (p)->lpVtbl->GetPalette(p,a)
2230 #define IDirectDrawSurface4_GetPixelFormat(p,a) (p)->lpVtbl->GetPixelFormat(p,a)
2231 #define IDirectDrawSurface4_GetSurfaceDesc(p,a) (p)->lpVtbl->GetSurfaceDesc(p,a)
2232 #define IDirectDrawSurface4_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b)
2233 #define IDirectDrawSurface4_IsLost(p) (p)->lpVtbl->IsLost(p)
2234 #define IDirectDrawSurface4_Lock(p,a,b,c,d) (p)->lpVtbl->Lock(p,a,b,c,d)
2235 #define IDirectDrawSurface4_ReleaseDC(p,a) (p)->lpVtbl->ReleaseDC(p,a)
2236 #define IDirectDrawSurface4_Restore(p) (p)->lpVtbl->Restore(p)
2237 #define IDirectDrawSurface4_SetClipper(p,a) (p)->lpVtbl->SetClipper(p,a)
2238 #define IDirectDrawSurface4_SetColorKey(p,a,b) (p)->lpVtbl->SetColorKey(p,a,b)
2239 #define IDirectDrawSurface4_SetOverlayPosition(p,a,b) (p)->lpVtbl->SetOverlayPosition(p,a,b)
2240 #define IDirectDrawSurface4_SetPalette(p,a) (p)->lpVtbl->SetPalette(p,a)
2241 #define IDirectDrawSurface4_Unlock(p,a) (p)->lpVtbl->Unlock(p,a)
2242 #define IDirectDrawSurface4_UpdateOverlay(p,a,b,c,d,e) (p)->lpVtbl->UpdateOverlay(p,a,b,c,d,e)
2243 #define IDirectDrawSurface4_UpdateOverlayDisplay(p,a) (p)->lpVtbl->UpdateOverlayDisplay(p,a)
2244 #define IDirectDrawSurface4_UpdateOverlayZOrder(p,a,b) (p)->lpVtbl->UpdateOverlayZOrder(p,a,b)
2245 /*** IDirectDrawSurface2 methods ***/
2246 #define IDirectDrawSurface4_GetDDInterface(p,a) (p)->lpVtbl->GetDDInterface(p,a)
2247 #define IDirectDrawSurface4_PageLock(p,a) (p)->lpVtbl->PageLock(p,a)
2248 #define IDirectDrawSurface4_PageUnlock(p,a) (p)->lpVtbl->PageUnlock(p,a)
2249 /*** IDirectDrawSurface3 methods ***/
2250 #define IDirectDrawSurface4_SetSurfaceDesc(p,a,b) (p)->lpVtbl->SetSurfaceDesc(p,a,b)
2251 /*** IDirectDrawSurface4 methods ***/
2252 #define IDirectDrawSurface4_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d)
2253 #define IDirectDrawSurface4_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c)
2254 #define IDirectDrawSurface4_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a)
2255 #define IDirectDrawSurface4_GetUniquenessValue(p,a) (p)->lpVtbl->GetUniquenessValue(p,a)
2256 #define IDirectDrawSurface4_ChangeUniquenessValue(p) (p)->lpVtbl->ChangeUniquenessValue(p)
2257 #else
2258 /*** IUnknown methods ***/
2259 #define IDirectDrawSurface4_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
2260 #define IDirectDrawSurface4_AddRef(p) (p)->AddRef()
2261 #define IDirectDrawSurface4_Release(p) (p)->Release()
2262 /*** IDirectDrawSurface (almost) methods ***/
2263 #define IDirectDrawSurface4_AddAttachedSurface(p,a) (p)->AddAttachedSurface(a)
2264 #define IDirectDrawSurface4_AddOverlayDirtyRect(p,a) (p)->AddOverlayDirtyRect(a)
2265 #define IDirectDrawSurface4_Blt(p,a,b,c,d,e) (p)->Blt(a,b,c,d,e)
2266 #define IDirectDrawSurface4_BltBatch(p,a,b,c) (p)->BltBatch(a,b,c)
2267 #define IDirectDrawSurface4_BltFast(p,a,b,c,d,e) (p)->BltFast(a,b,c,d,e)
2268 #define IDirectDrawSurface4_DeleteAttachedSurface(p,a,b) (p)->DeleteAttachedSurface(a,b)
2269 #define IDirectDrawSurface4_EnumAttachedSurfaces(p,a,b) (p)->EnumAttachedSurfaces(a,b)
2270 #define IDirectDrawSurface4_EnumOverlayZOrders(p,a,b,c) (p)->EnumOverlayZOrders(a,b,c)
2271 #define IDirectDrawSurface4_Flip(p,a,b) (p)->Flip(a,b)
2272 #define IDirectDrawSurface4_GetAttachedSurface(p,a,b) (p)->GetAttachedSurface(a,b)
2273 #define IDirectDrawSurface4_GetBltStatus(p,a) (p)->GetBltStatus(a)
2274 #define IDirectDrawSurface4_GetCaps(p,a) (p)->GetCaps(a)
2275 #define IDirectDrawSurface4_GetClipper(p,a) (p)->GetClipper(a)
2276 #define IDirectDrawSurface4_GetColorKey(p,a,b) (p)->GetColorKey(a,b)
2277 #define IDirectDrawSurface4_GetDC(p,a) (p)->GetDC(a)
2278 #define IDirectDrawSurface4_GetFlipStatus(p,a) (p)->GetFlipStatus(a)
2279 #define IDirectDrawSurface4_GetOverlayPosition(p,a,b) (p)->GetOverlayPosition(a,b)
2280 #define IDirectDrawSurface4_GetPalette(p,a) (p)->GetPalette(a)
2281 #define IDirectDrawSurface4_GetPixelFormat(p,a) (p)->GetPixelFormat(a)
2282 #define IDirectDrawSurface4_GetSurfaceDesc(p,a) (p)->GetSurfaceDesc(a)
2283 #define IDirectDrawSurface4_Initialize(p,a,b) (p)->Initialize(a,b)
2284 #define IDirectDrawSurface4_IsLost(p) (p)->IsLost()
2285 #define IDirectDrawSurface4_Lock(p,a,b,c,d) (p)->Lock(a,b,c,d)
2286 #define IDirectDrawSurface4_ReleaseDC(p,a) (p)->ReleaseDC(a)
2287 #define IDirectDrawSurface4_Restore(p) (p)->Restore()
2288 #define IDirectDrawSurface4_SetClipper(p,a) (p)->SetClipper(a)
2289 #define IDirectDrawSurface4_SetColorKey(p,a,b) (p)->SetColorKey(a,b)
2290 #define IDirectDrawSurface4_SetOverlayPosition(p,a,b) (p)->SetOverlayPosition(a,b)
2291 #define IDirectDrawSurface4_SetPalette(p,a) (p)->SetPalette(a)
2292 #define IDirectDrawSurface4_Unlock(p,a) (p)->Unlock(a)
2293 #define IDirectDrawSurface4_UpdateOverlay(p,a,b,c,d,e) (p)->UpdateOverlay(a,b,c,d,e)
2294 #define IDirectDrawSurface4_UpdateOverlayDisplay(p,a) (p)->UpdateOverlayDisplay(a)
2295 #define IDirectDrawSurface4_UpdateOverlayZOrder(p,a,b) (p)->UpdateOverlayZOrder(a,b)
2296 /*** IDirectDrawSurface2 methods ***/
2297 #define IDirectDrawSurface4_GetDDInterface(p,a) (p)->GetDDInterface(a)
2298 #define IDirectDrawSurface4_PageLock(p,a) (p)->PageLock(a)
2299 #define IDirectDrawSurface4_PageUnlock(p,a) (p)->PageUnlock(a)
2300 /*** IDirectDrawSurface3 methods ***/
2301 #define IDirectDrawSurface4_SetSurfaceDesc(p,a,b) (p)->SetSurfaceDesc(a,b)
2302 /*** IDirectDrawSurface4 methods ***/
2303 #define IDirectDrawSurface4_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d)
2304 #define IDirectDrawSurface4_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c)
2305 #define IDirectDrawSurface4_FreePrivateData(p,a) (p)->FreePrivateData(a)
2306 #define IDirectDrawSurface4_GetUniquenessValue(p,a) (p)->GetUniquenessValue(a)
2307 #define IDirectDrawSurface4_ChangeUniquenessValue(p) (p)->ChangeUniquenessValue()
2308 #endif
2311 /*****************************************************************************
2312 * IDirectDrawSurface7 interface
2314 #define INTERFACE IDirectDrawSurface7
2315 DECLARE_INTERFACE_(IDirectDrawSurface7,IUnknown)
2317 /*** IUnknown methods ***/
2318 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
2319 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
2320 STDMETHOD_(ULONG,Release)(THIS) PURE;
2321 /*** IDirectDrawSurface7 methods ***/
2322 STDMETHOD(AddAttachedSurface)(THIS_ LPDIRECTDRAWSURFACE7 lpDDSAttachedSurface) PURE;
2323 STDMETHOD(AddOverlayDirtyRect)(THIS_ LPRECT lpRect) PURE;
2324 STDMETHOD(Blt)(THIS_ LPRECT lpDestRect, LPDIRECTDRAWSURFACE7 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwFlags, LPDDBLTFX lpDDBltFx) PURE;
2325 STDMETHOD(BltBatch)(THIS_ LPDDBLTBATCH lpDDBltBatch, DWORD dwCount, DWORD dwFlags) PURE;
2326 STDMETHOD(BltFast)(THIS_ DWORD dwX, DWORD dwY, LPDIRECTDRAWSURFACE7 lpDDSrcSurface, LPRECT lpSrcRect, DWORD dwTrans) PURE;
2327 STDMETHOD(DeleteAttachedSurface)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE7 lpDDSAttachedSurface) PURE;
2328 STDMETHOD(EnumAttachedSurfaces)(THIS_ LPVOID lpContext, LPDDENUMSURFACESCALLBACK7 lpEnumSurfacesCallback) PURE;
2329 STDMETHOD(EnumOverlayZOrders)(THIS_ DWORD dwFlags, LPVOID lpContext, LPDDENUMSURFACESCALLBACK7 lpfnCallback) PURE;
2330 STDMETHOD(Flip)(THIS_ LPDIRECTDRAWSURFACE7 lpDDSurfaceTargetOverride, DWORD dwFlags) PURE;
2331 STDMETHOD(GetAttachedSurface)(THIS_ LPDDSCAPS2 lpDDSCaps, LPDIRECTDRAWSURFACE7 *lplpDDAttachedSurface) PURE;
2332 STDMETHOD(GetBltStatus)(THIS_ DWORD dwFlags) PURE;
2333 STDMETHOD(GetCaps)(THIS_ LPDDSCAPS2 lpDDSCaps) PURE;
2334 STDMETHOD(GetClipper)(THIS_ LPDIRECTDRAWCLIPPER *lplpDDClipper) PURE;
2335 STDMETHOD(GetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
2336 STDMETHOD(GetDC)(THIS_ HDC *lphDC) PURE;
2337 STDMETHOD(GetFlipStatus)(THIS_ DWORD dwFlags) PURE;
2338 STDMETHOD(GetOverlayPosition)(THIS_ LPLONG lplX, LPLONG lplY) PURE;
2339 STDMETHOD(GetPalette)(THIS_ LPDIRECTDRAWPALETTE *lplpDDPalette) PURE;
2340 STDMETHOD(GetPixelFormat)(THIS_ LPDDPIXELFORMAT lpDDPixelFormat) PURE;
2341 STDMETHOD(GetSurfaceDesc)(THIS_ LPDDSURFACEDESC2 lpDDSurfaceDesc) PURE;
2342 STDMETHOD(Initialize)(THIS_ LPDIRECTDRAW lpDD, LPDDSURFACEDESC2 lpDDSurfaceDesc) PURE;
2343 STDMETHOD(IsLost)(THIS) PURE;
2344 STDMETHOD(Lock)(THIS_ LPRECT lpDestRect, LPDDSURFACEDESC2 lpDDSurfaceDesc, DWORD dwFlags, HANDLE hEvent) PURE;
2345 STDMETHOD(ReleaseDC)(THIS_ HDC hDC) PURE;
2346 STDMETHOD(Restore)(THIS) PURE;
2347 STDMETHOD(SetClipper)(THIS_ LPDIRECTDRAWCLIPPER lpDDClipper) PURE;
2348 STDMETHOD(SetColorKey)(THIS_ DWORD dwFlags, LPDDCOLORKEY lpDDColorKey) PURE;
2349 STDMETHOD(SetOverlayPosition)(THIS_ LONG lX, LONG lY) PURE;
2350 STDMETHOD(SetPalette)(THIS_ LPDIRECTDRAWPALETTE lpDDPalette) PURE;
2351 STDMETHOD(Unlock)(THIS_ LPRECT lpSurfaceData) PURE;
2352 STDMETHOD(UpdateOverlay)(THIS_ LPRECT lpSrcRect, LPDIRECTDRAWSURFACE7 lpDDDestSurface, LPRECT lpDestRect, DWORD dwFlags, LPDDOVERLAYFX lpDDOverlayFx) PURE;
2353 STDMETHOD(UpdateOverlayDisplay)(THIS_ DWORD dwFlags) PURE;
2354 STDMETHOD(UpdateOverlayZOrder)(THIS_ DWORD dwFlags, LPDIRECTDRAWSURFACE7 lpDDSReference) PURE;
2355 /* added in v2 */
2356 STDMETHOD(GetDDInterface)(THIS_ LPVOID *lplpDD) PURE;
2357 STDMETHOD(PageLock)(THIS_ DWORD dwFlags) PURE;
2358 STDMETHOD(PageUnlock)(THIS_ DWORD dwFlags) PURE;
2359 /* added in v3 */
2360 STDMETHOD(SetSurfaceDesc)(THIS_ LPDDSURFACEDESC2 lpDDSD, DWORD dwFlags) PURE;
2361 /* added in v4 */
2362 STDMETHOD(SetPrivateData)(THIS_ REFGUID tag, LPVOID pData, DWORD cbSize, DWORD dwFlags) PURE;
2363 STDMETHOD(GetPrivateData)(THIS_ REFGUID tag, LPVOID pBuffer, LPDWORD pcbBufferSize) PURE;
2364 STDMETHOD(FreePrivateData)(THIS_ REFGUID tag) PURE;
2365 STDMETHOD(GetUniquenessValue)(THIS_ LPDWORD pValue) PURE;
2366 STDMETHOD(ChangeUniquenessValue)(THIS) PURE;
2367 /* added in v7 */
2368 STDMETHOD(SetPriority)(THIS_ DWORD prio) PURE;
2369 STDMETHOD(GetPriority)(THIS_ LPDWORD prio) PURE;
2370 STDMETHOD(SetLOD)(THIS_ DWORD lod) PURE;
2371 STDMETHOD(GetLOD)(THIS_ LPDWORD lod) PURE;
2373 #undef INTERFACE
2375 #if !defined(__cplusplus) || defined(CINTERFACE)
2376 /*** IUnknown methods ***/
2377 #define IDirectDrawSurface7_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
2378 #define IDirectDrawSurface7_AddRef(p) (p)->lpVtbl->AddRef(p)
2379 #define IDirectDrawSurface7_Release(p) (p)->lpVtbl->Release(p)
2380 /*** IDirectDrawSurface (almost) methods ***/
2381 #define IDirectDrawSurface7_AddAttachedSurface(p,a) (p)->lpVtbl->AddAttachedSurface(p,a)
2382 #define IDirectDrawSurface7_AddOverlayDirtyRect(p,a) (p)->lpVtbl->AddOverlayDirtyRect(p,a)
2383 #define IDirectDrawSurface7_Blt(p,a,b,c,d,e) (p)->lpVtbl->Blt(p,a,b,c,d,e)
2384 #define IDirectDrawSurface7_BltBatch(p,a,b,c) (p)->lpVtbl->BltBatch(p,a,b,c)
2385 #define IDirectDrawSurface7_BltFast(p,a,b,c,d,e) (p)->lpVtbl->BltFast(p,a,b,c,d,e)
2386 #define IDirectDrawSurface7_DeleteAttachedSurface(p,a,b) (p)->lpVtbl->DeleteAttachedSurface(p,a,b)
2387 #define IDirectDrawSurface7_EnumAttachedSurfaces(p,a,b) (p)->lpVtbl->EnumAttachedSurfaces(p,a,b)
2388 #define IDirectDrawSurface7_EnumOverlayZOrders(p,a,b,c) (p)->lpVtbl->EnumOverlayZOrders(p,a,b,c)
2389 #define IDirectDrawSurface7_Flip(p,a,b) (p)->lpVtbl->Flip(p,a,b)
2390 #define IDirectDrawSurface7_GetAttachedSurface(p,a,b) (p)->lpVtbl->GetAttachedSurface(p,a,b)
2391 #define IDirectDrawSurface7_GetBltStatus(p,a) (p)->lpVtbl->GetBltStatus(p,a)
2392 #define IDirectDrawSurface7_GetCaps(p,a) (p)->lpVtbl->GetCaps(p,a)
2393 #define IDirectDrawSurface7_GetClipper(p,a) (p)->lpVtbl->GetClipper(p,a)
2394 #define IDirectDrawSurface7_GetColorKey(p,a,b) (p)->lpVtbl->GetColorKey(p,a,b)
2395 #define IDirectDrawSurface7_GetDC(p,a) (p)->lpVtbl->GetDC(p,a)
2396 #define IDirectDrawSurface7_GetFlipStatus(p,a) (p)->lpVtbl->GetFlipStatus(p,a)
2397 #define IDirectDrawSurface7_GetOverlayPosition(p,a,b) (p)->lpVtbl->GetOverlayPosition(p,a,b)
2398 #define IDirectDrawSurface7_GetPalette(p,a) (p)->lpVtbl->GetPalette(p,a)
2399 #define IDirectDrawSurface7_GetPixelFormat(p,a) (p)->lpVtbl->GetPixelFormat(p,a)
2400 #define IDirectDrawSurface7_GetSurfaceDesc(p,a) (p)->lpVtbl->GetSurfaceDesc(p,a)
2401 #define IDirectDrawSurface7_Initialize(p,a,b) (p)->lpVtbl->Initialize(p,a,b)
2402 #define IDirectDrawSurface7_IsLost(p) (p)->lpVtbl->IsLost(p)
2403 #define IDirectDrawSurface7_Lock(p,a,b,c,d) (p)->lpVtbl->Lock(p,a,b,c,d)
2404 #define IDirectDrawSurface7_ReleaseDC(p,a) (p)->lpVtbl->ReleaseDC(p,a)
2405 #define IDirectDrawSurface7_Restore(p) (p)->lpVtbl->Restore(p)
2406 #define IDirectDrawSurface7_SetClipper(p,a) (p)->lpVtbl->SetClipper(p,a)
2407 #define IDirectDrawSurface7_SetColorKey(p,a,b) (p)->lpVtbl->SetColorKey(p,a,b)
2408 #define IDirectDrawSurface7_SetOverlayPosition(p,a,b) (p)->lpVtbl->SetOverlayPosition(p,a,b)
2409 #define IDirectDrawSurface7_SetPalette(p,a) (p)->lpVtbl->SetPalette(p,a)
2410 #define IDirectDrawSurface7_Unlock(p,a) (p)->lpVtbl->Unlock(p,a)
2411 #define IDirectDrawSurface7_UpdateOverlay(p,a,b,c,d,e) (p)->lpVtbl->UpdateOverlay(p,a,b,c,d,e)
2412 #define IDirectDrawSurface7_UpdateOverlayDisplay(p,a) (p)->lpVtbl->UpdateOverlayDisplay(p,a)
2413 #define IDirectDrawSurface7_UpdateOverlayZOrder(p,a,b) (p)->lpVtbl->UpdateOverlayZOrder(p,a,b)
2414 /*** IDirectDrawSurface2 methods ***/
2415 #define IDirectDrawSurface7_GetDDInterface(p,a) (p)->lpVtbl->GetDDInterface(p,a)
2416 #define IDirectDrawSurface7_PageLock(p,a) (p)->lpVtbl->PageLock(p,a)
2417 #define IDirectDrawSurface7_PageUnlock(p,a) (p)->lpVtbl->PageUnlock(p,a)
2418 /*** IDirectDrawSurface3 methods ***/
2419 #define IDirectDrawSurface7_SetSurfaceDesc(p,a,b) (p)->lpVtbl->SetSurfaceDesc(p,a,b)
2420 /*** IDirectDrawSurface4 methods ***/
2421 #define IDirectDrawSurface7_SetPrivateData(p,a,b,c,d) (p)->lpVtbl->SetPrivateData(p,a,b,c,d)
2422 #define IDirectDrawSurface7_GetPrivateData(p,a,b,c) (p)->lpVtbl->GetPrivateData(p,a,b,c)
2423 #define IDirectDrawSurface7_FreePrivateData(p,a) (p)->lpVtbl->FreePrivateData(p,a)
2424 #define IDirectDrawSurface7_GetUniquenessValue(p,a) (p)->lpVtbl->GetUniquenessValue(p,a)
2425 #define IDirectDrawSurface7_ChangeUniquenessValue(p) (p)->lpVtbl->ChangeUniquenessValue(p)
2426 /*** IDirectDrawSurface7 methods ***/
2427 #define IDirectDrawSurface7_SetPriority(p,a) (p)->lpVtbl->SetPriority(p,a)
2428 #define IDirectDrawSurface7_GetPriority(p,a) (p)->lpVtbl->GetPriority(p,a)
2429 #define IDirectDrawSurface7_SetLOD(p,a) (p)->lpVtbl->SetLOD(p,a)
2430 #define IDirectDrawSurface7_GetLOD(p,a) (p)->lpVtbl->GetLOD(p,a)
2431 #else
2432 /*** IUnknown methods ***/
2433 #define IDirectDrawSurface7_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
2434 #define IDirectDrawSurface7_AddRef(p) (p)->AddRef()
2435 #define IDirectDrawSurface7_Release(p) (p)->Release()
2436 /*** IDirectDrawSurface (almost) methods ***/
2437 #define IDirectDrawSurface7_AddAttachedSurface(p,a) (p)->AddAttachedSurface(a)
2438 #define IDirectDrawSurface7_AddOverlayDirtyRect(p,a) (p)->AddOverlayDirtyRect(a)
2439 #define IDirectDrawSurface7_Blt(p,a,b,c,d,e) (p)->Blt(a,b,c,d,e)
2440 #define IDirectDrawSurface7_BltBatch(p,a,b,c) (p)->BltBatch(a,b,c)
2441 #define IDirectDrawSurface7_BltFast(p,a,b,c,d,e) (p)->BltFast(a,b,c,d,e)
2442 #define IDirectDrawSurface7_DeleteAttachedSurface(p,a,b) (p)->DeleteAttachedSurface(a,b)
2443 #define IDirectDrawSurface7_EnumAttachedSurfaces(p,a,b) (p)->EnumAttachedSurfaces(a,b)
2444 #define IDirectDrawSurface7_EnumOverlayZOrders(p,a,b,c) (p)->EnumOverlayZOrders(a,b,c)
2445 #define IDirectDrawSurface7_Flip(p,a,b) (p)->Flip(a,b)
2446 #define IDirectDrawSurface7_GetAttachedSurface(p,a,b) (p)->GetAttachedSurface(a,b)
2447 #define IDirectDrawSurface7_GetBltStatus(p,a) (p)->GetBltStatus(a)
2448 #define IDirectDrawSurface7_GetCaps(p,a) (p)->GetCaps(a)
2449 #define IDirectDrawSurface7_GetClipper(p,a) (p)->GetClipper(a)
2450 #define IDirectDrawSurface7_GetColorKey(p,a,b) (p)->GetColorKey(a,b)
2451 #define IDirectDrawSurface7_GetDC(p,a) (p)->GetDC(a)
2452 #define IDirectDrawSurface7_GetFlipStatus(p,a) (p)->GetFlipStatus(a)
2453 #define IDirectDrawSurface7_GetOverlayPosition(p,a,b) (p)->GetOverlayPosition(a,b)
2454 #define IDirectDrawSurface7_GetPalette(p,a) (p)->GetPalette(a)
2455 #define IDirectDrawSurface7_GetPixelFormat(p,a) (p)->GetPixelFormat(a)
2456 #define IDirectDrawSurface7_GetSurfaceDesc(p,a) (p)->GetSurfaceDesc(a)
2457 #define IDirectDrawSurface7_Initialize(p,a,b) (p)->Initialize(a,b)
2458 #define IDirectDrawSurface7_IsLost(p) (p)->IsLost()
2459 #define IDirectDrawSurface7_Lock(p,a,b,c,d) (p)->Lock(a,b,c,d)
2460 #define IDirectDrawSurface7_ReleaseDC(p,a) (p)->ReleaseDC(a)
2461 #define IDirectDrawSurface7_Restore(p) (p)->Restore()
2462 #define IDirectDrawSurface7_SetClipper(p,a) (p)->SetClipper(a)
2463 #define IDirectDrawSurface7_SetColorKey(p,a,b) (p)->SetColorKey(a,b)
2464 #define IDirectDrawSurface7_SetOverlayPosition(p,a,b) (p)->SetOverlayPosition(a,b)
2465 #define IDirectDrawSurface7_SetPalette(p,a) (p)->SetPalette(a)
2466 #define IDirectDrawSurface7_Unlock(p,a) (p)->Unlock(a)
2467 #define IDirectDrawSurface7_UpdateOverlay(p,a,b,c,d,e) (p)->UpdateOverlay(a,b,c,d,e)
2468 #define IDirectDrawSurface7_UpdateOverlayDisplay(p,a) (p)->UpdateOverlayDisplay(a)
2469 #define IDirectDrawSurface7_UpdateOverlayZOrder(p,a,b) (p)->UpdateOverlayZOrder(a,b)
2470 /*** IDirectDrawSurface2 methods ***/
2471 #define IDirectDrawSurface7_GetDDInterface(p,a) (p)->GetDDInterface(a)
2472 #define IDirectDrawSurface7_PageLock(p,a) (p)->PageLock(a)
2473 #define IDirectDrawSurface7_PageUnlock(p,a) (p)->PageUnlock(a)
2474 /*** IDirectDrawSurface3 methods ***/
2475 #define IDirectDrawSurface7_SetSurfaceDesc(p,a,b) (p)->SetSurfaceDesc(a,b)
2476 /*** IDirectDrawSurface4 methods ***/
2477 #define IDirectDrawSurface7_SetPrivateData(p,a,b,c,d) (p)->SetPrivateData(a,b,c,d)
2478 #define IDirectDrawSurface7_GetPrivateData(p,a,b,c) (p)->GetPrivateData(a,b,c)
2479 #define IDirectDrawSurface7_FreePrivateData(p,a) (p)->FreePrivateData(a)
2480 #define IDirectDrawSurface7_GetUniquenessValue(p,a) (p)->GetUniquenessValue(a)
2481 #define IDirectDrawSurface7_ChangeUniquenessValue(p) (p)->ChangeUniquenessValue()
2482 /*** IDirectDrawSurface7 methods ***/
2483 #define IDirectDrawSurface7_SetPriority(p,a) (p)->SetPriority(a)
2484 #define IDirectDrawSurface7_GetPriority(p,a) (p)->GetPriority(a)
2485 #define IDirectDrawSurface7_SetLOD(p,a) (p)->SetLOD(a)
2486 #define IDirectDrawSurface7_GetLOD(p,a) (p)->GetLOD(a)
2487 #endif
2489 /*****************************************************************************
2490 * IDirectDrawColorControl interface
2492 #define INTERFACE IDirectDrawColorControl
2493 DECLARE_INTERFACE_(IDirectDrawColorControl,IUnknown)
2495 /*** IUnknown methods ***/
2496 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
2497 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
2498 STDMETHOD_(ULONG,Release)(THIS) PURE;
2499 /*** IDirectDrawColorControl methods ***/
2500 STDMETHOD(GetColorControls)(THIS_ LPDDCOLORCONTROL lpColorControl) PURE;
2501 STDMETHOD(SetColorControls)(THIS_ LPDDCOLORCONTROL lpColorControl) PURE;
2503 #undef INTERFACE
2505 #if !defined(__cplusplus) || defined(CINTERFACE)
2506 /*** IUnknown methods ***/
2507 #define IDirectDrawColorControl_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
2508 #define IDirectDrawColorControl_AddRef(p) (p)->lpVtbl->AddRef(p)
2509 #define IDirectDrawColorControl_Release(p) (p)->lpVtbl->Release(p)
2510 /*** IDirectDrawColorControl methods ***/
2511 #define IDirectDrawColorControl_GetColorControls(p,a) (p)->lpVtbl->GetColorControls(p,a)
2512 #define IDirectDrawColorControl_SetColorControls(p,a) (p)->lpVtbl->SetColorControls(p,a)
2513 #else
2514 /*** IUnknown methods ***/
2515 #define IDirectDrawColorControl_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
2516 #define IDirectDrawColorControl_AddRef(p) (p)->AddRef()
2517 #define IDirectDrawColorControl_Release(p) (p)->Release()
2518 /*** IDirectDrawColorControl methods ***/
2519 #define IDirectDrawColorControl_GetColorControls(p,a) (p)->GetColorControls(a)
2520 #define IDirectDrawColorControl_SetColorControls(p,a) (p)->SetColorControls(a)
2521 #endif
2523 /*****************************************************************************
2524 * IDirectDrawGammaControl interface
2526 #define INTERFACE IDirectDrawGammaControl
2527 DECLARE_INTERFACE_(IDirectDrawGammaControl,IUnknown)
2529 /*** IUnknown methods ***/
2530 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE;
2531 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
2532 STDMETHOD_(ULONG,Release)(THIS) PURE;
2533 /*** IDirectDrawGammaControl methods ***/
2534 STDMETHOD(GetGammaRamp)(THIS_ DWORD dwFlags, LPDDGAMMARAMP lpGammaRamp) PURE;
2535 STDMETHOD(SetGammaRamp)(THIS_ DWORD dwFlags, LPDDGAMMARAMP lpGammaRamp) PURE;
2537 #undef INTERFACE
2539 #if !defined(__cplusplus) || defined(CINTERFACE)
2540 /*** IUnknown methods ***/
2541 #define IDirectDrawGammaControl_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
2542 #define IDirectDrawGammaControl_AddRef(p) (p)->lpVtbl->AddRef(p)
2543 #define IDirectDrawGammaControl_Release(p) (p)->lpVtbl->Release(p)
2544 /*** IDirectDrawGammaControl methods ***/
2545 #define IDirectDrawGammaControl_GetGammaRamp(p,a,b) (p)->lpVtbl->GetGammaRamp(p,a,b)
2546 #define IDirectDrawGammaControl_SetGammaRamp(p,a,b) (p)->lpVtbl->SetGammaRamp(p,a,b)
2547 #else
2548 /*** IUnknown methods ***/
2549 #define IDirectDrawGammaControl_QueryInterface(p,a,b) (p)->QueryInterface(a,b)
2550 #define IDirectDrawGammaControl_AddRef(p) (p)->AddRef()
2551 #define IDirectDrawGammaControl_Release(p) (p)->Release()
2552 /*** IDirectDrawGammaControl methods ***/
2553 #define IDirectDrawGammaControl_GetGammaRamp(p,a,b) (p)->GetGammaRamp(a,b)
2554 #define IDirectDrawGammaControl_SetGammaRamp(p,a,b) (p)->SetGammaRamp(a,b)
2555 #endif
2558 HRESULT WINAPI DirectDrawCreate(LPGUID,LPDIRECTDRAW*,LPUNKNOWN);
2559 HRESULT WINAPI DirectDrawCreateEx(LPGUID,LPVOID*,REFIID,LPUNKNOWN);
2560 HRESULT WINAPI DirectDrawEnumerateA(LPDDENUMCALLBACKA,LPVOID);
2561 HRESULT WINAPI DirectDrawEnumerateW(LPDDENUMCALLBACKW,LPVOID);
2562 #define DirectDrawEnumerate WINELIB_NAME_AW(DirectDrawEnumerate)
2563 HRESULT WINAPI DirectDrawCreateClipper(DWORD,LPDIRECTDRAWCLIPPER*,LPUNKNOWN);
2565 #ifdef __cplusplus
2566 } /* extern "C" */
2567 #endif /* defined(__cplusplus) */
2569 #endif /* __WINE_DDRAW_H */