Module: wine Branch: refs/heads/master Commit: 17662eac6c886067be241a6a60e878a67ec136a2 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=17662eac6c886067be241a6a...
Author: Vitaliy Margolen wine-patch@kievinfo.com Date: Sat May 20 10:32:26 2006 -0600
include: SwapChain::GetBackBuffer takes 3 parameters, not 4.
---
include/d3d8.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
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
/*****************************************************************************