VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/ddraw.h@ 30705

Last change on this file since 30705 was 23571, checked in by vboxsync, 15 years ago

crOpenGL: update to wine 1.1.30

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette