Re: [PATCH 1/3] d3dx9_36: Implement ID3DXFileDataImpl_Lock and ID3DXFileDataImpl_Unlock.

2013-01-11 Thread Christian Costa
2013/1/11 Rico Schüller > On 11.01.2013 09:40, Christian Costa wrote: > >> static HRESULT WINAPI ID3DXFileDataImpl_Unlock(**ID3DXFileData *iface) >> { >> -FIXME("(%p)->(): stub\n", iface); >> +TRACE("(%p)->()\n", iface); >> >> -return E_NOTIMPL; >> +/* Nothing to do */ >> + >>

Re: [PATCH 1/3] d3dx9_36: Implement ID3DXFileDataImpl_Lock and ID3DXFileDataImpl_Unlock.

2013-01-11 Thread Rico Schüller
On 11.01.2013 09:40, Christian Costa wrote: static HRESULT WINAPI ID3DXFileDataImpl_Unlock(ID3DXFileData *iface) { -FIXME("(%p)->(): stub\n", iface); +TRACE("(%p)->()\n", iface); -return E_NOTIMPL; +/* Nothing to do */ + +return S_OK; } Hi Christian, I stumble over M