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