[8/9] d3drm: Implement IDirect3DRMWinDevice_GetClassName (resend)

André Hentschel nerv at dawncrow.de
Sun Jun 17 12:04:50 CDT 2012


---
 dlls/d3drm/device.c      |    6 +++---
 dlls/d3drm/tests/d3drm.c |   26 ++++++++++++++++++++++++++
 2 files changed, 29 insertions(+), 3 deletions(-)

diff --git a/dlls/d3drm/device.c b/dlls/d3drm/device.c
index 60fbe98..d85670a 100644
--- a/dlls/d3drm/device.c
+++ b/dlls/d3drm/device.c
@@ -1115,13 +1115,13 @@ static HRESULT WINAPI IDirect3DRMWinDeviceImpl_GetName(IDirect3DRMWinDevice* ifa
 }
 
 static HRESULT WINAPI IDirect3DRMWinDeviceImpl_GetClassName(IDirect3DRMWinDevice* iface,
-                                                               LPDWORD size, LPSTR name)
+                                                            LPDWORD size, LPSTR name)
 {
     IDirect3DRMDeviceImpl *This = impl_from_IDirect3DRMWinDevice(iface);
 
-    FIXME("(%p/%p)->(%p, %p): stub\n", iface, This, size, name);
+    TRACE("(%p/%p)->(%p, %p)\n", iface, This, size, name);
 
-    return E_NOTIMPL;
+    return IDirect3DRMDevice3_GetClassName(&This->IDirect3DRMDevice3_iface, size, name);
 }
 
 /*** IDirect3DRMWinDevice methods ***/
diff --git a/dlls/d3drm/tests/d3drm.c b/dlls/d3drm/tests/d3drm.c
index f304346..e71d89f 100644
--- a/dlls/d3drm/tests/d3drm.c
+++ b/dlls/d3drm/tests/d3drm.c
@@ -20,6 +20,7 @@
 #define COBJMACROS
 #include <d3drm.h>
 #include <initguid.h>
+#include <d3drmwin.h>
 
 #include "wine/test.h"
 
@@ -1086,6 +1087,7 @@ static void test_Device(void)
     LPDIRECT3DRM pD3DRM;
     LPDIRECTDRAWCLIPPER pClipper;
     LPDIRECT3DRMDEVICE pDevice;
+    LPDIRECT3DRMWINDEVICE pWinDevice;
     GUID driver;
     HWND window;
     RECT rc;
@@ -1121,6 +1123,30 @@ static void test_Device(void)
     ok(size == sizeof("Device"), "wrong size: %u\n", size);
     ok(!strcmp(cname, "Device"), "Expected cname to be \"Device\", but got \"%s\"\n", cname);
 
+    /* WinDevice */
+    hr = IDirect3DRMDevice_QueryInterface(pDevice, &IID_IDirect3DRMWinDevice, (LPVOID*)&pWinDevice);
+    if (FAILED(hr))
+    {
+        win_skip("Cannot get IDirect3DRMWinDevice interface (hr = %x), skipping tests\n", hr);
+        goto cleanup;
+    }
+
+    hr = IDirect3DRMWinDevice_GetClassName(pWinDevice, NULL, cname);
+    ok(hr == E_INVALIDARG, "GetClassName failed with %x\n", hr);
+    hr = IDirect3DRMWinDevice_GetClassName(pWinDevice, NULL, NULL);
+    ok(hr == E_INVALIDARG, "GetClassName failed with %x\n", hr);
+    size = 1;
+    hr = IDirect3DRMWinDevice_GetClassName(pWinDevice, &size, cname);
+    ok(hr == E_INVALIDARG, "GetClassName failed with %x\n", hr);
+    size = sizeof(cname);
+    hr = IDirect3DRMWinDevice_GetClassName(pWinDevice, &size, cname);
+    ok(hr == D3DRM_OK, "Cannot get classname (hr = %x)\n", hr);
+    ok(size == sizeof("Device"), "wrong size: %u\n", size);
+    ok(!strcmp(cname, "Device"), "Expected cname to be \"Device\", but got \"%s\"\n", cname);
+
+    IDirect3DRMWinDevice_Release(pWinDevice);
+
+cleanup:
     IDirect3DRMDevice_Release(pDevice);
     IDirectDrawClipper_Release(pClipper);
 
-- 
1.7.4.1


-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list