1 | /* $Id: ddraw.h,v 1.1 1999-05-24 20:19:11 ktk Exp $ */
|
---|
2 |
|
---|
3 | #ifndef __WINE_DDRAW_H
|
---|
4 | #define __WINE_DDRAW_H
|
---|
5 |
|
---|
6 | #include <X11/Xlib.h>
|
---|
7 | #ifdef HAVE_LIBXXSHM
|
---|
8 | #include <X11/extensions/XShm.h>
|
---|
9 | #endif /* defined(HAVE_LIBXXSHM) */
|
---|
10 |
|
---|
11 | #include "winnt.h" /* LARGE_INTEGER ... */
|
---|
12 | #include "wingdi.h" /* PALETTE stuff ... */
|
---|
13 | #include "wine/obj_base.h"
|
---|
14 |
|
---|
15 | #ifndef DIRECTDRAW_VERSION
|
---|
16 | #define DIRECTDRAW_VERSION 0x0500
|
---|
17 | #endif /* DIRECTDRAW_VERSION */
|
---|
18 |
|
---|
19 | /*****************************************************************************
|
---|
20 | * Predeclare the interfaces
|
---|
21 | */
|
---|
22 | DEFINE_GUID( CLSID_DirectDraw, 0xD7B70EE0,0x4340,0x11CF,0xB0,0x63,0x00,0x20,0xAF,0xC2,0xCD,0x35 );
|
---|
23 | DEFINE_GUID( CLSID_DirectDrawClipper, 0x593817A0,0x7DB3,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xb9,0x33,0x56 );
|
---|
24 | DEFINE_GUID( IID_IDirectDraw, 0x6C14DB80,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
---|
25 | DEFINE_GUID( IID_IDirectDraw2, 0xB3A6F3E0,0x2B43,0x11CF,0xA2,0xDE,0x00,0xAA,0x00,0xB9,0x33,0x56 );
|
---|
26 | DEFINE_GUID( IID_IDirectDraw4, 0x9c59509a,0x39bd,0x11d1,0x8c,0x4a,0x00,0xc0,0x4f,0xd9,0x30,0xc5 );
|
---|
27 | DEFINE_GUID( IID_IDirectDrawSurface, 0x6C14DB81,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
---|
28 | DEFINE_GUID( IID_IDirectDrawSurface2, 0x57805885,0x6eec,0x11cf,0x94,0x41,0xa8,0x23,0x03,0xc1,0x0e,0x27 );
|
---|
29 | DEFINE_GUID( IID_IDirectDrawSurface3, 0xDA044E00,0x69B2,0x11D0,0xA1,0xD5,0x00,0xAA,0x00,0xB8,0xDF,0xBB );
|
---|
30 | DEFINE_GUID( IID_IDirectDrawSurface4, 0x0B2B8630,0xAD35,0x11D0,0x8E,0xA6,0x00,0x60,0x97,0x97,0xEA,0x5B );
|
---|
31 | DEFINE_GUID( IID_IDirectDrawPalette, 0x6C14DB84,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
---|
32 | DEFINE_GUID( IID_IDirectDrawClipper, 0x6C14DB85,0xA733,0x11CE,0xA5,0x21,0x00,0x20,0xAF,0x0B,0xE5,0x60 );
|
---|
33 | DEFINE_GUID( IID_IDirectDrawColorControl,0x4B9F0EE0,0x0D7E,0x11D0,0x9B,0x06,0x00,0xA0,0xC9,0x03,0xA3,0xB8 );
|
---|
34 |
|
---|
35 | typedef struct IDirectDraw IDirectDraw,*LPDIRECTDRAW;
|
---|
36 | typedef struct IDirectDraw2 IDirectDraw2,*LPDIRECTDRAW2;
|
---|
37 | typedef struct IDirectDraw4 IDirectDraw4,*LPDIRECTDRAW4;
|
---|
38 | typedef struct IDirectDrawClipper IDirectDrawClipper,*LPDIRECTDRAWCLIPPER;
|
---|
39 | typedef struct IDirectDrawPalette IDirectDrawPalette,*LPDIRECTDRAWPALETTE;
|
---|
40 | typedef struct IDirectDrawSurface IDirectDrawSurface,*LPDIRECTDRAWSURFACE;
|
---|
41 | typedef struct IDirectDrawSurface2 IDirectDrawSurface2,*LPDIRECTDRAWSURFACE2;
|
---|
42 | typedef struct IDirectDrawSurface3 IDirectDrawSurface3,*LPDIRECTDRAWSURFACE3;
|
---|
43 | typedef struct IDirectDrawSurface4 IDirectDrawSurface4,*LPDIRECTDRAWSURFACE4;
|
---|
44 | typedef struct IDirectDrawColorControl IDirectDrawColorControl,*LPDIRECTDRAWCOLORCONTROL;
|
---|
45 |
|
---|
46 |
|
---|
47 | #define DDENUMRET_CANCEL 0
|
---|
48 | #define DDENUMRET_OK 1
|
---|
49 |
|
---|
50 | #define DD_OK 0
|
---|
51 |
|
---|
52 |
|
---|
53 | #define _FACDD 0x876
|
---|
54 | #define MAKE_DDHRESULT( code ) MAKE_HRESULT( 1, _FACDD, code )
|
---|
55 |
|
---|
56 | #define DDERR_ALREADYINITIALIZED MAKE_DDHRESULT( 5 )
|
---|
57 | #define DDERR_CANNOTATTACHSURFACE MAKE_DDHRESULT( 10 )
|
---|
58 | #define DDERR_CANNOTDETACHSURFACE MAKE_DDHRESULT( 20 )
|
---|
59 | #define DDERR_CURRENTLYNOTAVAIL MAKE_DDHRESULT( 40 )
|
---|
60 | #define DDERR_EXCEPTION MAKE_DDHRESULT( 55 )
|
---|
61 | #define DDERR_GENERIC E_FAIL
|
---|
62 | #define DDERR_HEIGHTALIGN MAKE_DDHRESULT( 90 )
|
---|
63 | #define DDERR_INCOMPATIBLEPRIMARY MAKE_DDHRESULT( 95 )
|
---|
64 | #define DDERR_INVALIDCAPS MAKE_DDHRESULT( 100 )
|
---|
65 | #define DDERR_INVALIDCLIPLIST MAKE_DDHRESULT( 110 )
|
---|
66 | #define DDERR_INVALIDMODE MAKE_DDHRESULT( 120 )
|
---|
67 | #define DDERR_INVALIDOBJECT MAKE_DDHRESULT( 130 )
|
---|
68 | #define DDERR_INVALIDPARAMS E_INVALIDARG
|
---|
69 | #define DDERR_INVALIDPIXELFORMAT MAKE_DDHRESULT( 145 )
|
---|
70 | #define DDERR_INVALIDRECT MAKE_DDHRESULT( 150 )
|
---|
71 | #define DDERR_LOCKEDSURFACES MAKE_DDHRESULT( 160 )
|
---|
72 | #define DDERR_NO3D MAKE_DDHRESULT( 170 )
|
---|
73 | #define DDERR_NOALPHAHW MAKE_DDHRESULT( 180 )
|
---|
74 | #define DDERR_NOCLIPLIST MAKE_DDHRESULT( 205 )
|
---|
75 | #define DDERR_NOCOLORCONVHW MAKE_DDHRESULT( 210 )
|
---|
76 | #define DDERR_NOCOOPERATIVELEVELSET MAKE_DDHRESULT( 212 )
|
---|
77 | #define DDERR_NOCOLORKEY MAKE_DDHRESULT( 215 )
|
---|
78 | #define DDERR_NOCOLORKEYHW MAKE_DDHRESULT( 220 )
|
---|
79 | #define DDERR_NODIRECTDRAWSUPPORT MAKE_DDHRESULT( 222 )
|
---|
80 | #define DDERR_NOEXCLUSIVEMODE MAKE_DDHRESULT( 225 )
|
---|
81 | #define DDERR_NOFLIPHW MAKE_DDHRESULT( 230 )
|
---|
82 | #define DDERR_NOGDI MAKE_DDHRESULT( 240 )
|
---|
83 | #define DDERR_NOMIRRORHW MAKE_DDHRESULT( 250 )
|
---|
84 | #define DDERR_NOTFOUND MAKE_DDHRESULT( 255 )
|
---|
85 | #define DDERR_NOOVERLAYHW MAKE_DDHRESULT( 260 )
|
---|
86 | #define DDERR_NORASTEROPHW MAKE_DDHRESULT( 280 )
|
---|
87 | #define DDERR_NOROTATIONHW MAKE_DDHRESULT( 290 )
|
---|
88 | #define DDERR_NOSTRETCHHW MAKE_DDHRESULT( 310 )
|
---|
89 | #define DDERR_NOT4BITCOLOR MAKE_DDHRESULT( 316 )
|
---|
90 | #define DDERR_NOT4BITCOLORINDEX MAKE_DDHRESULT( 317 )
|
---|
91 | #define DDERR_NOT8BITCOLOR MAKE_DDHRESULT( 320 )
|
---|
92 | #define DDERR_NOTEXTUREHW MAKE_DDHRESULT( 330 )
|
---|
93 | #define DDERR_NOVSYNCHW MAKE_DDHRESULT( 335 )
|
---|
94 | #define DDERR_NOZBUFFERHW MAKE_DDHRESULT( 340 )
|
---|
95 | #define DDERR_NOZOVERLAYHW MAKE_DDHRESULT( 350 )
|
---|
96 | #define DDERR_OUTOFCAPS MAKE_DDHRESULT( 360 )
|
---|
97 | #define DDERR_OUTOFMEMORY E_OUTOFMEMORY
|
---|
98 | #define DDERR_OUTOFVIDEOMEMORY MAKE_DDHRESULT( 380 )
|
---|
99 | #define DDERR_OVERLAYCANTCLIP MAKE_DDHRESULT( 382 )
|
---|
100 | #define DDERR_OVERLAYCOLORKEYONLYONEACTIVE MAKE_DDHRESULT( 384 )
|
---|
101 | #define DDERR_PALETTEBUSY MAKE_DDHRESULT( 387 )
|
---|
102 | #define DDERR_COLORKEYNOTSET MAKE_DDHRESULT( 400 )
|
---|
103 | #define DDERR_SURFACEALREADYATTACHED MAKE_DDHRESULT( 410 )
|
---|
104 | #define DDERR_SURFACEALREADYDEPENDENT MAKE_DDHRESULT( 420 )
|
---|
105 | #define DDERR_SURFACEBUSY MAKE_DDHRESULT( 430 )
|
---|
106 | #define DDERR_CANTLOCKSURFACE MAKE_DDHRESULT( 435 )
|
---|
107 | #define DDERR_SURFACEISOBSCURED MAKE_DDHRESULT( 440 )
|
---|
108 | #define DDERR_SURFACELOST MAKE_DDHRESULT( 450 )
|
---|
109 | #define DDERR_SURFACENOTATTACHED MAKE_DDHRESULT( 460 )
|
---|
110 | #define DDERR_TOOBIGHEIGHT MAKE_DDHRESULT( 470 )
|
---|
111 | #define DDERR_TOOBIGSIZE MAKE_DDHRESULT( 480 )
|
---|
112 | #define DDERR_TOOBIGWIDTH MAKE_DDHRESULT( 490 )
|
---|
113 | #define DDERR_UNSUPPORTED E_NOTIMPL
|
---|
114 | #define DDERR_UNSUPPORTEDFORMAT MAKE_DDHRESULT( 510 )
|
---|
115 | #define DDERR_UNSUPPORTEDMASK MAKE_DDHRESULT( 520 )
|
---|
116 | #define DDERR_VERTICALBLANKINPROGRESS MAKE_DDHRESULT( 537 )
|
---|
117 | #define DDERR_WASSTILLDRAWING MAKE_DDHRESULT( 540 )
|
---|
118 | #define DDERR_XALIGN MAKE_DDHRESULT( 560 )
|
---|
119 | #define DDERR_INVALIDDIRECTDRAWGUID MAKE_DDHRESULT( 561 )
|
---|
120 | #define DDERR_DIRECTDRAWALREADYCREATED MAKE_DDHRESULT( 562 )
|
---|
121 | #define DDERR_NODIRECTDRAWHW MAKE_DDHRESULT( 563 )
|
---|
122 | #define DDERR_PRIMARYSURFACEALREADYEXISTS MAKE_DDHRESULT( 564 )
|
---|
123 | #define DDERR_NOEMULATION MAKE_DDHRESULT( 565 )
|
---|
124 | #define DDERR_REGIONTOOSMALL MAKE_DDHRESULT( 566 )
|
---|
125 | #define DDERR_CLIPPERISUSINGHWND MAKE_DDHRESULT( 567 )
|
---|
126 | #define DDERR_NOCLIPPERATTACHED MAKE_DDHRESULT( 568 )
|
---|
127 | #define DDERR_NOHWND MAKE_DDHRESULT( 569 )
|
---|
128 | #define DDERR_HWNDSUBCLASSED MAKE_DDHRESULT( 570 )
|
---|
129 | #define DDERR_HWNDALREADYSET MAKE_DDHRESULT( 571 )
|
---|
130 | #define DDERR_NOPALETTEATTACHED MAKE_DDHRESULT( 572 )
|
---|
131 | #define DDERR_NOPALETTEHW MAKE_DDHRESULT( 573 )
|
---|
132 | #define DDERR_BLTFASTCANTCLIP MAKE_DDHRESULT( 574 )
|
---|
133 | #define DDERR_NOBLTHW MAKE_DDHRESULT( 575 )
|
---|
134 | #define DDERR_NODDROPSHW MAKE_DDHRESULT( 576 )
|
---|
135 | #define DDERR_OVERLAYNOTVISIBLE MAKE_DDHRESULT( 577 )
|
---|
136 | #define DDERR_NOOVERLAYDEST MAKE_DDHRESULT( 578 )
|
---|
137 | #define DDERR_INVALIDPOSITION MAKE_DDHRESULT( 579 )
|
---|
138 | #define DDERR_NOTAOVERLAYSURFACE MAKE_DDHRESULT( 580 )
|
---|
139 | #define DDERR_EXCLUSIVEMODEALREADYSET MAKE_DDHRESULT( 581 )
|
---|
140 | #define DDERR_NOTFLIPPABLE MAKE_DDHRESULT( 582 )
|
---|
141 | #define DDERR_CANTDUPLICATE MAKE_DDHRESULT( 583 )
|
---|
142 | #define DDERR_NOTLOCKED MAKE_DDHRESULT( 584 )
|
---|
143 | #define DDERR_CANTCREATEDC MAKE_DDHRESULT( 585 )
|
---|
144 | #define DDERR_NODC MAKE_DDHRESULT( 586 )
|
---|
145 | #define DDERR_WRONGMODE MAKE_DDHRESULT( 587 )
|
---|
146 | #define DDERR_IMPLICITLYCREATED MAKE_DDHRESULT( 588 )
|
---|
147 | #define DDERR_NOTPALETTIZED MAKE_DDHRESULT( 589 )
|
---|
148 | #define DDERR_UNSUPPORTEDMODE MAKE_DDHRESULT( 590 )
|
---|
149 | #define DDERR_NOMIPMAPHW MAKE_DDHRESULT( 591 )
|
---|
150 | #define DDERR_INVALIDSURFACETYPE MAKE_DDHRESULT( 592 )
|
---|
151 | #define DDERR_NOOPTIMIZEHW MAKE_DDHRESULT( 600 )
|
---|
152 | #define DDERR_NOTLOADED MAKE_DDHRESULT( 601 )
|
---|
153 | #define DDERR_NOFOCUSWINDOW MAKE_DDHRESULT( 602 )
|
---|
154 | #define DDERR_DCALREADYCREATED MAKE_DDHRESULT( 620 )
|
---|
155 | #define DDERR_NONONLOCALVIDMEM MAKE_DDHRESULT( 630 )
|
---|
156 | #define DDERR_CANTPAGELOCK MAKE_DDHRESULT( 640 )
|
---|
157 | #define DDERR_CANTPAGEUNLOCK MAKE_DDHRESULT( 660 )
|
---|
158 | #define DDERR_NOTPAGELOCKED MAKE_DDHRESULT( 680 )
|
---|
159 | #define DDERR_MOREDATA MAKE_DDHRESULT( 690 )
|
---|
160 | #define DDERR_VIDEONOTACTIVE MAKE_DDHRESULT( 695 )
|
---|
161 | #define DDERR_DEVICEDOESNTOWNSURFACE MAKE_DDHRESULT( 699 )
|
---|
162 | #define DDERR_NOTINITIALIZED CO_E_NOTINITIALIZED
|
---|
163 |
|
---|
164 | /* dwFlags for Blt* */
|
---|
165 | #define DDBLT_ALPHADEST 0x00000001
|
---|
166 | #define DDBLT_ALPHADESTCONSTOVERRIDE 0x00000002
|
---|
167 | #define DDBLT_ALPHADESTNEG 0x00000004
|
---|
168 | #define DDBLT_ALPHADESTSURFACEOVERRIDE 0x00000008
|
---|
169 | #define DDBLT_ALPHAEDGEBLEND 0x00000010
|
---|
170 | #define DDBLT_ALPHASRC 0x00000020
|
---|
171 | #define DDBLT_ALPHASRCCONSTOVERRIDE 0x00000040
|
---|
172 | #define DDBLT_ALPHASRCNEG 0x00000080
|
---|
173 | #define DDBLT_ALPHASRCSURFACEOVERRIDE 0x00000100
|
---|
174 | #define DDBLT_ASYNC 0x00000200
|
---|
175 | #define DDBLT_COLORFILL 0x00000400
|
---|
176 | #define DDBLT_DDFX 0x00000800
|
---|
177 | #define DDBLT_DDROPS 0x00001000
|
---|
178 | #define DDBLT_KEYDEST 0x00002000
|
---|
179 | #define DDBLT_KEYDESTOVERRIDE 0x00004000
|
---|
180 | #define DDBLT_KEYSRC 0x00008000
|
---|
181 | #define DDBLT_KEYSRCOVERRIDE 0x00010000
|
---|
182 | #define DDBLT_ROP 0x00020000
|
---|
183 | #define DDBLT_ROTATIONANGLE 0x00040000
|
---|
184 | #define DDBLT_ZBUFFER 0x00080000
|
---|
185 | #define DDBLT_ZBUFFERDESTCONSTOVERRIDE 0x00100000
|
---|
186 | #define DDBLT_ZBUFFERDESTOVERRIDE 0x00200000
|
---|
187 | #define DDBLT_ZBUFFERSRCCONSTOVERRIDE 0x00400000
|
---|
188 | #define DDBLT_ZBUFFERSRCOVERRIDE 0x00800000
|
---|
189 | #define DDBLT_WAIT 0x01000000
|
---|
190 | #define DDBLT_DEPTHFILL 0x02000000
|
---|
191 |
|
---|
192 | /* dwTrans for BltFast */
|
---|
193 | #define DDBLTFAST_NOCOLORKEY 0x00000000
|
---|
194 | #define DDBLTFAST_SRCCOLORKEY 0x00000001
|
---|
195 | #define DDBLTFAST_DESTCOLORKEY 0x00000002
|
---|
196 | #define DDBLTFAST_WAIT 0x00000010
|
---|
197 |
|
---|
198 | /* dwFlags for Flip */
|
---|
199 | #define DDFLIP_WAIT 0x00000001
|
---|
200 | #define DDFLIP_EVEN 0x00000002 /* only valid for overlay */
|
---|
201 | #define DDFLIP_ODD 0x00000004 /* only valid for overlay */
|
---|
202 |
|
---|
203 | /* dwFlags for GetBltStatus */
|
---|
204 | #define DDGBS_CANBLT 0x00000001
|
---|
205 | #define DDGBS_ISBLTDONE 0x00000002
|
---|
206 |
|
---|
207 | /* DDSCAPS.dwCaps */
|
---|
208 | /* reserved1, was 3d capable */
|
---|
209 | #define DDSCAPS_RESERVED1 0x00000001
|
---|
210 | /* surface contains alpha information */
|
---|
211 | #define DDSCAPS_ALPHA 0x00000002
|
---|
212 | /* this surface is a backbuffer */
|
---|
213 | #define DDSCAPS_BACKBUFFER 0x00000004
|
---|
214 | /* complex surface structure */
|
---|
215 | #define DDSCAPS_COMPLEX 0x00000008
|
---|
216 | /* part of surface flipping structure */
|
---|
217 | #define DDSCAPS_FLIP 0x00000010
|
---|
218 | /* this surface is the frontbuffer surface */
|
---|
219 | #define DDSCAPS_FRONTBUFFER 0x00000020
|
---|
220 | /* this is a plain offscreen surface */
|
---|
221 | #define DDSCAPS_OFFSCREENPLAIN 0x00000040
|
---|
222 | /* overlay */
|
---|
223 | #define DDSCAPS_OVERLAY 0x00000080
|
---|
224 | /* palette objects can be created and attached to us */
|
---|
225 | #define DDSCAPS_PALETTE 0x00000100
|
---|
226 | /* primary surface (the one the user looks at currently)(right eye)*/
|
---|
227 | #define DDSCAPS_PRIMARYSURFACE 0x00000200
|
---|
228 | /* primary surface for left eye */
|
---|
229 | #define DDSCAPS_PRIMARYSURFACELEFT 0x00000400
|
---|
230 | /* surface exists in systemmemory */
|
---|
231 | #define DDSCAPS_SYSTEMMEMORY 0x00000800
|
---|
232 | /* surface can be used as a texture */
|
---|
233 | #define DDSCAPS_TEXTURE 0x00001000
|
---|
234 | /* surface may be destination for 3d rendering */
|
---|
235 | #define DDSCAPS_3DDEVICE 0x00002000
|
---|
236 | /* surface exists in videomemory */
|
---|
237 | #define DDSCAPS_VIDEOMEMORY 0x00004000
|
---|
238 | /* surface changes immediately visible */
|
---|
239 | #define DDSCAPS_VISIBLE 0x00008000
|
---|
240 | /* write only surface */
|
---|
241 | #define DDSCAPS_WRITEONLY 0x00010000
|
---|
242 | /* zbuffer surface */
|
---|
243 | #define DDSCAPS_ZBUFFER 0x00020000
|
---|
244 | /* has its own DC */
|
---|
245 | #define DDSCAPS_OWNDC 0x00040000
|
---|
246 | /* surface should be able to receive live video */
|
---|
247 | #define DDSCAPS_LIVEVIDEO 0x00080000
|
---|
248 | /* should be able to have a hw codec decompress stuff into it */
|
---|
249 | #define DDSCAPS_HWCODEC 0x00100000
|
---|
250 | /* mode X (320x200 or 320x240) surface */
|
---|
251 | #define DDSCAPS_MODEX 0x00200000
|
---|
252 | /* one mipmap surface (1 level) */
|
---|
253 | #define DDSCAPS_MIPMAP 0x00400000
|
---|
254 | #define DDSCAPS_RESERVED2 0x00800000
|
---|
255 | /* memory allocation delayed until Load() */
|
---|
256 | #define DDSCAPS_ALLOCONLOAD 0x04000000
|
---|
257 | /* Indicates that the surface will recieve data from a video port */
|
---|
258 | #define DDSCAPS_VIDEOPORT 0x08000000
|
---|
259 | /* surface is in local videomemory */
|
---|
260 | #define DDSCAPS_LOCALVIDMEM 0x10000000
|
---|
261 | /* surface is in nonlocal videomemory */
|
---|
262 | #define DDSCAPS_NONLOCALVIDMEM 0x20000000
|
---|
263 | /* surface is a standard VGA mode surface (NOT ModeX) */
|
---|
264 | #define DDSCAPS_STANDARDVGAMODE 0x40000000
|
---|
265 | /* optimized? surface */
|
---|
266 | #define DDSCAPS_OPTIMIZED 0x80000000
|
---|
267 |
|
---|
268 | typedef struct _DDSCAPS {
|
---|
269 | DWORD dwCaps; /* capabilities of surface wanted */
|
---|
270 | } DDSCAPS,*LPDDSCAPS;
|
---|
271 |
|
---|
272 | #define DD_ROP_SPACE (256/32) /* space required to store ROP array */
|
---|
273 |
|
---|
274 | typedef struct _DDCAPS_DX3
|
---|
275 | {
|
---|
276 | DWORD dwSize; /* size of the DDDRIVERCAPS structure */
|
---|
277 | DWORD dwCaps; /* driver specific capabilities */
|
---|
278 | DWORD dwCaps2; /* more driver specific capabilites */
|
---|
279 | DWORD dwCKeyCaps; /* color key capabilities of the surface */
|
---|
280 | DWORD dwFXCaps; /* driver specific stretching and effects capabilites */
|
---|
281 | DWORD dwFXAlphaCaps; /* alpha driver specific capabilities */
|
---|
282 | DWORD dwPalCaps; /* palette capabilities */
|
---|
283 | DWORD dwSVCaps; /* stereo vision capabilities */
|
---|
284 | DWORD dwAlphaBltConstBitDepths; /* DDBD_2,4,8 */
|
---|
285 | DWORD dwAlphaBltPixelBitDepths; /* DDBD_1,2,4,8 */
|
---|
286 | DWORD dwAlphaBltSurfaceBitDepths; /* DDBD_1,2,4,8 */
|
---|
287 | DWORD dwAlphaOverlayConstBitDepths; /* DDBD_2,4,8 */
|
---|
288 | DWORD dwAlphaOverlayPixelBitDepths; /* DDBD_1,2,4,8 */
|
---|
289 | DWORD dwAlphaOverlaySurfaceBitDepths; /* DDBD_1,2,4,8 */
|
---|
290 | DWORD dwZBufferBitDepths; /* DDBD_8,16,24,32 */
|
---|
291 | DWORD dwVidMemTotal; /* total amount of video memory */
|
---|
292 | DWORD dwVidMemFree; /* amount of free video memory */
|
---|
293 | DWORD dwMaxVisibleOverlays; /* maximum number of visible overlays */
|
---|
294 | DWORD dwCurrVisibleOverlays; /* current number of visible overlays */
|
---|
295 | DWORD dwNumFourCCCodes; /* number of four cc codes */
|
---|
296 | DWORD dwAlignBoundarySrc; /* source rectangle alignment */
|
---|
297 | DWORD dwAlignSizeSrc; /* source rectangle byte size */
|
---|
298 | DWORD dwAlignBoundaryDest; /* dest rectangle alignment */
|
---|
299 | DWORD dwAlignSizeDest; /* dest rectangle byte size */
|
---|
300 | DWORD dwAlignStrideAlign; /* stride alignment */
|
---|
301 | DWORD dwRops[DD_ROP_SPACE]; /* ROPS supported */
|
---|
302 | DDSCAPS ddsCaps; /* DDSCAPS structure has all the general capabilities */
|
---|
303 | DWORD dwMinOverlayStretch; /* minimum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
304 | DWORD dwMaxOverlayStretch; /* maximum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
305 | DWORD dwMinLiveVideoStretch; /* minimum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
306 | DWORD dwMaxLiveVideoStretch; /* maximum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
307 | DWORD dwMinHwCodecStretch; /* minimum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
308 | DWORD dwMaxHwCodecStretch; /* maximum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
309 | DWORD dwReserved1;
|
---|
310 | DWORD dwReserved2;
|
---|
311 | DWORD dwReserved3;
|
---|
312 | DWORD dwSVBCaps; /* driver specific capabilities for System->Vmem blts */
|
---|
313 | DWORD dwSVBCKeyCaps; /* driver color key capabilities for System->Vmem blts */
|
---|
314 | DWORD dwSVBFXCaps; /* driver FX capabilities for System->Vmem blts */
|
---|
315 | DWORD dwSVBRops[DD_ROP_SPACE];/* ROPS supported for System->Vmem blts */
|
---|
316 | DWORD dwVSBCaps; /* driver specific capabilities for Vmem->System blts */
|
---|
317 | DWORD dwVSBCKeyCaps; /* driver color key capabilities for Vmem->System blts */
|
---|
318 | DWORD dwVSBFXCaps; /* driver FX capabilities for Vmem->System blts */
|
---|
319 | DWORD dwVSBRops[DD_ROP_SPACE];/* ROPS supported for Vmem->System blts */
|
---|
320 | DWORD dwSSBCaps; /* driver specific capabilities for System->System blts */
|
---|
321 | DWORD dwSSBCKeyCaps; /* driver color key capabilities for System->System blts */
|
---|
322 | DWORD dwSSBFXCaps; /* driver FX capabilities for System->System blts */
|
---|
323 | DWORD dwSSBRops[DD_ROP_SPACE];/* ROPS supported for System->System blts */
|
---|
324 | DWORD dwReserved4;
|
---|
325 | DWORD dwReserved5;
|
---|
326 | DWORD dwReserved6;
|
---|
327 | } DDCAPS_DX3,*LPDDCAPS_DX3;
|
---|
328 |
|
---|
329 | typedef struct _DDCAPS
|
---|
330 | {
|
---|
331 | /* 0*/ DWORD dwSize; /* size of the DDDRIVERCAPS structure */
|
---|
332 | /* 4*/ DWORD dwCaps; /* driver specific capabilities */
|
---|
333 | /* 8*/ DWORD dwCaps2; /* more driver specific capabilites */
|
---|
334 | /* c*/ DWORD dwCKeyCaps; /* color key capabilities of the surface */
|
---|
335 | /* 10*/ DWORD dwFXCaps; /* driver specific stretching and effects capabilites */
|
---|
336 | /* 14*/ DWORD dwFXAlphaCaps; /* alpha driver specific capabilities */
|
---|
337 | /* 18*/ DWORD dwPalCaps; /* palette capabilities */
|
---|
338 | /* 1c*/ DWORD dwSVCaps; /* stereo vision capabilities */
|
---|
339 | /* 20*/ DWORD dwAlphaBltConstBitDepths; /* DDBD_2,4,8 */
|
---|
340 | /* 24*/ DWORD dwAlphaBltPixelBitDepths; /* DDBD_1,2,4,8 */
|
---|
341 | /* 28*/ DWORD dwAlphaBltSurfaceBitDepths; /* DDBD_1,2,4,8 */
|
---|
342 | /* 2c*/ DWORD dwAlphaOverlayConstBitDepths; /* DDBD_2,4,8 */
|
---|
343 | /* 30*/ DWORD dwAlphaOverlayPixelBitDepths; /* DDBD_1,2,4,8 */
|
---|
344 | /* 34*/ DWORD dwAlphaOverlaySurfaceBitDepths; /* DDBD_1,2,4,8 */
|
---|
345 | /* 38*/ DWORD dwZBufferBitDepths; /* DDBD_8,16,24,32 */
|
---|
346 | /* 3c*/ DWORD dwVidMemTotal; /* total amount of video memory */
|
---|
347 | /* 40*/ DWORD dwVidMemFree; /* amount of free video memory */
|
---|
348 | /* 44*/ DWORD dwMaxVisibleOverlays; /* maximum number of visible overlays */
|
---|
349 | /* 48*/ DWORD dwCurrVisibleOverlays; /* current number of visible overlays */
|
---|
350 | /* 4c*/ DWORD dwNumFourCCCodes; /* number of four cc codes */
|
---|
351 | /* 50*/ DWORD dwAlignBoundarySrc; /* source rectangle alignment */
|
---|
352 | /* 54*/ DWORD dwAlignSizeSrc; /* source rectangle byte size */
|
---|
353 | /* 58*/ DWORD dwAlignBoundaryDest; /* dest rectangle alignment */
|
---|
354 | /* 5c*/ DWORD dwAlignSizeDest; /* dest rectangle byte size */
|
---|
355 | /* 60*/ DWORD dwAlignStrideAlign; /* stride alignment */
|
---|
356 | /* 64*/ DWORD dwRops[DD_ROP_SPACE]; /* ROPS supported */
|
---|
357 | /* 84*/ DDSCAPS ddsCaps; /* DDSCAPS structure has all the general capabilities */
|
---|
358 | /* 88*/ DWORD dwMinOverlayStretch; /* minimum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
359 | /* 8c*/ DWORD dwMaxOverlayStretch; /* maximum overlay stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
360 | /* 90*/ DWORD dwMinLiveVideoStretch; /* minimum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
361 | /* 94*/ DWORD dwMaxLiveVideoStretch; /* maximum live video stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
362 | /* 98*/ DWORD dwMinHwCodecStretch; /* minimum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
363 | /* 9c*/ DWORD dwMaxHwCodecStretch; /* maximum hardware codec stretch factor multiplied by 1000, eg 1000 == 1.0, 1300 == 1.3 */
|
---|
364 | /* a0*/ DWORD dwReserved1;
|
---|
365 | /* a4*/ DWORD dwReserved2;
|
---|
366 | /* a8*/ DWORD dwReserved3;
|
---|
367 | /* ac*/ DWORD dwSVBCaps; /* driver specific capabilities for System->Vmem blts */
|
---|
368 | /* b0*/ DWORD dwSVBCKeyCaps; /* driver color key capabilities for System->Vmem blts */
|
---|
369 | /* b4*/ DWORD dwSVBFXCaps; /* driver FX capabilities for System->Vmem blts */
|
---|
370 | /* b8*/ DWORD dwSVBRops[DD_ROP_SPACE];/* ROPS supported for System->Vmem blts */
|
---|
371 | /* d8*/ DWORD dwVSBCaps; /* driver specific capabilities for Vmem->System blts */
|
---|
372 | /* dc*/ DWORD dwVSBCKeyCaps; /* driver color key capabilities for Vmem->System blts */
|
---|
373 | /* e0*/ DWORD dwVSBFXCaps; /* driver FX capabilities for Vmem->System blts */
|
---|
374 | /* e4*/ DWORD dwVSBRops[DD_ROP_SPACE];/* ROPS supported for Vmem->System blts */
|
---|
375 | /*104*/ DWORD dwSSBCaps; /* driver specific capabilities for System->System blts */
|
---|
376 | /*108*/ DWORD dwSSBCKeyCaps; /* driver color key capabilities for System->System blts */
|
---|
377 | /*10c*/ DWORD dwSSBFXCaps; /* driver FX capabilities for System->System blts */
|
---|
378 | /*110*/ DWORD dwSSBRops[DD_ROP_SPACE];/* ROPS supported for System->System blts */
|
---|
379 | #if DIRECTDRAW_VERSION >= 0x0500
|
---|
380 | /*130*/ DWORD dwMaxVideoPorts; /* maximum number of usable video ports */
|
---|
381 | /*134*/ DWORD dwCurrVideoPorts;/* current number of video ports used */
|
---|
382 | /*138*/ DWORD dwSVBCaps2; /* more driver specific capabilities for System->Vmem blts */
|
---|
383 | /*13c*/ DWORD dwNLVBCaps; /* driver specific capabilities for non-local->local vidmem blts */
|
---|
384 | /*140*/ DWORD dwNLVBCaps2; /* more driver specific capabilities non-local->local vidmem blts */
|
---|
385 | /*144*/ DWORD dwNLVBCKeyCaps; /* driver color key capabilities for non-local->local vidmem blts */
|
---|
386 | /*148*/ DWORD dwNLVBFXCaps; /* driver FX capabilities for non-local->local blts */
|
---|
387 | /*14c*/ DWORD dwNLVBRops[DD_ROP_SPACE];/* ROPS supported for non-local->local blts */
|
---|
388 | #else /* DIRECTDRAW_VERSION >= 0x0500 */
|
---|
389 | /*130*/ DWORD dwReserved4;
|
---|
390 | /*134*/ DWORD dwReserved5;
|
---|
391 | /*138*/ DWORD dwReserved6;
|
---|
392 | #endif /* DIRECTDRAW_VERSION >= 0x0500 */
|
---|
393 | } DDCAPS,*LPDDCAPS;
|
---|
394 |
|
---|
395 |
|
---|
396 | /* DDCAPS.dwCaps */
|
---|
397 | #define DDCAPS_3D 0x00000001
|
---|
398 | #define DDCAPS_ALIGNBOUNDARYDEST 0x00000002
|
---|
399 | #define DDCAPS_ALIGNSIZEDEST 0x00000004
|
---|
400 | #define DDCAPS_ALIGNBOUNDARYSRC 0x00000008
|
---|
401 | #define DDCAPS_ALIGNSIZESRC 0x00000010
|
---|
402 | #define DDCAPS_ALIGNSTRIDE 0x00000020
|
---|
403 | #define DDCAPS_BLT 0x00000040
|
---|
404 | #define DDCAPS_BLTQUEUE 0x00000080
|
---|
405 | #define DDCAPS_BLTFOURCC 0x00000100
|
---|
406 | #define DDCAPS_BLTSTRETCH 0x00000200
|
---|
407 | #define DDCAPS_GDI 0x00000400
|
---|
408 | #define DDCAPS_OVERLAY 0x00000800
|
---|
409 | #define DDCAPS_OVERLAYCANTCLIP 0x00001000
|
---|
410 | #define DDCAPS_OVERLAYFOURCC 0x00002000
|
---|
411 | #define DDCAPS_OVERLAYSTRETCH 0x00004000
|
---|
412 | #define DDCAPS_PALETTE 0x00008000
|
---|
413 | #define DDCAPS_PALETTEVSYNC 0x00010000
|
---|
414 | #define DDCAPS_READSCANLINE 0x00020000
|
---|
415 | #define DDCAPS_STEREOVIEW 0x00040000
|
---|
416 | #define DDCAPS_VBI 0x00080000
|
---|
417 | #define DDCAPS_ZBLTS 0x00100000
|
---|
418 | #define DDCAPS_ZOVERLAYS 0x00200000
|
---|
419 | #define DDCAPS_COLORKEY 0x00400000
|
---|
420 | #define DDCAPS_ALPHA 0x00800000
|
---|
421 | #define DDCAPS_COLORKEYHWASSIST 0x01000000
|
---|
422 | #define DDCAPS_NOHARDWARE 0x02000000
|
---|
423 | #define DDCAPS_BLTCOLORFILL 0x04000000
|
---|
424 | #define DDCAPS_BANKSWITCHED 0x08000000
|
---|
425 | #define DDCAPS_BLTDEPTHFILL 0x10000000
|
---|
426 | #define DDCAPS_CANCLIP 0x20000000
|
---|
427 | #define DDCAPS_CANCLIPSTRETCHED 0x40000000
|
---|
428 | #define DDCAPS_CANBLTSYSMEM 0x80000000
|
---|
429 |
|
---|
430 | /* DDCAPS.dwCaps2 */
|
---|
431 | #define DDCAPS2_CERTIFIED 0x00000001
|
---|
432 | #define DDCAPS2_NO2DDURING3DSCENE 0x00000002
|
---|
433 | #define DDCAPS2_VIDEOPORT 0x00000004
|
---|
434 | #define DDCAPS2_AUTOFLIPOVERLAY 0x00000008
|
---|
435 | #define DDCAPS2_CANBOBINTERLEAVED 0x00000010
|
---|
436 | #define DDCAPS2_CANBOBNONINTERLEAVED 0x00000020
|
---|
437 | #define DDCAPS2_COLORCONTROLOVERLAY 0x00000040
|
---|
438 | #define DDCAPS2_COLORCONTROLPRIMARY 0x00000080
|
---|
439 | #define DDCAPS2_CANDROPZ16BIT 0x00000100
|
---|
440 | #define DDCAPS2_NONLOCALVIDMEM 0x00000200
|
---|
441 | #define DDCAPS2_NONLOCALVIDMEMCAPS 0x00000400
|
---|
442 | #define DDCAPS2_NOPAGELOCKREQUIRED 0x00000800
|
---|
443 | #define DDCAPS2_WIDESURFACES 0x00001000
|
---|
444 | #define DDCAPS2_CANFLIPODDEVEN 0x00002000
|
---|
445 | #define DDCAPS2_CANBOBHARDWARE 0x00004000
|
---|
446 |
|
---|
447 |
|
---|
448 | /* Set/Get Colour Key Flags */
|
---|
449 | #define DDCKEY_COLORSPACE 0x00000001 /* Struct is single colour space */
|
---|
450 | #define DDCKEY_DESTBLT 0x00000002 /* To be used as dest for blt */
|
---|
451 | #define DDCKEY_DESTOVERLAY 0x00000004 /* To be used as dest for CK overlays */
|
---|
452 | #define DDCKEY_SRCBLT 0x00000008 /* To be used as src for blt */
|
---|
453 | #define DDCKEY_SRCOVERLAY 0x00000010 /* To be used as src for CK overlays */
|
---|
454 |
|
---|
455 | typedef struct _DDCOLORKEY
|
---|
456 | {
|
---|
457 | DWORD dwColorSpaceLowValue;/* low boundary of color space that is to
|
---|
458 | * be treated as Color Key, inclusive
|
---|
459 | */
|
---|
460 | DWORD dwColorSpaceHighValue;/* high boundary of color space that is
|
---|
461 | * to be treated as Color Key, inclusive
|
---|
462 | */
|
---|
463 | } DDCOLORKEY,*LPDDCOLORKEY;
|
---|
464 |
|
---|
465 | /* ddCKEYCAPS bits */
|
---|
466 | #define DDCKEYCAPS_DESTBLT 0x00000001
|
---|
467 | #define DDCKEYCAPS_DESTBLTCLRSPACE 0x00000002
|
---|
468 | #define DDCKEYCAPS_DESTBLTCLRSPACEYUV 0x00000004
|
---|
469 | #define DDCKEYCAPS_DESTBLTYUV 0x00000008
|
---|
470 | #define DDCKEYCAPS_DESTOVERLAY 0x00000010
|
---|
471 | #define DDCKEYCAPS_DESTOVERLAYCLRSPACE 0x00000020
|
---|
472 | #define DDCKEYCAPS_DESTOVERLAYCLRSPACEYUV 0x00000040
|
---|
473 | #define DDCKEYCAPS_DESTOVERLAYONEACTIVE 0x00000080
|
---|
474 | #define DDCKEYCAPS_DESTOVERLAYYUV 0x00000100
|
---|
475 | #define DDCKEYCAPS_SRCBLT 0x00000200
|
---|
476 | #define DDCKEYCAPS_SRCBLTCLRSPACE 0x00000400
|
---|
477 | #define DDCKEYCAPS_SRCBLTCLRSPACEYUV 0x00000800
|
---|
478 | #define DDCKEYCAPS_SRCBLTYUV 0x00001000
|
---|
479 | #define DDCKEYCAPS_SRCOVERLAY 0x00002000
|
---|
480 | #define DDCKEYCAPS_SRCOVERLAYCLRSPACE 0x00004000
|
---|
481 | #define DDCKEYCAPS_SRCOVERLAYCLRSPACEYUV 0x00008000
|
---|
482 | #define DDCKEYCAPS_SRCOVERLAYONEACTIVE 0x00010000
|
---|
483 | #define DDCKEYCAPS_SRCOVERLAYYUV 0x00020000
|
---|
484 | #define DDCKEYCAPS_NOCOSTOVERLAY 0x00040000
|
---|
485 |
|
---|
486 | typedef struct _DDPIXELFORMAT {
|
---|
487 | DWORD dwSize; /* 0: size of structure */
|
---|
488 | DWORD dwFlags; /* 4: pixel format flags */
|
---|
489 | DWORD dwFourCC; /* 8: (FOURCC code) */
|
---|
490 | union {
|
---|
491 | DWORD dwRGBBitCount; /* C: how many bits per pixel */
|
---|
492 | DWORD dwYUVBitCount; /* C: how many bits per pixel */
|
---|
493 | DWORD dwZBufferBitDepth; /* C: how many bits for z buffers */
|
---|
494 | DWORD dwAlphaBitDepth; /* C: how many bits for alpha channels*/
|
---|
495 | } x;
|
---|
496 | union {
|
---|
497 | DWORD dwRBitMask; /* 10: mask for red bit*/
|
---|
498 | DWORD dwYBitMask; /* 10: mask for Y bits*/
|
---|
499 | } y;
|
---|
500 | union {
|
---|
501 | DWORD dwGBitMask; /* 14: mask for green bits*/
|
---|
502 | DWORD dwUBitMask; /* 14: mask for U bits*/
|
---|
503 | } z;
|
---|
504 | union {
|
---|
505 | DWORD dwBBitMask; /* 18: mask for blue bits*/
|
---|
506 | DWORD dwVBitMask; /* 18: mask for V bits*/
|
---|
507 | } xx;
|
---|
508 | union {
|
---|
509 | DWORD dwRGBAlphaBitMask; /* 1C: mask for alpha channel */
|
---|
510 | DWORD dwYUVAlphaBitMask; /* 1C: mask for alpha channel */
|
---|
511 | DWORD dwRGBZBitMask; /* 1C: mask for Z channel */
|
---|
512 | DWORD dwYUVZBitMask; /* 1C: mask for Z channel */
|
---|
513 | } xy;
|
---|
514 | /* 20: next structure */
|
---|
515 | } DDPIXELFORMAT,*LPDDPIXELFORMAT;
|
---|
516 |
|
---|
517 | /* DDCAPS.dwFXCaps */
|
---|
518 | #define DDFXCAPS_BLTARITHSTRETCHY 0x00000020
|
---|
519 | #define DDFXCAPS_BLTARITHSTRETCHYN 0x00000010
|
---|
520 | #define DDFXCAPS_BLTMIRRORLEFTRIGHT 0x00000040
|
---|
521 | #define DDFXCAPS_BLTMIRRORUPDOWN 0x00000080
|
---|
522 | #define DDFXCAPS_BLTROTATION 0x00000100
|
---|
523 | #define DDFXCAPS_BLTROTATION90 0x00000200
|
---|
524 | #define DDFXCAPS_BLTSHRINKX 0x00000400
|
---|
525 | #define DDFXCAPS_BLTSHRINKXN 0x00000800
|
---|
526 | #define DDFXCAPS_BLTSHRINKY 0x00001000
|
---|
527 | #define DDFXCAPS_BLTSHRINKYN 0x00002000
|
---|
528 | #define DDFXCAPS_BLTSTRETCHX 0x00004000
|
---|
529 | #define DDFXCAPS_BLTSTRETCHXN 0x00008000
|
---|
530 | #define DDFXCAPS_BLTSTRETCHY 0x00010000
|
---|
531 | #define DDFXCAPS_BLTSTRETCHYN 0x00020000
|
---|
532 | #define DDFXCAPS_OVERLAYARITHSTRETCHY 0x00040000
|
---|
533 | #define DDFXCAPS_OVERLAYARITHSTRETCHYN 0x00000008
|
---|
534 | #define DDFXCAPS_OVERLAYSHRINKX 0x00080000
|
---|
535 | #define DDFXCAPS_OVERLAYSHRINKXN 0x00100000
|
---|
536 | #define DDFXCAPS_OVERLAYSHRINKY 0x00200000
|
---|
537 | #define DDFXCAPS_OVERLAYSHRINKYN 0x00400000
|
---|
538 | #define DDFXCAPS_OVERLAYSTRETCHX 0x00800000
|
---|
539 | #define DDFXCAPS_OVERLAYSTRETCHXN 0x01000000
|
---|
540 | #define DDFXCAPS_OVERLAYSTRETCHY 0x02000000
|
---|
541 | #define DDFXCAPS_OVERLAYSTRETCHYN 0x04000000
|
---|
542 | #define DDFXCAPS_OVERLAYMIRRORLEFTRIGHT 0x08000000
|
---|
543 | #define DDFXCAPS_OVERLAYMIRRORUPDOWN 0x10000000
|
---|
544 |
|
---|
545 | /* DDCAPS.dwFXAlphaCaps */
|
---|
546 | #define DDFXALPHACAPS_BLTALPHAEDGEBLEND 0x00000001
|
---|
547 | #define DDFXALPHACAPS_BLTALPHAPIXELS 0x00000002
|
---|
548 | #define DDFXALPHACAPS_BLTALPHAPIXELSNEG 0x00000004
|
---|
549 | #define DDFXALPHACAPS_BLTALPHASURFACES 0x00000008
|
---|
550 | #define DDFXALPHACAPS_BLTALPHASURFACESNEG 0x00000010
|
---|
551 | #define DDFXALPHACAPS_OVERLAYALPHAEDGEBLEND 0x00000020
|
---|
552 | #define DDFXALPHACAPS_OVERLAYALPHAPIXELS 0x00000040
|
---|
553 | #define DDFXALPHACAPS_OVERLAYALPHAPIXELSNEG 0x00000080
|
---|
554 | #define DDFXALPHACAPS_OVERLAYALPHASURFACES 0x00000100
|
---|
555 | #define DDFXALPHACAPS_OVERLAYALPHASURFACESNEG 0x00000200
|
---|
556 |
|
---|
557 | /* DDCAPS.dwPalCaps */
|
---|
558 | #define DDPCAPS_4BIT 0x00000001
|
---|
559 | #define DDPCAPS_8BITENTRIES 0x00000002
|
---|
560 | #define DDPCAPS_8BIT 0x00000004
|
---|
561 | #define DDPCAPS_INITIALIZE 0x00000008
|
---|
562 | #define DDPCAPS_PRIMARYSURFACE 0x00000010
|
---|
563 | #define DDPCAPS_PRIMARYSURFACELEFT 0x00000020
|
---|
564 | #define DDPCAPS_ALLOW256 0x00000040
|
---|
565 | #define DDPCAPS_VSYNC 0x00000080
|
---|
566 | #define DDPCAPS_1BIT 0x00000100
|
---|
567 | #define DDPCAPS_2BIT 0x00000200
|
---|
568 | #define DDPCAPS_ALPHA 0x00000400
|
---|
569 |
|
---|
570 | /* DDCAPS.dwSVCaps */
|
---|
571 | #define DDSVCAPS_ENIGMA 0x00000001l
|
---|
572 | #define DDSVCAPS_FLICKER 0x00000002l
|
---|
573 | #define DDSVCAPS_REDBLUE 0x00000004l
|
---|
574 | #define DDSVCAPS_SPLIT 0x00000008l
|
---|
575 |
|
---|
576 | /* BitDepths */
|
---|
577 | #define DDBD_1 0x00004000
|
---|
578 | #define DDBD_2 0x00002000
|
---|
579 | #define DDBD_4 0x00001000
|
---|
580 | #define DDBD_8 0x00000800
|
---|
581 | #define DDBD_16 0x00000400
|
---|
582 | #define DDBD_24 0x00000200
|
---|
583 | #define DDBD_32 0x00000100
|
---|
584 |
|
---|
585 | /* DDOVERLAYFX.dwDDFX */
|
---|
586 | #define DDOVERFX_ARITHSTRETCHY 0x00000001
|
---|
587 | #define DDOVERFX_MIRRORLEFTRIGHT 0x00000002
|
---|
588 | #define DDOVERFX_MIRRORUPDOWN 0x00000004
|
---|
589 |
|
---|
590 | /* DDCOLORKEY.dwFlags */
|
---|
591 | #define DDPF_ALPHAPIXELS 0x00000001
|
---|
592 | #define DDPF_ALPHA 0x00000002
|
---|
593 | #define DDPF_FOURCC 0x00000004
|
---|
594 | #define DDPF_PALETTEINDEXED4 0x00000008
|
---|
595 | #define DDPF_PALETTEINDEXEDTO8 0x00000010
|
---|
596 | #define DDPF_PALETTEINDEXED8 0x00000020
|
---|
597 | #define DDPF_RGB 0x00000040
|
---|
598 | #define DDPF_COMPRESSED 0x00000080
|
---|
599 | #define DDPF_RGBTOYUV 0x00000100
|
---|
600 | #define DDPF_YUV 0x00000200
|
---|
601 | #define DDPF_ZBUFFER 0x00000400
|
---|
602 | #define DDPF_PALETTEINDEXED1 0x00000800
|
---|
603 | #define DDPF_PALETTEINDEXED2 0x00001000
|
---|
604 | #define DDPF_ZPIXELS 0x00002000
|
---|
605 |
|
---|
606 | /* SetCooperativeLevel dwFlags */
|
---|
607 | #define DDSCL_FULLSCREEN 0x00000001
|
---|
608 | #define DDSCL_ALLOWREBOOT 0x00000002
|
---|
609 | #define DDSCL_NOWINDOWCHANGES 0x00000004
|
---|
610 | #define DDSCL_NORMAL 0x00000008
|
---|
611 | #define DDSCL_EXCLUSIVE 0x00000010
|
---|
612 | #define DDSCL_ALLOWMODEX 0x00000040
|
---|
613 | #define DDSCL_SETFOCUSWINDOW 0x00000080
|
---|
614 | #define DDSCL_SETDEVICEWINDOW 0x00000100
|
---|
615 | #define DDSCL_CREATEDEVICEWINDOW 0x00000200
|
---|
616 |
|
---|
617 |
|
---|
618 | /* DDSURFACEDESC.dwFlags */
|
---|
619 | #define DDSD_CAPS 0x00000001
|
---|
620 | #define DDSD_HEIGHT 0x00000002
|
---|
621 | #define DDSD_WIDTH 0x00000004
|
---|
622 | #define DDSD_PITCH 0x00000008
|
---|
623 | #define DDSD_BACKBUFFERCOUNT 0x00000020
|
---|
624 | #define DDSD_ZBUFFERBITDEPTH 0x00000040
|
---|
625 | #define DDSD_ALPHABITDEPTH 0x00000080
|
---|
626 | #define DDSD_LPSURFACE 0x00000800
|
---|
627 | #define DDSD_PIXELFORMAT 0x00001000
|
---|
628 | #define DDSD_CKDESTOVERLAY 0x00002000
|
---|
629 | #define DDSD_CKDESTBLT 0x00004000
|
---|
630 | #define DDSD_CKSRCOVERLAY 0x00008000
|
---|
631 | #define DDSD_CKSRCBLT 0x00010000
|
---|
632 | #define DDSD_MIPMAPCOUNT 0x00020000
|
---|
633 | #define DDSD_REFRESHRATE 0x00040000
|
---|
634 | #define DDSD_LINEARSIZE 0x00080000
|
---|
635 | #define DDSD_ALL 0x000ff9ee
|
---|
636 |
|
---|
637 | /* EnumSurfaces flags */
|
---|
638 | #define DDENUMSURFACES_ALL 0x00000001
|
---|
639 | #define DDENUMSURFACES_MATCH 0x00000002
|
---|
640 | #define DDENUMSURFACES_NOMATCH 0x00000004
|
---|
641 | #define DDENUMSURFACES_CANBECREATED 0x00000008
|
---|
642 | #define DDENUMSURFACES_DOESEXIST 0x00000010
|
---|
643 |
|
---|
644 | /* SetDisplayMode flags */
|
---|
645 | #define DDSDM_STANDARDVGAMODE 0x00000001
|
---|
646 |
|
---|
647 | /* EnumDisplayModes flags */
|
---|
648 | #define DDEDM_REFRESHRATES 0x00000001
|
---|
649 | #define DDEDM_STANDARDVGAMODES 0x00000002
|
---|
650 |
|
---|
651 |
|
---|
652 | typedef struct _DDSURFACEDESC
|
---|
653 | {
|
---|
654 | DWORD dwSize; /* 0: size of the DDSURFACEDESC structure*/
|
---|
655 | DWORD dwFlags; /* 4: determines what fields are valid*/
|
---|
656 | DWORD dwHeight; /* 8: height of surface to be created*/
|
---|
657 | DWORD dwWidth; /* C: width of input surface*/
|
---|
658 | LONG lPitch; /*10: distance to start of next line (return value only)*/
|
---|
659 | DWORD dwBackBufferCount;/* 14: number of back buffers requested*/
|
---|
660 | union {
|
---|
661 | DWORD dwMipMapCount;/* 18:number of mip-map levels requested*/
|
---|
662 | DWORD dwZBufferBitDepth;/*18: depth of Z buffer requested*/
|
---|
663 | DWORD dwRefreshRate;/* 18:refresh rate (used when display mode is described)*/
|
---|
664 | } x;
|
---|
665 | DWORD dwAlphaBitDepth;/* 1C:depth of alpha buffer requested*/
|
---|
666 | DWORD dwReserved; /* 20:reserved*/
|
---|
667 | union {
|
---|
668 | LPVOID lpSurface; /* 24:pointer to the associated surface memory*/
|
---|
669 | DWORD dwLinearSize; /* 24:Formless late-allocated optimized surface size*/
|
---|
670 | } y;
|
---|
671 | DDCOLORKEY ddckCKDestOverlay;/* 28: CK for dest overlay use*/
|
---|
672 | DDCOLORKEY ddckCKDestBlt; /* 30: CK for destination blt use*/
|
---|
673 | DDCOLORKEY ddckCKSrcOverlay;/* 38: CK for source overlay use*/
|
---|
674 | DDCOLORKEY ddckCKSrcBlt; /* 40: CK for source blt use*/
|
---|
675 | DDPIXELFORMAT ddpfPixelFormat;/* 48: pixel format description of the surface*/
|
---|
676 | DDSCAPS ddsCaps; /* 68: direct draw surface caps */
|
---|
677 | } DDSURFACEDESC,*LPDDSURFACEDESC;
|
---|
678 |
|
---|
679 | /* DDCOLORCONTROL.dwFlags */
|
---|
680 | #define DDCOLOR_BRIGHTNESS 0x00000001
|
---|
681 | #define DDCOLOR_CONTRAST 0x00000002
|
---|
682 | #define DDCOLOR_HUE 0x00000004
|
---|
683 | #define DDCOLOR_SATURATION 0x00000008
|
---|
684 | #define DDCOLOR_SHARPNESS 0x00000010
|
---|
685 | #define DDCOLOR_GAMMA 0x00000020
|
---|
686 | #define DDCOLOR_COLORENABLE 0x00000040
|
---|
687 |
|
---|
688 | typedef struct {
|
---|
689 | DWORD dwSize;
|
---|
690 | DWORD dwFlags;
|
---|
691 | LONG lBrightness;
|
---|
692 | LONG lContrast;
|
---|
693 | LONG lHue;
|
---|
694 | LONG lSaturation;
|
---|
695 | LONG lSharpness;
|
---|
696 | LONG lGamma;
|
---|
697 | LONG lColorEnable;
|
---|
698 | DWORD dwReserved1;
|
---|
699 | } DDCOLORCONTROL,*LPDDCOLORCONTROL;
|
---|
700 |
|
---|
701 | typedef BOOL (CALLBACK * LPDDENUMCALLBACKA)(GUID *, LPSTR, LPSTR, LPVOID);
|
---|
702 | typedef BOOL (CALLBACK * LPDDENUMCALLBACKW)(GUID *, LPWSTR, LPWSTR, LPVOID);
|
---|
703 | DECL_WINELIB_TYPE_AW(LPDDENUMCALLBACK)
|
---|
704 |
|
---|
705 | typedef HRESULT (CALLBACK * LPDDENUMMODESCALLBACK)(LPDDSURFACEDESC, LPVOID);
|
---|
706 | typedef HRESULT (CALLBACK * LPDDENUMSURFACESCALLBACK)(LPDIRECTDRAWSURFACE, LPDDSURFACEDESC, LPVOID);
|
---|
707 |
|
---|
708 | typedef BOOL (CALLBACK * LPDDENUMCALLBACKEXA)(GUID *, LPSTR, LPSTR, LPVOID, HMONITOR);
|
---|
709 | typedef BOOL (CALLBACK * LPDDENUMCALLBACKEXW)(GUID *, LPWSTR, LPWSTR, LPVOID, HMONITOR);
|
---|
710 | DECL_WINELIB_TYPE_AW(LPDDENUMCALLBACKEX)
|
---|
711 |
|
---|
712 | HRESULT WINAPI DirectDrawEnumerateExA( LPDDENUMCALLBACKEXA lpCallback, LPVOID lpContext, DWORD dwFlags);
|
---|
713 | HRESULT WINAPI DirectDrawEnumerateExW( LPDDENUMCALLBACKEXW lpCallback, LPVOID lpContext, DWORD dwFlags);
|
---|
714 |
|
---|
715 | /* flags for DirectDrawEnumerateEx */
|
---|
716 | #define DDENUM_ATTACHEDSECONDARYDEVICES 0x00000001
|
---|
717 | #define DDENUM_DETACHEDSECONDARYDEVICES 0x00000002
|
---|
718 | #define DDENUM_NONDISPLAYDEVICES 0x00000004
|
---|
719 |
|
---|
720 | typedef struct _DDBLTFX
|
---|
721 | {
|
---|
722 | DWORD dwSize; /* size of structure */
|
---|
723 | DWORD dwDDFX; /* FX operations */
|
---|
724 | DWORD dwROP; /* Win32 raster operations */
|
---|
725 | DWORD dwDDROP; /* Raster operations new for DirectDraw */
|
---|
726 | DWORD dwRotationAngle; /* Rotation angle for blt */
|
---|
727 | DWORD dwZBufferOpCode; /* ZBuffer compares */
|
---|
728 | DWORD dwZBufferLow; /* Low limit of Z buffer */
|
---|
729 | DWORD dwZBufferHigh; /* High limit of Z buffer */
|
---|
730 | DWORD dwZBufferBaseDest; /* Destination base value */
|
---|
731 | DWORD dwZDestConstBitDepth; /* Bit depth used to specify Z constant for destination */
|
---|
732 | union
|
---|
733 | {
|
---|
734 | DWORD dwZDestConst; /* Constant to use as Z buffer for dest */
|
---|
735 | LPDIRECTDRAWSURFACE lpDDSZBufferDest; /* Surface to use as Z buffer for dest */
|
---|
736 | } x;
|
---|
737 | DWORD dwZSrcConstBitDepth; /* Bit depth used to specify Z constant for source */
|
---|
738 | union
|
---|
739 | {
|
---|
740 | DWORD dwZSrcConst; /* Constant to use as Z buffer for src */
|
---|
741 | LPDIRECTDRAWSURFACE lpDDSZBufferSrc; /* Surface to use as Z buffer for src */
|
---|
742 | } y;
|
---|
743 | DWORD dwAlphaEdgeBlendBitDepth; /* Bit depth used to specify constant for alpha edge blend */
|
---|
744 | DWORD dwAlphaEdgeBlend; /* Alpha for edge blending */
|
---|
745 | DWORD dwReserved;
|
---|
746 | DWORD dwAlphaDestConstBitDepth; /* Bit depth used to specify alpha constant for destination */
|
---|
747 | union
|
---|
748 | {
|
---|
749 | DWORD dwAlphaDestConst; /* Constant to use as Alpha Channel */
|
---|
750 | LPDIRECTDRAWSURFACE lpDDSAlphaDest; /* Surface to use as Alpha Channel */
|
---|
751 | } z;
|
---|
752 | DWORD dwAlphaSrcConstBitDepth; /* Bit depth used to specify alpha constant for source */
|
---|
753 | union
|
---|
754 | {
|
---|
755 | DWORD dwAlphaSrcConst; /* Constant to use as Alpha Channel */
|
---|
756 | LPDIRECTDRAWSURFACE lpDDSAlphaSrc; /* Surface to use as Alpha Channel */
|
---|
757 | } a;
|
---|
758 | union
|
---|
759 | {
|
---|
760 | DWORD dwFillColor; /* color in RGB or Palettized */
|
---|
761 | DWORD dwFillDepth; /* depth value for z-buffer */
|
---|
762 | DWORD dwFillPixel; /* pixel val for RGBA or RGBZ */
|
---|
763 | LPDIRECTDRAWSURFACE lpDDSPattern; /* Surface to use as pattern */
|
---|
764 | } b;
|
---|
765 | DDCOLORKEY ddckDestColorkey; /* DestColorkey override */
|
---|
766 | DDCOLORKEY ddckSrcColorkey; /* SrcColorkey override */
|
---|
767 | } DDBLTFX,*LPDDBLTFX;
|
---|
768 |
|
---|
769 | /* dwDDFX */
|
---|
770 | /* arithmetic stretching along y axis */
|
---|
771 | #define DDBLTFX_ARITHSTRETCHY 0x00000001
|
---|
772 | /* mirror on y axis */
|
---|
773 | #define DDBLTFX_MIRRORLEFTRIGHT 0x00000002
|
---|
774 | /* mirror on x axis */
|
---|
775 | #define DDBLTFX_MIRRORUPDOWN 0x00000004
|
---|
776 | /* do not tear */
|
---|
777 | #define DDBLTFX_NOTEARING 0x00000008
|
---|
778 | /* 180 degrees clockwise rotation */
|
---|
779 | #define DDBLTFX_ROTATE180 0x00000010
|
---|
780 | /* 270 degrees clockwise rotation */
|
---|
781 | #define DDBLTFX_ROTATE270 0x00000020
|
---|
782 | /* 90 degrees clockwise rotation */
|
---|
783 | #define DDBLTFX_ROTATE90 0x00000040
|
---|
784 | /* dwZBufferLow and dwZBufferHigh specify limits to the copied Z values */
|
---|
785 | #define DDBLTFX_ZBUFFERRANGE 0x00000080
|
---|
786 | /* add dwZBufferBaseDest to every source z value before compare */
|
---|
787 | #define DDBLTFX_ZBUFFERBASEDEST 0x00000100
|
---|
788 |
|
---|
789 | typedef struct _DDOVERLAYFX
|
---|
790 | {
|
---|
791 | DWORD dwSize; /* size of structure */
|
---|
792 | DWORD dwAlphaEdgeBlendBitDepth; /* Bit depth used to specify constant for alpha edge blend */
|
---|
793 | DWORD dwAlphaEdgeBlend; /* Constant to use as alpha for edge blend */
|
---|
794 | DWORD dwReserved;
|
---|
795 | DWORD dwAlphaDestConstBitDepth; /* Bit depth used to specify alpha constant for destination */
|
---|
796 | union
|
---|
797 | {
|
---|
798 | DWORD dwAlphaDestConst; /* Constant to use as alpha channel for dest */
|
---|
799 | LPDIRECTDRAWSURFACE lpDDSAlphaDest; /* Surface to use as alpha channel for dest */
|
---|
800 | } x;
|
---|
801 | DWORD dwAlphaSrcConstBitDepth; /* Bit depth used to specify alpha constant for source */
|
---|
802 | union
|
---|
803 | {
|
---|
804 | DWORD dwAlphaSrcConst; /* Constant to use as alpha channel for src */
|
---|
805 | LPDIRECTDRAWSURFACE lpDDSAlphaSrc; /* Surface to use as alpha channel for src */
|
---|
806 | } y;
|
---|
807 | DDCOLORKEY dckDestColorkey; /* DestColorkey override */
|
---|
808 | DDCOLORKEY dckSrcColorkey; /* DestColorkey override */
|
---|
809 | DWORD dwDDFX; /* Overlay FX */
|
---|
810 | DWORD dwFlags; /* flags */
|
---|
811 | } DDOVERLAYFX,*LPDDOVERLAYFX;
|
---|
812 |
|
---|
813 | typedef struct _DDBLTBATCH
|
---|
814 | {
|
---|
815 | LPRECT lprDest;
|
---|
816 | LPDIRECTDRAWSURFACE lpDDSSrc;
|
---|
817 | LPRECT lprSrc;
|
---|
818 | DWORD dwFlags;
|
---|
819 | LPDDBLTFX lpDDBltFx;
|
---|
820 | } DDBLTBATCH,*LPDDBLTBATCH;
|
---|
821 |
|
---|
822 | #define MAX_DDDEVICEID_STRING 512
|
---|
823 |
|
---|
824 | typedef struct tagDDDEVICEIDENTIFIER {
|
---|
825 | char szDriver[MAX_DDDEVICEID_STRING];
|
---|
826 | char szDescription[MAX_DDDEVICEID_STRING];
|
---|
827 | LARGE_INTEGER liDriverVersion;
|
---|
828 | DWORD dwVendorId;
|
---|
829 | DWORD dwDeviceId;
|
---|
830 | DWORD dwSubSysId;
|
---|
831 | DWORD dwRevision;
|
---|
832 | GUID guidDeviceIdentifier;
|
---|
833 | } DDDEVICEIDENTIFIER, * LPDDDEVICEIDENTIFIER;
|
---|
834 |
|
---|
835 |
|
---|
836 | /*****************************************************************************
|
---|
837 | * IDirectDrawPalette interface
|
---|
838 | */
|
---|
839 | #define ICOM_INTERFACE IDirectDrawPalette
|
---|
840 | #define IDirectDrawPalette_METHODS \
|
---|
841 | ICOM_METHOD1(HRESULT,GetCaps, LPDWORD,lpdwCaps) \
|
---|
842 | ICOM_METHOD4(HRESULT,GetEntries, DWORD,dwFlags, DWORD,dwBase, DWORD,dwNumEntries, LPPALETTEENTRY,lpEntries) \
|
---|
843 | ICOM_METHOD3(HRESULT,Initialize, LPDIRECTDRAW,lpDD, DWORD,dwFlags, LPPALETTEENTRY,lpDDColorTable) \
|
---|
844 | ICOM_METHOD4(HRESULT,SetEntries, DWORD,dwFlags, DWORD,dwStartingEntry, DWORD,dwCount, LPPALETTEENTRY,lpEntries)
|
---|
845 | #define IDirectDrawPalette_IMETHODS \
|
---|
846 | IUnknown_IMETHODS \
|
---|
847 | IDirectDrawPalette_METHODS
|
---|
848 | ICOM_DEFINE(IDirectDrawPalette,IUnknown)
|
---|
849 | #undef ICOM_INTERFACE
|
---|
850 |
|
---|
851 | #ifdef ICOM_CINTERFACE
|
---|
852 | /*** IUnknown methods ***/
|
---|
853 | #define IDirectDrawPalette_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
854 | #define IDirectDrawPalette_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
855 | #define IDirectDrawPalette_Release(p) ICOM_CALL (Release,p)
|
---|
856 | /*** IDirectDrawPalette methods ***/
|
---|
857 | #define IDirectDrawPalette_GetCaps(p,a) ICOM_CALL1(GetCaps,p,a)
|
---|
858 | #define IDirectDrawPalette_GetEntries(p,a,b,c,d) ICOM_CALL4(GetEntries,p,a,b,c,d)
|
---|
859 | #define IDirectDrawPalette_Initialize(p,a,b,c) ICOM_CALL3(Initialize,p,a,b,c)
|
---|
860 | #define IDirectDrawPalette_SetEntries(p,a,b,c,d) ICOM_CALL4(SetEntries,p,a,b,c,d)
|
---|
861 | #endif
|
---|
862 |
|
---|
863 |
|
---|
864 | /*****************************************************************************
|
---|
865 | * IDirectDrawClipper interface
|
---|
866 | */
|
---|
867 | #define ICOM_INTERFACE IDirectDrawClipper
|
---|
868 | #define IDirectDrawClipper_METHODS \
|
---|
869 | ICOM_METHOD3(HRESULT,GetClipList, LPRECT,lpRect, LPRGNDATA,lpClipList, LPDWORD,lpdwSize) \
|
---|
870 | ICOM_METHOD1(HRESULT,GetHWnd, HWND*,lphWnd) \
|
---|
871 | ICOM_METHOD2(HRESULT,Initialize, LPDIRECTDRAW,lpDD, DWORD,dwFlags) \
|
---|
872 | ICOM_METHOD1(HRESULT,IsClipListChanged, BOOL*,lpbChanged) \
|
---|
873 | ICOM_METHOD2(HRESULT,SetClipList, LPRGNDATA,lpClipList, DWORD,dwFlags) \
|
---|
874 | ICOM_METHOD2(HRESULT,SetHWnd, DWORD,dwFlags, HWND,hWnd)
|
---|
875 | #define IDirectDrawClipper_IMETHODS \
|
---|
876 | IUnknown_IMETHODS \
|
---|
877 | IDirectDrawClipper_METHODS
|
---|
878 | ICOM_DEFINE(IDirectDrawClipper,IUnknown)
|
---|
879 | #undef ICOM_INTERFACE
|
---|
880 |
|
---|
881 | #ifdef ICOM_CINTERFACE
|
---|
882 | /*** IUnknown methods ***/
|
---|
883 | #define IDirectDrawClipper_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
884 | #define IDirectDrawClipper_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
885 | #define IDirectDrawClipper_Release(p) ICOM_CALL (Release,p)
|
---|
886 | /*** IDirectDrawClipper methods ***/
|
---|
887 | #define IDirectDrawClipper_GetClipList(p,a,b,c) ICOM_CALL3(GetClipList,p,a,b,c)
|
---|
888 | #define IDirectDrawClipper_GetHWnd(p,a) ICOM_CALL1(GetHWnd,p,a)
|
---|
889 | #define IDirectDrawClipper_Initialize(p,a,b) ICOM_CALL2(Initialize,p,a,b)
|
---|
890 | #define IDirectDrawClipper_IsClipListChanged(p,a) ICOM_CALL1(IsClipListChanged,p,a)
|
---|
891 | #define IDirectDrawClipper_SetClipList(p,a,b) ICOM_CALL2(SetClipList,p,a,b)
|
---|
892 | #define IDirectDrawClipper_SetHWnd(p,a,b) ICOM_CALL2(SetHWnd,p,a,b)
|
---|
893 | #endif
|
---|
894 |
|
---|
895 |
|
---|
896 | /*****************************************************************************
|
---|
897 | * IDirectDraw interface
|
---|
898 | */
|
---|
899 | #define ICOM_INTERFACE IDirectDraw
|
---|
900 | #define IDirectDraw_METHODS \
|
---|
901 | ICOM_METHOD (HRESULT,Compact) \
|
---|
902 | ICOM_METHOD3(HRESULT,CreateClipper, DWORD,dwFlags, LPDIRECTDRAWCLIPPER*,lplpDDClipper, IUnknown*,pUnkOuter) \
|
---|
903 | ICOM_METHOD4(HRESULT,CreatePalette, DWORD,dwFlags, LPPALETTEENTRY,lpColorTable, LPDIRECTDRAWPALETTE*,lplpDDPalette, IUnknown*,pUnkOuter) \
|
---|
904 | ICOM_METHOD3(HRESULT,CreateSurface, LPDDSURFACEDESC,lpDDSurfaceDesc, LPDIRECTDRAWSURFACE*,lplpDDSurface, IUnknown*,pUnkOuter) \
|
---|
905 | ICOM_METHOD2(HRESULT,DuplicateSurface, LPDIRECTDRAWSURFACE,lpDDSurface, LPDIRECTDRAWSURFACE*,lplpDupDDSurface) \
|
---|
906 | ICOM_METHOD4(HRESULT,EnumDisplayModes, DWORD,dwFlags, LPDDSURFACEDESC,lpDDSurfaceDesc, LPVOID,lpContext, LPDDENUMMODESCALLBACK,lpEnumModesCallback) \
|
---|
907 | ICOM_METHOD4(HRESULT,EnumSurfaces, DWORD,dwFlags, LPDDSURFACEDESC,lpDDSD, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
|
---|
908 | ICOM_METHOD (HRESULT,FlipToGDISurface) \
|
---|
909 | ICOM_METHOD2(HRESULT,GetCaps, LPDDCAPS,lpDDDriverCaps, LPDDCAPS,lpDDHELCaps) \
|
---|
910 | ICOM_METHOD1(HRESULT,GetDisplayMode, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
911 | ICOM_METHOD2(HRESULT,GetFourCCCodes, LPDWORD,lpNumCodes, LPDWORD,lpCodes) \
|
---|
912 | ICOM_METHOD1(HRESULT,GetGDISurface, LPDIRECTDRAWSURFACE*,lplpGDIDDSurface) \
|
---|
913 | ICOM_METHOD1(HRESULT,GetMonitorFrequency, LPDWORD,lpdwFrequency) \
|
---|
914 | ICOM_METHOD1(HRESULT,GetScanLine, LPDWORD,lpdwScanLine) \
|
---|
915 | ICOM_METHOD1(HRESULT,GetVerticalBlankStatus, BOOL*,lpbIsInVB) \
|
---|
916 | ICOM_METHOD1(HRESULT,Initialize, GUID*,lpGUID) \
|
---|
917 | ICOM_METHOD (HRESULT,RestoreDisplayMode) \
|
---|
918 | ICOM_METHOD2(HRESULT,SetCooperativeLevel, HWND,hWnd, DWORD,dwFlags) \
|
---|
919 | ICOM_METHOD3(HRESULT,SetDisplayMode, DWORD,, DWORD,, DWORD,) \
|
---|
920 | ICOM_METHOD2(HRESULT,WaitForVerticalBlank, DWORD,dwFlags, HANDLE,hEvent)
|
---|
921 | #define IDirectDraw_IMETHODS \
|
---|
922 | IUnknown_IMETHODS \
|
---|
923 | IDirectDraw_METHODS
|
---|
924 | ICOM_DEFINE(IDirectDraw,IUnknown)
|
---|
925 | #undef ICOM_INTERFACE
|
---|
926 |
|
---|
927 | #ifdef ICOM_CINTERFACE
|
---|
928 | /*** IUnknown methods ***/
|
---|
929 | #define IDirectDraw_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
930 | #define IDirectDraw_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
931 | #define IDirectDraw_Release(p) ICOM_CALL (Release,p)
|
---|
932 | /*** IDirectDraw methods ***/
|
---|
933 | #define IDirectDraw_Compact(p) ICOM_CALL (Compact,p)
|
---|
934 | #define IDirectDraw_CreateClipper(p,a,b,c) ICOM_CALL3(CreateClipper,p,a,b,c)
|
---|
935 | #define IDirectDraw_CreatePalette(p,a,b,c,d) ICOM_CALL4(CreatePalette,p,a,b,c,d)
|
---|
936 | #define IDirectDraw_CreateSurface(p,a,b,c) ICOM_CALL3(CreateSurface,p,a,b,c)
|
---|
937 | #define IDirectDraw_DuplicateSurface(p,a,b) ICOM_CALL2(DuplicateSurface,p,a,b)
|
---|
938 | #define IDirectDraw_EnumDisplayModes(p,a,b,c,d) ICOM_CALL4(EnumDisplayModes,p,a,b,c,d)
|
---|
939 | #define IDirectDraw_EnumSurfaces(p,a,b,c,d) ICOM_CALL4(EnumSurfaces,p,a,b,c,d)
|
---|
940 | #define IDirectDraw_FlipToGDISurface(p) ICOM_CALL (FlipToGDISurface,p)
|
---|
941 | #define IDirectDraw_GetCaps(p,a,b) ICOM_CALL2(GetCaps,p,a,b)
|
---|
942 | #define IDirectDraw_GetDisplayMode(p,a) ICOM_CALL1(GetDisplayMode,p,a)
|
---|
943 | #define IDirectDraw_GetFourCCCodes(p,a,b) ICOM_CALL2(GetFourCCCodes,p,a,b)
|
---|
944 | #define IDirectDraw_GetGDISurface(p,a) ICOM_CALL1(GetGDISurface,p,a)
|
---|
945 | #define IDirectDraw_GetMonitorFrequency(p,a) ICOM_CALL1(GetMonitorFrequency,p,a)
|
---|
946 | #define IDirectDraw_GetScanLine(p,a) ICOM_CALL1(GetScanLine,p,a)
|
---|
947 | #define IDirectDraw_GetVerticalBlankStatus(p,a) ICOM_CALL1(GetVerticalBlankStatus,p,a)
|
---|
948 | #define IDirectDraw_Initialize(p,a) ICOM_CALL1(Initialize,p,a)
|
---|
949 | #define IDirectDraw_RestoreDisplayMode(p) ICOM_CALL (RestoreDisplayMode,p)
|
---|
950 | #define IDirectDraw_SetCooperativeLevel(p,a,b) ICOM_CALL2(SetCooperativeLevel,p,a,b)
|
---|
951 | #define IDirectDraw_SetDisplayMode(p,a,b,c) ICOM_CALL3(SetDisplayMode,p,a,b,c)
|
---|
952 | #define IDirectDraw_WaitForVerticalBlank(p,a,b) ICOM_CALL2(WaitForVerticalBlank,p,a,b)
|
---|
953 | #endif
|
---|
954 |
|
---|
955 |
|
---|
956 | /* flags for Lock() */
|
---|
957 | #define DDLOCK_SURFACEMEMORYPTR 0x00000000
|
---|
958 | #define DDLOCK_WAIT 0x00000001
|
---|
959 | #define DDLOCK_EVENT 0x00000002
|
---|
960 | #define DDLOCK_READONLY 0x00000010
|
---|
961 | #define DDLOCK_WRITEONLY 0x00000020
|
---|
962 | #define DDLOCK_NOSYSLOCK 0x00000800
|
---|
963 |
|
---|
964 |
|
---|
965 | /*****************************************************************************
|
---|
966 | * IDirectDraw2 interface
|
---|
967 | */
|
---|
968 | /* Note: IDirectDraw2 cannot derive from IDirectDraw because the number of
|
---|
969 | * arguments of SetDisplayMode has changed !
|
---|
970 | */
|
---|
971 | #define ICOM_INTERFACE IDirectDraw2
|
---|
972 | #define IDirectDraw2_METHODS \
|
---|
973 | ICOM_METHOD (HRESULT,Compact) \
|
---|
974 | ICOM_METHOD3(HRESULT,CreateClipper, DWORD,dwFlags, LPDIRECTDRAWCLIPPER*,lplpDDClipper, IUnknown*,pUnkOuter) \
|
---|
975 | ICOM_METHOD4(HRESULT,CreatePalette, DWORD,dwFlags, LPPALETTEENTRY,lpColorTable, LPDIRECTDRAWPALETTE*,lplpDDPalette, IUnknown*,pUnkOuter) \
|
---|
976 | ICOM_METHOD3(HRESULT,CreateSurface, LPDDSURFACEDESC,lpDDSurfaceDesc, LPDIRECTDRAWSURFACE*,lplpDDSurface, IUnknown*,pUnkOuter) \
|
---|
977 | ICOM_METHOD2(HRESULT,DuplicateSurface, LPDIRECTDRAWSURFACE,lpDDSurface, LPDIRECTDRAWSURFACE*,lplpDupDDSurface) \
|
---|
978 | ICOM_METHOD4(HRESULT,EnumDisplayModes, DWORD,dwFlags, LPDDSURFACEDESC,lpDDSurfaceDesc, LPVOID,lpContext, LPDDENUMMODESCALLBACK,lpEnumModesCallback) \
|
---|
979 | ICOM_METHOD4(HRESULT,EnumSurfaces, DWORD,dwFlags, LPDDSURFACEDESC,lpDDSD, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
|
---|
980 | ICOM_METHOD (HRESULT,FlipToGDISurface) \
|
---|
981 | ICOM_METHOD2(HRESULT,GetCaps, LPDDCAPS,lpDDDriverCaps, LPDDCAPS,lpDDHELCaps) \
|
---|
982 | ICOM_METHOD1(HRESULT,GetDisplayMode, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
983 | ICOM_METHOD2(HRESULT,GetFourCCCodes, LPDWORD,lpNumCodes, LPDWORD,lpCodes) \
|
---|
984 | ICOM_METHOD1(HRESULT,GetGDISurface, LPDIRECTDRAWSURFACE*,lplpGDIDDSurface) \
|
---|
985 | ICOM_METHOD1(HRESULT,GetMonitorFrequency, LPDWORD,lpdwFrequency) \
|
---|
986 | ICOM_METHOD1(HRESULT,GetScanLine, LPDWORD,lpdwScanLine) \
|
---|
987 | ICOM_METHOD1(HRESULT,GetVerticalBlankStatus, BOOL*,lpbIsInVB) \
|
---|
988 | ICOM_METHOD1(HRESULT,Initialize, GUID*,lpGUID) \
|
---|
989 | ICOM_METHOD (HRESULT,RestoreDisplayMode) \
|
---|
990 | ICOM_METHOD2(HRESULT,SetCooperativeLevel, HWND,hWnd, DWORD,dwFlags) \
|
---|
991 | ICOM_METHOD5(HRESULT,SetDisplayMode, DWORD,dwWidth, DWORD,dwHeight, DWORD,dwBPP, DWORD,dwRefreshRate, DWORD,dwFlags) \
|
---|
992 | ICOM_METHOD2(HRESULT,WaitForVerticalBlank, DWORD,dwFlags, HANDLE,hEvent) \
|
---|
993 | /* added in v2 */ \
|
---|
994 | ICOM_METHOD3(HRESULT,GetAvailableVidMem, LPDDSCAPS,lpDDCaps, LPDWORD,lpdwTotal, LPDWORD,lpdwFree)
|
---|
995 | #define IDirectDraw2_IMETHODS \
|
---|
996 | IUnknown_IMETHODS \
|
---|
997 | IDirectDraw2_METHODS
|
---|
998 | ICOM_DEFINE(IDirectDraw2,IUnknown)
|
---|
999 | #undef ICOM_INTERFACE
|
---|
1000 |
|
---|
1001 | #ifdef ICOM_CINTERFACE
|
---|
1002 | /*** IUnknown methods ***/
|
---|
1003 | #define IDirectDraw2_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
1004 | #define IDirectDraw2_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
1005 | #define IDirectDraw2_Release(p) ICOM_CALL (Release,p)
|
---|
1006 | /*** IDirectDraw methods ***/
|
---|
1007 | #define IDirectDraw2_Compact(p) ICOM_CALL (Compact,p)
|
---|
1008 | #define IDirectDraw2_CreateClipper(p,a,b,c) ICOM_CALL3(CreateClipper,p,a,b,c)
|
---|
1009 | #define IDirectDraw2_CreatePalette(p,a,b,c,d) ICOM_CALL4(CreatePalette,p,a,b,c,d)
|
---|
1010 | #define IDirectDraw2_CreateSurface(p,a,b,c) ICOM_CALL3(CreateSurface,p,a,b,c)
|
---|
1011 | #define IDirectDraw2_DuplicateSurface(p,a,b) ICOM_CALL2(DuplicateSurface,p,a,b)
|
---|
1012 | #define IDirectDraw2_EnumDisplayModes(p,a,b,c,d) ICOM_CALL4(EnumDisplayModes,p,a,b,c,d)
|
---|
1013 | #define IDirectDraw2_EnumSurfaces(p,a,b,c,d) ICOM_CALL4(EnumSurfaces,p,a,b,c,d)
|
---|
1014 | #define IDirectDraw2_FlipToGDISurface(p) ICOM_CALL (FlipToGDISurface,p)
|
---|
1015 | #define IDirectDraw2_GetCaps(p,a,b) ICOM_CALL2(GetCaps,p,a,b)
|
---|
1016 | #define IDirectDraw2_GetDisplayMode(p,a) ICOM_CALL1(GetDisplayMode,p,a)
|
---|
1017 | #define IDirectDraw2_GetFourCCCodes(p,a,b) ICOM_CALL2(GetFourCCCodes,p,a,b)
|
---|
1018 | #define IDirectDraw2_GetGDISurface(p,a) ICOM_CALL1(GetGDISurface,p,a)
|
---|
1019 | #define IDirectDraw2_GetMonitorFrequency(p,a) ICOM_CALL1(GetMonitorFrequency,p,a)
|
---|
1020 | #define IDirectDraw2_GetScanLine(p,a) ICOM_CALL1(GetScanLine,p,a)
|
---|
1021 | #define IDirectDraw2_GetVerticalBlankStatus(p,a) ICOM_CALL1(GetVerticalBlankStatus,p,a)
|
---|
1022 | #define IDirectDraw2_Initialize(p,a) ICOM_CALL1(Initialize,p,a)
|
---|
1023 | #define IDirectDraw2_RestoreDisplayMode(p) ICOM_CALL (RestoreDisplayMode,p)
|
---|
1024 | #define IDirectDraw2_SetCooperativeLevel(p,a,b) ICOM_CALL2(SetCooperativeLevel,p,a,b)
|
---|
1025 | #define IDirectDraw2_SetDisplayMode(p,a,b,c,d,e) ICOM_CALL5(SetDisplayMode,p,a,b,c,d,e)
|
---|
1026 | #define IDirectDraw2_WaitForVerticalBlank(p,a,b) ICOM_CALL2(WaitForVerticalBlank,p,a,b)
|
---|
1027 | /*** IDirectDraw2 methods ***/
|
---|
1028 | #define IDirectDraw2_GetAvailableVidMem(p,a,b,c) ICOM_CALL3(GetAvailableVidMem,p,a,b,c)
|
---|
1029 | #endif
|
---|
1030 |
|
---|
1031 |
|
---|
1032 | /*****************************************************************************
|
---|
1033 | * IDirectDraw4 interface
|
---|
1034 | */
|
---|
1035 | #define ICOM_INTERFACE IDirectDraw4
|
---|
1036 | #define IDirectDraw4_METHODS \
|
---|
1037 | ICOM_METHOD2(HRESULT,GetSurfaceFromDC, HDC,, LPDIRECTDRAWSURFACE*,) \
|
---|
1038 | ICOM_METHOD (HRESULT,RestoreAllSurfaces) \
|
---|
1039 | ICOM_METHOD (HRESULT,TestCooperativeLevel) \
|
---|
1040 | ICOM_METHOD2(HRESULT,GetDeviceIdentifier, LPDDDEVICEIDENTIFIER,, DWORD,)
|
---|
1041 | #define IDirectDraw4_IMETHODS \
|
---|
1042 | IDirectDraw2_IMETHODS \
|
---|
1043 | IDirectDraw4_METHODS
|
---|
1044 | ICOM_DEFINE(IDirectDraw4,IDirectDraw2)
|
---|
1045 | #undef ICOM_INTERFACE
|
---|
1046 |
|
---|
1047 | #ifdef ICOM_CINTERFACE
|
---|
1048 | /*** IUnknown methods ***/
|
---|
1049 | #define IDirectDraw4_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
1050 | #define IDirectDraw4_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
1051 | #define IDirectDraw4_Release(p) ICOM_CALL (Release,p)
|
---|
1052 | /*** IDirectDraw methods ***/
|
---|
1053 | #define IDirectDraw4_Compact(p) ICOM_CALL (Compact,p)
|
---|
1054 | #define IDirectDraw4_CreateClipper(p,a,b,c) ICOM_CALL3(CreateClipper,p,a,b,c)
|
---|
1055 | #define IDirectDraw4_CreatePalette(p,a,b,c,d) ICOM_CALL4(CreatePalette,p,a,b,c,d)
|
---|
1056 | #define IDirectDraw4_CreateSurface(p,a,b,c) ICOM_CALL3(CreateSurface,p,a,b,c)
|
---|
1057 | #define IDirectDraw4_DuplicateSurface(p,a,b) ICOM_CALL2(DuplicateSurface,p,a,b)
|
---|
1058 | #define IDirectDraw4_EnumDisplayModes(p,a,b,c,d) ICOM_CALL4(EnumDisplayModes,p,a,b,c,d)
|
---|
1059 | #define IDirectDraw4_EnumSurfaces(p,a,b,c,d) ICOM_CALL4(EnumSurfaces,p,a,b,c,d)
|
---|
1060 | #define IDirectDraw4_FlipToGDISurface(p) ICOM_CALL (FlipToGDISurface,p)
|
---|
1061 | #define IDirectDraw4_GetCaps(p,a,b) ICOM_CALL2(GetCaps,p,a,b)
|
---|
1062 | #define IDirectDraw4_GetDisplayMode(p,a) ICOM_CALL1(GetDisplayMode,p,a)
|
---|
1063 | #define IDirectDraw4_GetFourCCCodes(p,a,b) ICOM_CALL2(GetFourCCCodes,p,a,b)
|
---|
1064 | #define IDirectDraw4_GetGDISurface(p,a) ICOM_CALL1(GetGDISurface,p,a)
|
---|
1065 | #define IDirectDraw4_GetMonitorFrequency(p,a) ICOM_CALL1(GetMonitorFrequency,p,a)
|
---|
1066 | #define IDirectDraw4_GetScanLine(p,a) ICOM_CALL1(GetScanLine,p,a)
|
---|
1067 | #define IDirectDraw4_GetVerticalBlankStatus(p,a) ICOM_CALL1(GetVerticalBlankStatus,p,a)
|
---|
1068 | #define IDirectDraw4_Initialize(p,a) ICOM_CALL1(Initialize,p,a)
|
---|
1069 | #define IDirectDraw4_RestoreDisplayMode(p) ICOM_CALL (RestoreDisplayMode,p)
|
---|
1070 | #define IDirectDraw4_SetCooperativeLevel(p,a,b) ICOM_CALL2(SetCooperativeLevel,p,a,b)
|
---|
1071 | #define IDirectDraw4_SetDisplayMode(p,a,b,c) ICOM_CALL3(SetDisplayMode,p,a,b,c)
|
---|
1072 | #define IDirectDraw4_WaitForVerticalBlank(p,a,b) ICOM_CALL2(WaitForVerticalBlank,p,a,b)
|
---|
1073 | /*** IDirectDraw2 methods ***/
|
---|
1074 | #define IDirectDraw4_GetAvailableVidMem(p,a,b,c) ICOM_CALL3(GetAvailableVidMem,p,a,b,c)
|
---|
1075 | /*** IDirectDraw4 methods ***/
|
---|
1076 | #define IDirectDraw4_GetSurfaceFromDC(p,a,b) ICOM_CALL2(GetSurfaceFromDC,p,a,b,c)
|
---|
1077 | #define IDirectDraw4_RestoreAllSurfaces(pc) ICOM_CALL (RestoreAllSurfaces,p)
|
---|
1078 | #define IDirectDraw4_TestCooperativeLevel(p) ICOM_CALL (TestCooperativeLevel,p)
|
---|
1079 | #define IDirectDraw4_GetDeviceIdentifier(p,a,b) ICOM_CALL2(GetDeviceIdentifier,p,a,b)
|
---|
1080 | #endif
|
---|
1081 |
|
---|
1082 |
|
---|
1083 | /*****************************************************************************
|
---|
1084 | * IDirectDrawSurface interface
|
---|
1085 | */
|
---|
1086 | #define ICOM_INTERFACE IDirectDrawSurface
|
---|
1087 | #define IDirectDrawSurface_METHODS \
|
---|
1088 | ICOM_METHOD1(HRESULT,AddAttachedSurface, LPDIRECTDRAWSURFACE,lpDDSAttachedSurface) \
|
---|
1089 | ICOM_METHOD1(HRESULT,AddOverlayDirtyRect, LPRECT,lpRect) \
|
---|
1090 | ICOM_METHOD5(HRESULT,Blt, LPRECT,lpDestRect, LPDIRECTDRAWSURFACE,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
|
---|
1091 | ICOM_METHOD3(HRESULT,BltBatch, LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
|
---|
1092 | ICOM_METHOD5(HRESULT,BltFast, DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
|
---|
1093 | ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE,lpDDSAttachedSurface) \
|
---|
1094 | ICOM_METHOD2(HRESULT,EnumAttachedSurfaces, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
|
---|
1095 | ICOM_METHOD3(HRESULT,EnumOverlayZOrders, DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
|
---|
1096 | ICOM_METHOD2(HRESULT,Flip, LPDIRECTDRAWSURFACE,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
|
---|
1097 | ICOM_METHOD2(HRESULT,GetAttachedSurface, LPDDSCAPS,lpDDSCaps, LPDIRECTDRAWSURFACE*,lplpDDAttachedSurface) \
|
---|
1098 | ICOM_METHOD1(HRESULT,GetBltStatus, DWORD,dwFlags) \
|
---|
1099 | ICOM_METHOD1(HRESULT,GetCaps, LPDDSCAPS,lpDDSCaps) \
|
---|
1100 | ICOM_METHOD1(HRESULT,GetClipper, LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
|
---|
1101 | ICOM_METHOD2(HRESULT,GetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1102 | ICOM_METHOD1(HRESULT,GetDC, HDC*,lphDC) \
|
---|
1103 | ICOM_METHOD1(HRESULT,GetFlipStatus, DWORD,dwFlags) \
|
---|
1104 | ICOM_METHOD2(HRESULT,GetOverlayPosition, LPLONG,lplX, LPLONG,lplY) \
|
---|
1105 | ICOM_METHOD1(HRESULT,GetPalette, LPDIRECTDRAWPALETTE*,lplpDDPalette) \
|
---|
1106 | ICOM_METHOD1(HRESULT,GetPixelFormat, LPDDPIXELFORMAT,lpDDPixelFormat) \
|
---|
1107 | ICOM_METHOD1(HRESULT,GetSurfaceDesc, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1108 | ICOM_METHOD2(HRESULT,Initialize, LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1109 | ICOM_METHOD (HRESULT,IsLost) \
|
---|
1110 | ICOM_METHOD4(HRESULT,Lock, LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
|
---|
1111 | ICOM_METHOD1(HRESULT,ReleaseDC, HDC,hDC) \
|
---|
1112 | ICOM_METHOD (HRESULT,Restore) \
|
---|
1113 | ICOM_METHOD1(HRESULT,SetClipper, LPDIRECTDRAWCLIPPER,lpDDClipper) \
|
---|
1114 | ICOM_METHOD2(HRESULT,SetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1115 | ICOM_METHOD2(HRESULT,SetOverlayPosition, LONG,lX, LONG,lY) \
|
---|
1116 | ICOM_METHOD1(HRESULT,SetPalette, LPDIRECTDRAWPALETTE,lpDDPalette) \
|
---|
1117 | ICOM_METHOD1(HRESULT,Unlock, LPVOID,lpSurfaceData) \
|
---|
1118 | ICOM_METHOD5(HRESULT,UpdateOverlay, LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
|
---|
1119 | ICOM_METHOD1(HRESULT,UpdateOverlayDisplay, DWORD,dwFlags) \
|
---|
1120 | ICOM_METHOD2(HRESULT,UpdateOverlayZOrder, DWORD,dwFlags, LPDIRECTDRAWSURFACE,lpDDSReference)
|
---|
1121 | #define IDirectDrawSurface_IMETHODS \
|
---|
1122 | IUnknown_IMETHODS \
|
---|
1123 | IDirectDrawSurface_METHODS
|
---|
1124 | ICOM_DEFINE(IDirectDrawSurface,IUnknown)
|
---|
1125 | #undef ICOM_INTERFACE
|
---|
1126 |
|
---|
1127 | #ifdef ICOM_CINTERFACE
|
---|
1128 | /*** IUnknown methods ***/
|
---|
1129 | #define IDirectDrawSurface_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
1130 | #define IDirectDrawSurface_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
1131 | #define IDirectDrawSurface_Release(p) ICOM_CALL (Release,p)
|
---|
1132 | /*** IDirectDrawSurface methods ***/
|
---|
1133 | #define IDirectDrawSurface_AddAttachedSurface(p,a) ICOM_CALL1(AddAttachedSurface,p,a)
|
---|
1134 | #define IDirectDrawSurface_AddOverlayDirtyRect(p,a) ICOM_CALL1(AddOverlayDirtyRect,p,a)
|
---|
1135 | #define IDirectDrawSurface_Blt(p,a,b,c,d,e) ICOM_CALL5(Blt,p,a,b,c,d,e)
|
---|
1136 | #define IDirectDrawSurface_BltBatch(p,a,b,c) ICOM_CALL3(BltBatch,p,a,b,c)
|
---|
1137 | #define IDirectDrawSurface_BltFast(p,a,b,c,d,e) ICOM_CALL5(BltFast,p,a,b,c,d,e)
|
---|
1138 | #define IDirectDrawSurface_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
|
---|
1139 | #define IDirectDrawSurface_EnumAttachedSurfaces(p,a,b) ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
|
---|
1140 | #define IDirectDrawSurface_EnumOverlayZOrders(p,a,b,c) ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
|
---|
1141 | #define IDirectDrawSurface_Flip(p,a,b) ICOM_CALL2(Flip,p,a,b)
|
---|
1142 | #define IDirectDrawSurface_GetAttachedSurface(p,a,b) ICOM_CALL2(GetAttachedSurface,p,a,b)
|
---|
1143 | #define IDirectDrawSurface_GetBltStatus(p,a) ICOM_CALL1(GetBltStatus,p,a)
|
---|
1144 | #define IDirectDrawSurface_GetCaps(p,a) ICOM_CALL1(GetCaps,p,a)
|
---|
1145 | #define IDirectDrawSurface_GetClipper(p,a) ICOM_CALL1(GetClipper,p,a)
|
---|
1146 | #define IDirectDrawSurface_GetColorKey(p,a,b) ICOM_CALL2(GetColorKey,p,a,b)
|
---|
1147 | #define IDirectDrawSurface_GetDC(p,a) ICOM_CALL1(GetDC,p,a)
|
---|
1148 | #define IDirectDrawSurface_GetFlipStatus(p,a) ICOM_CALL1(GetFlipStatus,p,a)
|
---|
1149 | #define IDirectDrawSurface_GetOverlayPosition(p,a,b) ICOM_CALL2(GetOverlayPosition,p,a,b)
|
---|
1150 | #define IDirectDrawSurface_GetPalette(p,a) ICOM_CALL1(GetPalette,p,a)
|
---|
1151 | #define IDirectDrawSurface_GetPixelFormat(p,a) ICOM_CALL1(GetPixelFormat,p,a)
|
---|
1152 | #define IDirectDrawSurface_GetSurfaceDesc(p,a) ICOM_CALL1(GetSurfaceDesc,p,a)
|
---|
1153 | #define IDirectDrawSurface_Initialize(p,a,b) ICOM_CALL2(Initialize,p,a,b)
|
---|
1154 | #define IDirectDrawSurface_IsLost(p) ICOM_CALL (IsLost,p)
|
---|
1155 | #define IDirectDrawSurface_Lock(p,a,b,c,d) ICOM_CALL4(Lock,p,a,b,c,d)
|
---|
1156 | #define IDirectDrawSurface_ReleaseDC(p,a) ICOM_CALL1(ReleaseDC,p,a)
|
---|
1157 | #define IDirectDrawSurface_Restore(p,a,b) ICOM_CALL (Restore,p,a,b)
|
---|
1158 | #define IDirectDrawSurface_SetClipper(p,a,b) ICOM_CALL1(SetClipper,p,a,b)
|
---|
1159 | #define IDirectDrawSurface_SetColorKey(p,a,b) ICOM_CALL2(SetColorKey,p,a,b)
|
---|
1160 | #define IDirectDrawSurface_SetOverlayPosition(p,a,b) ICOM_CALL2(SetOverlayPosition,p,a,b)
|
---|
1161 | #define IDirectDrawSurface_SetPalette(p,a) ICOM_CALL1(SetPalette,p,a)
|
---|
1162 | #define IDirectDrawSurface_Unlock(p,a) ICOM_CALL1(Unlock,p,a)
|
---|
1163 | #define IDirectDrawSurface_UpdateOverlay(p,a,b,c,d,e) ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
|
---|
1164 | #define IDirectDrawSurface_UpdateOverlayDisplay(p,a) ICOM_CALL1(UpdateOverlayDisplay,p,a)
|
---|
1165 | #define IDirectDrawSurface_UpdateOverlayZOrder(p,a,b) ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
|
---|
1166 | #endif
|
---|
1167 |
|
---|
1168 |
|
---|
1169 | /*****************************************************************************
|
---|
1170 | * IDirectDrawSurface2 interface
|
---|
1171 | */
|
---|
1172 | /* Cannot inherit from IDirectDrawSurface because the LPDIRECTDRAWSURFACE parameters
|
---|
1173 | * have been converted to LPDIRECTDRAWSURFACE2.
|
---|
1174 | */
|
---|
1175 | #define ICOM_INTERFACE IDirectDrawSurface2
|
---|
1176 | #define IDirectDrawSurface2_METHODS \
|
---|
1177 | ICOM_METHOD1(HRESULT,AddAttachedSurface, LPDIRECTDRAWSURFACE2,lpDDSAttachedSurface) \
|
---|
1178 | ICOM_METHOD1(HRESULT,AddOverlayDirtyRect, LPRECT,lpRect) \
|
---|
1179 | ICOM_METHOD5(HRESULT,Blt, LPRECT,lpDestRect, LPDIRECTDRAWSURFACE2,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
|
---|
1180 | ICOM_METHOD3(HRESULT,BltBatch, LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
|
---|
1181 | ICOM_METHOD5(HRESULT,BltFast, DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE2,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
|
---|
1182 | ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE2,lpDDSAttachedSurface) \
|
---|
1183 | ICOM_METHOD2(HRESULT,EnumAttachedSurfaces, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
|
---|
1184 | ICOM_METHOD3(HRESULT,EnumOverlayZOrders, DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
|
---|
1185 | ICOM_METHOD2(HRESULT,Flip, LPDIRECTDRAWSURFACE2,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
|
---|
1186 | ICOM_METHOD2(HRESULT,GetAttachedSurface, LPDDSCAPS,lpDDSCaps, LPDIRECTDRAWSURFACE2*,lplpDDAttachedSurface) \
|
---|
1187 | ICOM_METHOD1(HRESULT,GetBltStatus, DWORD,dwFlags) \
|
---|
1188 | ICOM_METHOD1(HRESULT,GetCaps, LPDDSCAPS,lpDDSCaps) \
|
---|
1189 | ICOM_METHOD1(HRESULT,GetClipper, LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
|
---|
1190 | ICOM_METHOD2(HRESULT,GetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1191 | ICOM_METHOD1(HRESULT,GetDC, HDC*,lphDC) \
|
---|
1192 | ICOM_METHOD1(HRESULT,GetFlipStatus, DWORD,dwFlags) \
|
---|
1193 | ICOM_METHOD2(HRESULT,GetOverlayPosition, LPLONG,lplX, LPLONG,lplY) \
|
---|
1194 | ICOM_METHOD1(HRESULT,GetPalette, LPDIRECTDRAWPALETTE*,lplpDDPalette) \
|
---|
1195 | ICOM_METHOD1(HRESULT,GetPixelFormat, LPDDPIXELFORMAT,lpDDPixelFormat) \
|
---|
1196 | ICOM_METHOD1(HRESULT,GetSurfaceDesc, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1197 | ICOM_METHOD2(HRESULT,Initialize, LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1198 | ICOM_METHOD (HRESULT,IsLost) \
|
---|
1199 | ICOM_METHOD4(HRESULT,Lock, LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
|
---|
1200 | ICOM_METHOD1(HRESULT,ReleaseDC, HDC,hDC) \
|
---|
1201 | ICOM_METHOD (HRESULT,Restore) \
|
---|
1202 | ICOM_METHOD1(HRESULT,SetClipper, LPDIRECTDRAWCLIPPER,lpDDClipper) \
|
---|
1203 | ICOM_METHOD2(HRESULT,SetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1204 | ICOM_METHOD2(HRESULT,SetOverlayPosition, LONG,lX, LONG,lY) \
|
---|
1205 | ICOM_METHOD1(HRESULT,SetPalette, LPDIRECTDRAWPALETTE,lpDDPalette) \
|
---|
1206 | ICOM_METHOD1(HRESULT,Unlock, LPVOID,lpSurfaceData) \
|
---|
1207 | ICOM_METHOD5(HRESULT,UpdateOverlay, LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE2,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
|
---|
1208 | ICOM_METHOD1(HRESULT,UpdateOverlayDisplay, DWORD,dwFlags) \
|
---|
1209 | ICOM_METHOD2(HRESULT,UpdateOverlayZOrder, DWORD,dwFlags, LPDIRECTDRAWSURFACE2,lpDDSReference) \
|
---|
1210 | /* added in v2 */ \
|
---|
1211 | ICOM_METHOD1(HRESULT,GetDDInterface, LPVOID*,lplpDD) \
|
---|
1212 | ICOM_METHOD1(HRESULT,PageLock, DWORD,dwFlags) \
|
---|
1213 | ICOM_METHOD1(HRESULT,PageUnlock, DWORD,dwFlags)
|
---|
1214 | #define IDirectDrawSurface2_IMETHODS \
|
---|
1215 | IUnknown_IMETHODS \
|
---|
1216 | IDirectDrawSurface2_METHODS
|
---|
1217 | ICOM_DEFINE(IDirectDrawSurface2,IUnknown)
|
---|
1218 | #undef ICOM_INTERFACE
|
---|
1219 |
|
---|
1220 | #ifdef ICOM_CINTERFACE
|
---|
1221 | /*** IUnknown methods ***/
|
---|
1222 | #define IDirectDrawSurface2_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
1223 | #define IDirectDrawSurface2_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
1224 | #define IDirectDrawSurface2_Release(p) ICOM_CALL (Release,p)
|
---|
1225 | /*** IDirectDrawSurface methods (almost) ***/
|
---|
1226 | #define IDirectDrawSurface2_AddAttachedSurface(p,a) ICOM_CALL1(AddAttachedSurface,p,a)
|
---|
1227 | #define IDirectDrawSurface2_AddOverlayDirtyRect(p,a) ICOM_CALL1(AddOverlayDirtyRect,p,a)
|
---|
1228 | #define IDirectDrawSurface2_Blt(p,a,b,c,d,e) ICOM_CALL5(Blt,p,a,b,c,d,e)
|
---|
1229 | #define IDirectDrawSurface2_BltBatch(p,a,b,c) ICOM_CALL3(BltBatch,p,a,b,c)
|
---|
1230 | #define IDirectDrawSurface2_BltFast(p,a,b,c,d,e) ICOM_CALL5(BltFast,p,a,b,c,d,e)
|
---|
1231 | #define IDirectDrawSurface2_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
|
---|
1232 | #define IDirectDrawSurface2_EnumAttachedSurfaces(p,a,b) ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
|
---|
1233 | #define IDirectDrawSurface2_EnumOverlayZOrders(p,a,b,c) ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
|
---|
1234 | #define IDirectDrawSurface2_Flip(p,a,b) ICOM_CALL2(Flip,p,a,b)
|
---|
1235 | #define IDirectDrawSurface2_GetAttachedSurface(p,a,b) ICOM_CALL2(GetAttachedSurface,p,a,b)
|
---|
1236 | #define IDirectDrawSurface2_GetBltStatus(p,a) ICOM_CALL1(GetBltStatus,p,a)
|
---|
1237 | #define IDirectDrawSurface2_GetCaps(p,a) ICOM_CALL1(GetCaps,p,a)
|
---|
1238 | #define IDirectDrawSurface2_GetClipper(p,a) ICOM_CALL1(GetClipper,p,a)
|
---|
1239 | #define IDirectDrawSurface2_GetColorKey(p,a,b) ICOM_CALL2(GetColorKey,p,a,b)
|
---|
1240 | #define IDirectDrawSurface2_GetDC(p,a) ICOM_CALL1(GetDC,p,a)
|
---|
1241 | #define IDirectDrawSurface2_GetFlipStatus(p,a) ICOM_CALL1(GetFlipStatus,p,a)
|
---|
1242 | #define IDirectDrawSurface2_GetOverlayPosition(p,a,b) ICOM_CALL2(GetOverlayPosition,p,a,b)
|
---|
1243 | #define IDirectDrawSurface2_GetPalette(p,a) ICOM_CALL1(GetPalette,p,a)
|
---|
1244 | #define IDirectDrawSurface2_GetPixelFormat(p,a) ICOM_CALL1(GetPixelFormat,p,a)
|
---|
1245 | #define IDirectDrawSurface2_GetSurfaceDesc(p,a) ICOM_CALL1(GetSurfaceDesc,p,a)
|
---|
1246 | #define IDirectDrawSurface2_Initialize(p,a,b) ICOM_CALL2(Initialize,p,a,b)
|
---|
1247 | #define IDirectDrawSurface2_IsLost(p) ICOM_CALL (IsLost,p)
|
---|
1248 | #define IDirectDrawSurface2_Lock(p,a,b,c,d) ICOM_CALL4(Lock,p,a,b,c,d)
|
---|
1249 | #define IDirectDrawSurface2_ReleaseDC(p,a) ICOM_CALL1(ReleaseDC,p,a)
|
---|
1250 | #define IDirectDrawSurface2_Restore(p,a,b) ICOM_CALL (Restore,p,a,b)
|
---|
1251 | #define IDirectDrawSurface2_SetClipper(p,a,b) ICOM_CALL1(SetClipper,p,a,b)
|
---|
1252 | #define IDirectDrawSurface2_SetColorKey(p,a,b) ICOM_CALL2(SetColorKey,p,a,b)
|
---|
1253 | #define IDirectDrawSurface2_SetOverlayPosition(p,a,b) ICOM_CALL2(SetOverlayPosition,p,a,b)
|
---|
1254 | #define IDirectDrawSurface2_SetPalette(p,a) ICOM_CALL1(SetPalette,p,a)
|
---|
1255 | #define IDirectDrawSurface2_Unlock(p,a) ICOM_CALL1(Unlock,p,a)
|
---|
1256 | #define IDirectDrawSurface2_UpdateOverlay(p,a,b,c,d,e) ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
|
---|
1257 | #define IDirectDrawSurface2_UpdateOverlayDisplay(p,a) ICOM_CALL1(UpdateOverlayDisplay,p,a)
|
---|
1258 | #define IDirectDrawSurface2_UpdateOverlayZOrder(p,a,b) ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
|
---|
1259 | /*** IDirectDrawSurface2 methods ***/
|
---|
1260 | #define IDirectDrawSurface2_GetDDInterface(p,a) ICOM_CALL1(GetDDInterface,p,a)
|
---|
1261 | #define IDirectDrawSurface2_PageLock(p,a) ICOM_CALL1(PageLock,p,a)
|
---|
1262 | #define IDirectDrawSurface2_PageUnlock(p,a) ICOM_CALL1(PageUnlock,p,a)
|
---|
1263 | #endif
|
---|
1264 |
|
---|
1265 |
|
---|
1266 | /*****************************************************************************
|
---|
1267 | * IDirectDrawSurface3 interface
|
---|
1268 | */
|
---|
1269 | /* Cannot inherit from IDirectDrawSurface2 because the LPDIRECTDRAWSURFACE2 parameters
|
---|
1270 | * have been converted to LPDIRECTDRAWSURFACE3.
|
---|
1271 | */
|
---|
1272 | #define ICOM_INTERFACE IDirectDrawSurface3
|
---|
1273 | #define IDirectDrawSurface3_METHODS \
|
---|
1274 | ICOM_METHOD1(HRESULT,AddAttachedSurface, LPDIRECTDRAWSURFACE3,lpDDSAttachedSurface) \
|
---|
1275 | ICOM_METHOD1(HRESULT,AddOverlayDirtyRect, LPRECT,lpRect) \
|
---|
1276 | ICOM_METHOD5(HRESULT,Blt, LPRECT,lpDestRect, LPDIRECTDRAWSURFACE3,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
|
---|
1277 | ICOM_METHOD3(HRESULT,BltBatch, LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
|
---|
1278 | ICOM_METHOD5(HRESULT,BltFast, DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE3,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
|
---|
1279 | ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE3,lpDDSAttachedSurface) \
|
---|
1280 | ICOM_METHOD2(HRESULT,EnumAttachedSurfaces, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
|
---|
1281 | ICOM_METHOD3(HRESULT,EnumOverlayZOrders, DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
|
---|
1282 | ICOM_METHOD2(HRESULT,Flip, LPDIRECTDRAWSURFACE3,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
|
---|
1283 | ICOM_METHOD2(HRESULT,GetAttachedSurface, LPDDSCAPS,lpDDSCaps, LPDIRECTDRAWSURFACE3*,lplpDDAttachedSurface) \
|
---|
1284 | ICOM_METHOD1(HRESULT,GetBltStatus, DWORD,dwFlags) \
|
---|
1285 | ICOM_METHOD1(HRESULT,GetCaps, LPDDSCAPS,lpDDSCaps) \
|
---|
1286 | ICOM_METHOD1(HRESULT,GetClipper, LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
|
---|
1287 | ICOM_METHOD2(HRESULT,GetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1288 | ICOM_METHOD1(HRESULT,GetDC, HDC*,lphDC) \
|
---|
1289 | ICOM_METHOD1(HRESULT,GetFlipStatus, DWORD,dwFlags) \
|
---|
1290 | ICOM_METHOD2(HRESULT,GetOverlayPosition, LPLONG,lplX, LPLONG,lplY) \
|
---|
1291 | ICOM_METHOD1(HRESULT,GetPalette, LPDIRECTDRAWPALETTE*,lplpDDPalette) \
|
---|
1292 | ICOM_METHOD1(HRESULT,GetPixelFormat, LPDDPIXELFORMAT,lpDDPixelFormat) \
|
---|
1293 | ICOM_METHOD1(HRESULT,GetSurfaceDesc, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1294 | ICOM_METHOD2(HRESULT,Initialize, LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1295 | ICOM_METHOD (HRESULT,IsLost) \
|
---|
1296 | ICOM_METHOD4(HRESULT,Lock, LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
|
---|
1297 | ICOM_METHOD1(HRESULT,ReleaseDC, HDC,hDC) \
|
---|
1298 | ICOM_METHOD (HRESULT,Restore) \
|
---|
1299 | ICOM_METHOD1(HRESULT,SetClipper, LPDIRECTDRAWCLIPPER,lpDDClipper) \
|
---|
1300 | ICOM_METHOD2(HRESULT,SetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1301 | ICOM_METHOD2(HRESULT,SetOverlayPosition, LONG,lX, LONG,lY) \
|
---|
1302 | ICOM_METHOD1(HRESULT,SetPalette, LPDIRECTDRAWPALETTE,lpDDPalette) \
|
---|
1303 | ICOM_METHOD1(HRESULT,Unlock, LPVOID,lpSurfaceData) \
|
---|
1304 | ICOM_METHOD5(HRESULT,UpdateOverlay, LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE3,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
|
---|
1305 | ICOM_METHOD1(HRESULT,UpdateOverlayDisplay, DWORD,dwFlags) \
|
---|
1306 | ICOM_METHOD2(HRESULT,UpdateOverlayZOrder, DWORD,dwFlags, LPDIRECTDRAWSURFACE3,lpDDSReference) \
|
---|
1307 | /* added in v2 */ \
|
---|
1308 | ICOM_METHOD1(HRESULT,GetDDInterface, LPVOID*,lplpDD) \
|
---|
1309 | ICOM_METHOD1(HRESULT,PageLock, DWORD,dwFlags) \
|
---|
1310 | ICOM_METHOD1(HRESULT,PageUnlock, DWORD,dwFlags) \
|
---|
1311 | /* added in v3 */ \
|
---|
1312 | ICOM_METHOD2(HRESULT,SetSurfaceDesc, LPDDSURFACEDESC,lpDDSD, DWORD,dwFlags)
|
---|
1313 | #define IDirectDrawSurface3_IMETHODS \
|
---|
1314 | IUnknown_IMETHODS \
|
---|
1315 | IDirectDrawSurface3_METHODS
|
---|
1316 | ICOM_DEFINE(IDirectDrawSurface3,IUnknown)
|
---|
1317 | #undef ICOM_INTERFACE
|
---|
1318 |
|
---|
1319 | #ifdef ICOM_CINTERFACE
|
---|
1320 | /*** IUnknown methods ***/
|
---|
1321 | #define IDirectDrawSurface3_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
1322 | #define IDirectDrawSurface3_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
1323 | #define IDirectDrawSurface3_Release(p) ICOM_CALL (Release,p)
|
---|
1324 | /*** IDirectDrawSurface methods (almost) ***/
|
---|
1325 | #define IDirectDrawSurface3_AddAttachedSurface(p,a) ICOM_CALL1(AddAttachedSurface,p,a)
|
---|
1326 | #define IDirectDrawSurface3_AddOverlayDirtyRect(p,a) ICOM_CALL1(AddOverlayDirtyRect,p,a)
|
---|
1327 | #define IDirectDrawSurface3_Blt(p,a,b,c,d,e) ICOM_CALL5(Blt,p,a,b,c,d,e)
|
---|
1328 | #define IDirectDrawSurface3_BltBatch(p,a,b,c) ICOM_CALL3(BltBatch,p,a,b,c)
|
---|
1329 | #define IDirectDrawSurface3_BltFast(p,a,b,c,d,e) ICOM_CALL5(BltFast,p,a,b,c,d,e)
|
---|
1330 | #define IDirectDrawSurface3_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
|
---|
1331 | #define IDirectDrawSurface3_EnumAttachedSurfaces(p,a,b) ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
|
---|
1332 | #define IDirectDrawSurface3_EnumOverlayZOrders(p,a,b,c) ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
|
---|
1333 | #define IDirectDrawSurface3_Flip(p,a,b) ICOM_CALL2(Flip,p,a,b)
|
---|
1334 | #define IDirectDrawSurface3_GetAttachedSurface(p,a,b) ICOM_CALL2(GetAttachedSurface,p,a,b)
|
---|
1335 | #define IDirectDrawSurface3_GetBltStatus(p,a) ICOM_CALL1(GetBltStatus,p,a)
|
---|
1336 | #define IDirectDrawSurface3_GetCaps(p,a) ICOM_CALL1(GetCaps,p,a)
|
---|
1337 | #define IDirectDrawSurface3_GetClipper(p,a) ICOM_CALL1(GetClipper,p,a)
|
---|
1338 | #define IDirectDrawSurface3_GetColorKey(p,a,b) ICOM_CALL2(GetColorKey,p,a,b)
|
---|
1339 | #define IDirectDrawSurface3_GetDC(p,a) ICOM_CALL1(GetDC,p,a)
|
---|
1340 | #define IDirectDrawSurface3_GetFlipStatus(p,a) ICOM_CALL1(GetFlipStatus,p,a)
|
---|
1341 | #define IDirectDrawSurface3_GetOverlayPosition(p,a,b) ICOM_CALL2(GetOverlayPosition,p,a,b)
|
---|
1342 | #define IDirectDrawSurface3_GetPalette(p,a) ICOM_CALL1(GetPalette,p,a)
|
---|
1343 | #define IDirectDrawSurface3_GetPixelFormat(p,a) ICOM_CALL1(GetPixelFormat,p,a)
|
---|
1344 | #define IDirectDrawSurface3_GetSurfaceDesc(p,a) ICOM_CALL1(GetSurfaceDesc,p,a)
|
---|
1345 | #define IDirectDrawSurface3_Initialize(p,a,b) ICOM_CALL2(Initialize,p,a,b)
|
---|
1346 | #define IDirectDrawSurface3_IsLost(p) ICOM_CALL (IsLost,p)
|
---|
1347 | #define IDirectDrawSurface3_Lock(p,a,b,c,d) ICOM_CALL4(Lock,p,a,b,c,d)
|
---|
1348 | #define IDirectDrawSurface3_ReleaseDC(p,a) ICOM_CALL1(ReleaseDC,p,a)
|
---|
1349 | #define IDirectDrawSurface3_Restore(p,a,b) ICOM_CALL (Restore,p,a,b)
|
---|
1350 | #define IDirectDrawSurface3_SetClipper(p,a,b) ICOM_CALL1(SetClipper,p,a,b)
|
---|
1351 | #define IDirectDrawSurface3_SetColorKey(p,a,b) ICOM_CALL2(SetColorKey,p,a,b)
|
---|
1352 | #define IDirectDrawSurface3_SetOverlayPosition(p,a,b) ICOM_CALL2(SetOverlayPosition,p,a,b)
|
---|
1353 | #define IDirectDrawSurface3_SetPalette(p,a) ICOM_CALL1(SetPalette,p,a)
|
---|
1354 | #define IDirectDrawSurface3_Unlock(p,a) ICOM_CALL1(Unlock,p,a)
|
---|
1355 | #define IDirectDrawSurface3_UpdateOverlay(p,a,b,c,d,e) ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
|
---|
1356 | #define IDirectDrawSurface3_UpdateOverlayDisplay(p,a) ICOM_CALL1(UpdateOverlayDisplay,p,a)
|
---|
1357 | #define IDirectDrawSurface3_UpdateOverlayZOrder(p,a,b) ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
|
---|
1358 | /*** IDirectDrawSurface2 methods ***/
|
---|
1359 | #define IDirectDrawSurface3_GetDDInterface(p,a) ICOM_CALL1(GetDDInterface,p,a)
|
---|
1360 | #define IDirectDrawSurface3_PageLock(p,a) ICOM_CALL1(PageLock,p,a)
|
---|
1361 | #define IDirectDrawSurface3_PageUnlock(p,a) ICOM_CALL1(PageUnlock,p,a)
|
---|
1362 | /*** IDirectDrawSurface3 methods ***/
|
---|
1363 | #define IDirectDrawSurface3_SetSurfaceDesc(p,a,b) ICOM_CALL2(SetSurfaceDesc,p,a,b)
|
---|
1364 | #endif
|
---|
1365 |
|
---|
1366 |
|
---|
1367 | /*****************************************************************************
|
---|
1368 | * IDirectDrawSurface4 interface
|
---|
1369 | */
|
---|
1370 | /* Cannot inherit from IDirectDrawSurface2 because the LPDIRECTDRAWSURFACE2 parameters
|
---|
1371 | * have been converted to LPDIRECTDRAWSURFACE3.
|
---|
1372 | */
|
---|
1373 | /* FIXME: I assumed IDirectDrawSurface4 does not inherit from IDirectDrawSurface3 but I
|
---|
1374 | * have actually not proof of that. Can someone check and remove this comment or patch
|
---|
1375 | * accordingly ?
|
---|
1376 | */
|
---|
1377 | #define ICOM_INTERFACE IDirectDrawSurface4
|
---|
1378 | #define IDirectDrawSurface4_METHODS \
|
---|
1379 | ICOM_METHOD1(HRESULT,AddAttachedSurface, LPDIRECTDRAWSURFACE4,lpDDSAttachedSurface) \
|
---|
1380 | ICOM_METHOD1(HRESULT,AddOverlayDirtyRect, LPRECT,lpRect) \
|
---|
1381 | ICOM_METHOD5(HRESULT,Blt, LPRECT,lpDestRect, LPDIRECTDRAWSURFACE4,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwFlags, LPDDBLTFX,lpDDBltFx) \
|
---|
1382 | ICOM_METHOD3(HRESULT,BltBatch, LPDDBLTBATCH,lpDDBltBatch, DWORD,dwCount, DWORD,dwFlags) \
|
---|
1383 | ICOM_METHOD5(HRESULT,BltFast, DWORD,dwX, DWORD,dwY, LPDIRECTDRAWSURFACE4,lpDDSrcSurface, LPRECT,lpSrcRect, DWORD,dwTrans) \
|
---|
1384 | ICOM_METHOD2(HRESULT,DeleteAttachedSurface, DWORD,dwFlags, LPDIRECTDRAWSURFACE4,lpDDSAttachedSurface) \
|
---|
1385 | ICOM_METHOD2(HRESULT,EnumAttachedSurfaces, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpEnumSurfacesCallback) \
|
---|
1386 | ICOM_METHOD3(HRESULT,EnumOverlayZOrders, DWORD,dwFlags, LPVOID,lpContext, LPDDENUMSURFACESCALLBACK,lpfnCallback) \
|
---|
1387 | ICOM_METHOD2(HRESULT,Flip, LPDIRECTDRAWSURFACE4,lpDDSurfaceTargetOverride, DWORD,dwFlags) \
|
---|
1388 | ICOM_METHOD2(HRESULT,GetAttachedSurface, LPDDSCAPS,lpDDSCaps, LPDIRECTDRAWSURFACE4*,lplpDDAttachedSurface) \
|
---|
1389 | ICOM_METHOD1(HRESULT,GetBltStatus, DWORD,dwFlags) \
|
---|
1390 | ICOM_METHOD1(HRESULT,GetCaps, LPDDSCAPS,lpDDSCaps) \
|
---|
1391 | ICOM_METHOD1(HRESULT,GetClipper, LPDIRECTDRAWCLIPPER*,lplpDDClipper) \
|
---|
1392 | ICOM_METHOD2(HRESULT,GetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1393 | ICOM_METHOD1(HRESULT,GetDC, HDC*,lphDC) \
|
---|
1394 | ICOM_METHOD1(HRESULT,GetFlipStatus, DWORD,dwFlags) \
|
---|
1395 | ICOM_METHOD2(HRESULT,GetOverlayPosition, LPLONG,lplX, LPLONG,lplY) \
|
---|
1396 | ICOM_METHOD1(HRESULT,GetPalette, LPDIRECTDRAWPALETTE*,lplpDDPalette) \
|
---|
1397 | ICOM_METHOD1(HRESULT,GetPixelFormat, LPDDPIXELFORMAT,lpDDPixelFormat) \
|
---|
1398 | ICOM_METHOD1(HRESULT,GetSurfaceDesc, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1399 | ICOM_METHOD2(HRESULT,Initialize, LPDIRECTDRAW,lpDD, LPDDSURFACEDESC,lpDDSurfaceDesc) \
|
---|
1400 | ICOM_METHOD (HRESULT,IsLost) \
|
---|
1401 | ICOM_METHOD4(HRESULT,Lock, LPRECT,lpDestRect, LPDDSURFACEDESC,lpDDSurfaceDesc, DWORD,dwFlags, HANDLE,hEvent) \
|
---|
1402 | ICOM_METHOD1(HRESULT,ReleaseDC, HDC,hDC) \
|
---|
1403 | ICOM_METHOD (HRESULT,Restore) \
|
---|
1404 | ICOM_METHOD1(HRESULT,SetClipper, LPDIRECTDRAWCLIPPER,lpDDClipper) \
|
---|
1405 | ICOM_METHOD2(HRESULT,SetColorKey, DWORD,dwFlags, LPDDCOLORKEY,lpDDColorKey) \
|
---|
1406 | ICOM_METHOD2(HRESULT,SetOverlayPosition, LONG,lX, LONG,lY) \
|
---|
1407 | ICOM_METHOD1(HRESULT,SetPalette, LPDIRECTDRAWPALETTE,lpDDPalette) \
|
---|
1408 | ICOM_METHOD1(HRESULT,Unlock, LPVOID,lpSurfaceData) \
|
---|
1409 | ICOM_METHOD5(HRESULT,UpdateOverlay, LPRECT,lpSrcRect, LPDIRECTDRAWSURFACE4,lpDDDestSurface, LPRECT,lpDestRect, DWORD,dwFlags, LPDDOVERLAYFX,lpDDOverlayFx) \
|
---|
1410 | ICOM_METHOD1(HRESULT,UpdateOverlayDisplay, DWORD,dwFlags) \
|
---|
1411 | ICOM_METHOD2(HRESULT,UpdateOverlayZOrder, DWORD,dwFlags, LPDIRECTDRAWSURFACE4,lpDDSReference) \
|
---|
1412 | /* added in v2 */ \
|
---|
1413 | ICOM_METHOD1(HRESULT,GetDDInterface, LPVOID*,lplpDD) \
|
---|
1414 | ICOM_METHOD1(HRESULT,PageLock, DWORD,dwFlags) \
|
---|
1415 | ICOM_METHOD1(HRESULT,PageUnlock, DWORD,dwFlags) \
|
---|
1416 | /* added in v3 */ \
|
---|
1417 | ICOM_METHOD2(HRESULT,SetSurfaceDesc, LPDDSURFACEDESC,lpDDSD, DWORD,dwFlags) \
|
---|
1418 | /* added in v4 */ \
|
---|
1419 | ICOM_METHOD4(HRESULT,SetPrivateData, REFGUID,, LPVOID,, DWORD,, DWORD,) \
|
---|
1420 | ICOM_METHOD3(HRESULT,GetPrivateData, REFGUID,, LPVOID,, LPDWORD,) \
|
---|
1421 | ICOM_METHOD1(HRESULT,FreePrivateData, REFGUID,) \
|
---|
1422 | ICOM_METHOD1(HRESULT,GetUniquenessValue, LPDWORD,) \
|
---|
1423 | ICOM_METHOD (HRESULT,ChangeUniquenessValue)
|
---|
1424 | #define IDirectDrawSurface4_IMETHODS \
|
---|
1425 | IUnknown_IMETHODS \
|
---|
1426 | IDirectDrawSurface4_METHODS
|
---|
1427 | ICOM_DEFINE(IDirectDrawSurface4,IUnknown)
|
---|
1428 | #undef ICOM_INTERFACE
|
---|
1429 |
|
---|
1430 | #ifdef ICOM_CINTERFACE
|
---|
1431 | /*** IUnknown methods ***/
|
---|
1432 | #define IDirectDrawSurface4_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
1433 | #define IDirectDrawSurface4_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
1434 | #define IDirectDrawSurface4_Release(p) ICOM_CALL (Release,p)
|
---|
1435 | /*** IDirectDrawSurface (almost) methods ***/
|
---|
1436 | #define IDirectDrawSurface4_AddAttachedSurface(p,a) ICOM_CALL1(AddAttachedSurface,p,a)
|
---|
1437 | #define IDirectDrawSurface4_AddOverlayDirtyRect(p,a) ICOM_CALL1(AddOverlayDirtyRect,p,a)
|
---|
1438 | #define IDirectDrawSurface4_Blt(p,a,b,c,d,e) ICOM_CALL5(Blt,p,a,b,c,d,e)
|
---|
1439 | #define IDirectDrawSurface4_BltBatch(p,a,b,c) ICOM_CALL3(BltBatch,p,a,b,c)
|
---|
1440 | #define IDirectDrawSurface4_BltFast(p,a,b,c,d,e) ICOM_CALL5(BltFast,p,a,b,c,d,e)
|
---|
1441 | #define IDirectDrawSurface4_DeleteAttachedSurface(p,a,b) ICOM_CALL2(DeleteAttachedSurface,p,a,b)
|
---|
1442 | #define IDirectDrawSurface4_EnumAttachedSurfaces(p,a,b) ICOM_CALL2(EnumAttachedSurfaces,p,a,b)
|
---|
1443 | #define IDirectDrawSurface4_EnumOverlayZOrders(p,a,b,c) ICOM_CALL3(EnumOverlayZOrders,p,a,b,c)
|
---|
1444 | #define IDirectDrawSurface4_Flip(p,a,b) ICOM_CALL2(Flip,p,a,b)
|
---|
1445 | #define IDirectDrawSurface4_GetAttachedSurface(p,a,b) ICOM_CALL2(GetAttachedSurface,p,a,b)
|
---|
1446 | #define IDirectDrawSurface4_GetBltStatus(p,a) ICOM_CALL1(GetBltStatus,p,a)
|
---|
1447 | #define IDirectDrawSurface4_GetCaps(p,a) ICOM_CALL1(GetCaps,p,a)
|
---|
1448 | #define IDirectDrawSurface4_GetClipper(p,a) ICOM_CALL1(GetClipper,p,a)
|
---|
1449 | #define IDirectDrawSurface4_GetColorKey(p,a,b) ICOM_CALL2(GetColorKey,p,a,b)
|
---|
1450 | #define IDirectDrawSurface4_GetDC(p,a) ICOM_CALL1(GetDC,p,a)
|
---|
1451 | #define IDirectDrawSurface4_GetFlipStatus(p,a) ICOM_CALL1(GetFlipStatus,p,a)
|
---|
1452 | #define IDirectDrawSurface4_GetOverlayPosition(p,a,b) ICOM_CALL2(GetOverlayPosition,p,a,b)
|
---|
1453 | #define IDirectDrawSurface4_GetPalette(p,a) ICOM_CALL1(GetPalette,p,a)
|
---|
1454 | #define IDirectDrawSurface4_GetPixelFormat(p,a) ICOM_CALL1(GetPixelFormat,p,a)
|
---|
1455 | #define IDirectDrawSurface4_GetSurfaceDesc(p,a) ICOM_CALL1(GetSurfaceDesc,p,a)
|
---|
1456 | #define IDirectDrawSurface4_Initialize(p,a,b) ICOM_CALL2(Initialize,p,a,b)
|
---|
1457 | #define IDirectDrawSurface4_IsLost(p) ICOM_CALL (IsLost,p)
|
---|
1458 | #define IDirectDrawSurface4_Lock(p,a,b,c,d) ICOM_CALL4(Lock,p,a,b,c,d)
|
---|
1459 | #define IDirectDrawSurface4_ReleaseDC(p,a) ICOM_CALL1(ReleaseDC,p,a)
|
---|
1460 | #define IDirectDrawSurface4_Restore(p,a,b) ICOM_CALL (Restore,p,a,b)
|
---|
1461 | #define IDirectDrawSurface4_SetClipper(p,a,b) ICOM_CALL1(SetClipper,p,a,b)
|
---|
1462 | #define IDirectDrawSurface4_SetColorKey(p,a,b) ICOM_CALL2(SetColorKey,p,a,b)
|
---|
1463 | #define IDirectDrawSurface4_SetOverlayPosition(p,a,b) ICOM_CALL2(SetOverlayPosition,p,a,b)
|
---|
1464 | #define IDirectDrawSurface4_SetPalette(p,a) ICOM_CALL1(SetPalette,p,a)
|
---|
1465 | #define IDirectDrawSurface4_Unlock(p,a) ICOM_CALL1(Unlock,p,a)
|
---|
1466 | #define IDirectDrawSurface4_UpdateOverlay(p,a,b,c,d,e) ICOM_CALL5(UpdateOverlay,p,a,b,c,d,e)
|
---|
1467 | #define IDirectDrawSurface4_UpdateOverlayDisplay(p,a) ICOM_CALL1(UpdateOverlayDisplay,p,a)
|
---|
1468 | #define IDirectDrawSurface4_UpdateOverlayZOrder(p,a,b) ICOM_CALL2(UpdateOverlayZOrder,p,a,b)
|
---|
1469 | /*** IDirectDrawSurface2 methods ***/
|
---|
1470 | #define IDirectDrawSurface4_GetDDInterface(p,a) ICOM_CALL1(GetDDInterface,p,a)
|
---|
1471 | #define IDirectDrawSurface4_PageLock(p,a) ICOM_CALL1(PageLock,p,a)
|
---|
1472 | #define IDirectDrawSurface4_PageUnlock(p,a) ICOM_CALL1(PageUnlock,p,a)
|
---|
1473 | /*** IDirectDrawSurface3 methods ***/
|
---|
1474 | #define IDirectDrawSurface4_SetSurfaceDesc(p,a) ICOM_CALL(SetSurfaceDesc,p,a)
|
---|
1475 | /*** IDirectDrawSurface4 methods ***/
|
---|
1476 | #define IDirectDrawSurface4_SetPrivateData(p,a,b,c,d) ICOM_CALL4(SetPrivateData,p,a,b,c,d)
|
---|
1477 | #define IDirectDrawSurface4_GetPrivateData(p,a,b,c) ICOM_CALL3(GetPrivateData,p,a,b,c)
|
---|
1478 | #define IDirectDrawSurface4_FreePrivateData(p,a) ICOM_CALL1(FreePrivateData,p,a)
|
---|
1479 | #define IDirectDrawSurface4_GetUniquenessValue(p,a) ICOM_CALL1(GetUniquenessValue,p,a)
|
---|
1480 | #define IDirectDrawSurface4_ChangeUniquenessValue(p) ICOM_CALL (ChangeUniquenessValue,p)
|
---|
1481 | #endif
|
---|
1482 |
|
---|
1483 |
|
---|
1484 | /*****************************************************************************
|
---|
1485 | * IDirectDrawColorControl interface
|
---|
1486 | */
|
---|
1487 | #define ICOM_INTERFACE IDirectDrawColorControl
|
---|
1488 | #define IDirectDrawColorControl_METHODS \
|
---|
1489 | ICOM_METHOD1(HRESULT,GetColorControls, LPDDCOLORCONTROL,lpColorControl) \
|
---|
1490 | ICOM_METHOD1(HRESULT,SetColorControls, LPDDCOLORCONTROL,lpColorControl)
|
---|
1491 | #define IDirectDrawColorControl_IMETHODS \
|
---|
1492 | IUnknown_IMETHODS \
|
---|
1493 | IDirectDrawColorControl_METHODS
|
---|
1494 | ICOM_DEFINE(IDirectDrawColorControl,IUnknown)
|
---|
1495 | #undef ICOM_INTERFACE
|
---|
1496 |
|
---|
1497 | #ifdef ICOM_CINTERFACE
|
---|
1498 | /*** IUnknown methods ***/
|
---|
1499 | #define IDirectDrawColorControl_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
|
---|
1500 | #define IDirectDrawColorControl_AddRef(p) ICOM_CALL (AddRef,p)
|
---|
1501 | #define IDirectDrawColorControl_Release(p) ICOM_CALL (Release,p)
|
---|
1502 | /*** IDirectDrawColorControl methods ***/
|
---|
1503 | #define IDirectDrawColorControl_GetColorControls(p,a) ICOM_CALL(GetColorControls,p,a)
|
---|
1504 | #define IDirectDrawColorControl_SetColorControls(p,a) ICOM_CALL(SetColorControls,p,a)
|
---|
1505 | #endif
|
---|
1506 |
|
---|
1507 |
|
---|
1508 | HRESULT WINAPI DirectDrawCreate(LPGUID,LPDIRECTDRAW*,LPUNKNOWN);
|
---|
1509 | HRESULT WINAPI DirectDrawEnumerateA(LPDDENUMCALLBACKA,LPVOID);
|
---|
1510 | HRESULT WINAPI DirectDrawEnumerateW(LPDDENUMCALLBACKW,LPVOID);
|
---|
1511 | #define DirectDrawEnumerate WINELIB_NAME_AW(DirectDrawEnumerate)
|
---|
1512 | HRESULT WINAPI DirectDrawCreateClipper(DWORD,LPDIRECTDRAWCLIPPER*,LPUNKNOWN);
|
---|
1513 |
|
---|
1514 | #endif /* __WINE_DDRAW_H */
|
---|