include: SwapChain::GetBackBuffer takes 3 parameters, not 4.

Vitaliy Margolen wine-patch at kievinfo.com
Sat May 20 11:32:26 CDT 2006


ChangeLog:
include: SwapChain::GetBackBuffer takes 3 parameters, not 4.

 include/d3d8.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
-------------- next part --------------
e7329899867ce2b0067445424841570df0f17ae9
diff --git a/include/d3d8.h b/include/d3d8.h
index ca46eab..be392c5 100644
--- a/include/d3d8.h
+++ b/include/d3d8.h
@@ -256,7 +256,7 @@ #define IDirect3DSwapChain8_AddRef(p)   
 #define IDirect3DSwapChain8_Release(p)                   (p)->lpVtbl->Release(p)
 /*** IDirect3DSwapChain8 methods ***/
 #define IDirect3DSwapChain8_Present(p,a,b,c)             (p)->lpVtbl->Present(p,a,b,c)
-#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c,d)     (p)->lpVtbl->GetBackBuffer(p,a,b,c,d)
+#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c)       (p)->lpVtbl->GetBackBuffer(p,a,b,c)
 #else
 /*** IUnknown methods ***/
 #define IDirect3DSwapChain8_QueryInterface(p,a,b)        (p)->QueryInterface(a,b)
@@ -264,7 +264,7 @@ #define IDirect3DSwapChain8_AddRef(p)   
 #define IDirect3DSwapChain8_Release(p)                   (p)->Release()
 /*** IDirect3DSwapChain8 methods ***/
 #define IDirect3DSwapChain8_Present(p,a,b,c)             (p)->Present(a,b,c)
-#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c,d)     (p)->GetBackBuffer(a,b,c,d)
+#define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c)       (p)->GetBackBuffer(a,b,c)
 #endif
 
 /*****************************************************************************


More information about the wine-patches mailing list