=?UTF-8?Q?Stefan=20D=C3=B6singer=20?=: include: Fix IDirect3DSwapChain8_Present argument count.

Alexandre Julliard julliard at winehq.org
Mon Jan 27 13:32:54 CST 2014


Module: wine
Branch: master
Commit: f9f52edbf77a616609e19e4f7c973dc4e934335d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=f9f52edbf77a616609e19e4f7c973dc4e934335d

Author: Stefan Dösinger <stefan at codeweavers.com>
Date:   Wed Jan 22 17:50:32 2014 +0100

include: Fix IDirect3DSwapChain8_Present argument count.

---

 include/d3d8.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/d3d8.h b/include/d3d8.h
index dcc25f1..d56e67f 100644
--- a/include/d3d8.h
+++ b/include/d3d8.h
@@ -265,7 +265,7 @@ DECLARE_INTERFACE_(IDirect3DSwapChain8,IUnknown)
 #define IDirect3DSwapChain8_AddRef(p)                    (p)->lpVtbl->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_Present(p,a,b,c,d)           (p)->lpVtbl->Present(p,a,b,c,d)
 #define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c)       (p)->lpVtbl->GetBackBuffer(p,a,b,c)
 #else
 /*** IUnknown methods ***/
@@ -273,7 +273,7 @@ DECLARE_INTERFACE_(IDirect3DSwapChain8,IUnknown)
 #define IDirect3DSwapChain8_AddRef(p)                    (p)->AddRef()
 #define IDirect3DSwapChain8_Release(p)                   (p)->Release()
 /*** IDirect3DSwapChain8 methods ***/
-#define IDirect3DSwapChain8_Present(p,a,b,c)             (p)->Present(a,b,c)
+#define IDirect3DSwapChain8_Present(p,a,b,c,d)           (p)->Present(a,b,c,d)
 #define IDirect3DSwapChain8_GetBackBuffer(p,a,b,c)       (p)->GetBackBuffer(a,b,c)
 #endif
 




More information about the wine-cvs mailing list