Module: wine Branch: master Commit: 4791dfe3a307bbb85baf32c273571556514066bc URL: http://source.winehq.org/git/wine.git/?a=commit;h=4791dfe3a307bbb85baf32c273...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Mon Dec 3 21:16:31 2012 +0100
d3dx9: Avoid LPD3DXKEYFRAMEDANIMATIONSET.
---
include/d3dx9anim.h | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/include/d3dx9anim.h b/include/d3dx9anim.h index 6806622..2cff387 100644 --- a/include/d3dx9anim.h +++ b/include/d3dx9anim.h @@ -391,7 +391,9 @@ LPD3DXFRAME WINAPI D3DXFrameFind(CONST D3DXFRAME*, LPCSTR); HRESULT WINAPI D3DXFrameRegisterNamedMatrices(D3DXFRAME *frame_root, ID3DXAnimationController *animation_controller); UINT WINAPI D3DXFrameNumNamedMatrices(CONST D3DXFRAME *frame_root); HRESULT WINAPI D3DXFrameCalculateBoundingSphere(CONST D3DXFRAME*, LPD3DXVECTOR3, FLOAT*); -HRESULT WINAPI D3DXCreateKeyframedAnimationSet(LPCSTR, DOUBLE, D3DXPLAYBACK_TYPE, UINT, UINT, CONST D3DXKEY_CALLBACK*, LPD3DXKEYFRAMEDANIMATIONSET*); +HRESULT WINAPI D3DXCreateKeyframedAnimationSet(const char *name, double ticks_per_second, + D3DXPLAYBACK_TYPE playback_type, UINT animation_count, UINT callback_key_count, + const D3DXKEY_CALLBACK *callback_keys, ID3DXKeyframedAnimationSet **animation_set); HRESULT WINAPI D3DXCreateCompressedAnimationSet(const char *name, double ticks_per_second, D3DXPLAYBACK_TYPE playback_type, ID3DXBuffer *compressed_data, UINT callback_key_count, const D3DXKEY_CALLBACK *callback_keys, ID3DXCompressedAnimationSet **animation_set);