From d9ec2b6dfddb1dbc6f38b93a25cebd7a6a2a24d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Sun, 17 Jun 2012 19:04:50 +0200 Subject: [PATCH] d3drm: Implement IDirect3DRMWinDevice_GetClassName. --- 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 60fbe980dcf..d85670a05ff 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 f304346c738..e71d89fe9e5 100644 --- a/dlls/d3drm/tests/d3drm.c +++ b/dlls/d3drm/tests/d3drm.c @@ -20,6 +20,7 @@ #define COBJMACROS #include #include +#include #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);