[PATCH 2/2] d3dx9_36: Implement ID3DXFileDataImpl_GetType.

Christian Costa titan.costa at gmail.com
Thu Jan 10 02:37:01 CST 2013


---
 dlls/d3dx9_36/xfile.c |   14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/dlls/d3dx9_36/xfile.c b/dlls/d3dx9_36/xfile.c
index d4f08e3..8fa20ff 100644
--- a/dlls/d3dx9_36/xfile.c
+++ b/dlls/d3dx9_36/xfile.c
@@ -169,9 +169,19 @@ static HRESULT WINAPI ID3DXFileDataImpl_Unlock(ID3DXFileData *iface)
 
 static HRESULT WINAPI ID3DXFileDataImpl_GetType(ID3DXFileData *iface, GUID *guid)
 {
-    FIXME("(%p)->(%p): stub\n", iface, guid);
+    ID3DXFileDataImpl *This = impl_from_ID3DXFileData(iface);
+    const GUID *dxfile_guid;
+    HRESULT ret;
 
-    return E_NOTIMPL;
+    TRACE("(%p)->(%p)\n", iface, guid);
+
+    ret = IDirectXFileData_GetType(This->dxfile_data, &dxfile_guid);
+    if (ret != DXFILE_OK)
+        return error_dxfile_to_d3dxfile(ret);
+
+    *guid = *dxfile_guid;
+
+    return S_OK;
 }
 
 




More information about the wine-patches mailing list