Sebastian Lackner : dxva2: Return E_NOTIMPL from GetPhysicalMonitorsFromIDirect3DDevice9 stub.

Alexandre Julliard julliard at winehq.org
Wed Sep 14 10:28:51 CDT 2016


Module: wine
Branch: master
Commit: 69e49122ec113360656f8e444e117254e89bbe22
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=69e49122ec113360656f8e444e117254e89bbe22

Author: Sebastian Lackner <sebastian at fds-team.de>
Date:   Tue Sep 13 23:13:20 2016 +0200

dxva2: Return E_NOTIMPL from GetPhysicalMonitorsFromIDirect3DDevice9 stub.

Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dxva2/main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/dxva2/main.c b/dlls/dxva2/main.c
index b4704f0..782f0df 100644
--- a/dlls/dxva2/main.c
+++ b/dlls/dxva2/main.c
@@ -187,8 +187,7 @@ HRESULT WINAPI GetPhysicalMonitorsFromIDirect3DDevice9( IDirect3DDevice9 *device
 {
     FIXME("(%p, 0x%x, %p): stub\n", device, arraySize, array);
 
-    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
-    return FALSE;
+    return E_NOTIMPL;
 }
 
 BOOL WINAPI GetTimingReport( HMONITOR monitor, LPMC_TIMING_REPORT timingReport )




More information about the wine-cvs mailing list