Module: wine Branch: master Commit: c3963b7eb8422695b1bc05d1ecc002ca8e23c4f9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c3963b7eb8422695b1bc05d1ec...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Wed Dec 12 23:10:40 2012 +0100
ddraw: Avoid LPD3DEXECUTEBUFFERDESC.
---
include/d3d.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/d3d.h b/include/d3d.h index 5b55274..e326754 100644 --- a/include/d3d.h +++ b/include/d3d.h @@ -887,7 +887,7 @@ DECLARE_INTERFACE_(IDirect3DExecuteBuffer,IUnknown) STDMETHOD_(ULONG,Release)(THIS) PURE; /*** IDirect3DExecuteBuffer methods ***/ STDMETHOD(Initialize)(THIS_ struct IDirect3DDevice *device, D3DEXECUTEBUFFERDESC *desc) PURE; - STDMETHOD(Lock)(THIS_ LPD3DEXECUTEBUFFERDESC lpDesc) PURE; + STDMETHOD(Lock)(THIS_ D3DEXECUTEBUFFERDESC *desc) PURE; STDMETHOD(Unlock)(THIS) PURE; STDMETHOD(SetExecuteData)(THIS_ LPD3DEXECUTEDATA lpData) PURE; STDMETHOD(GetExecuteData)(THIS_ LPD3DEXECUTEDATA lpData) PURE;