[PATCH 01/11] dxgi: Stub DXGIGetDebugInterface1().

Józef Kucia jkucia at codeweavers.com
Wed Aug 8 09:11:32 CDT 2018


From: Matteo Bruni <mbruni at codeweavers.com>

Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
---
 dlls/dxgi/dxgi.spec   | 1 +
 dlls/dxgi/dxgi_main.c | 8 ++++++++
 2 files changed, 9 insertions(+)

diff --git a/dlls/dxgi/dxgi.spec b/dlls/dxgi/dxgi.spec
index 801e6a4283c0..67a345dc3764 100644
--- a/dlls/dxgi/dxgi.spec
+++ b/dlls/dxgi/dxgi.spec
@@ -3,3 +3,4 @@
 @ stdcall CreateDXGIFactory2(long ptr ptr)
 @ stdcall DXGID3D10CreateDevice(ptr ptr ptr long ptr long ptr)
 @ stdcall DXGID3D10RegisterLayers(ptr long)
+@ stdcall DXGIGetDebugInterface1(long ptr ptr)
diff --git a/dlls/dxgi/dxgi_main.c b/dlls/dxgi/dxgi_main.c
index df8761bdce09..cd2c39f4e14d 100644
--- a/dlls/dxgi/dxgi_main.c
+++ b/dlls/dxgi/dxgi_main.c
@@ -248,3 +248,11 @@ HRESULT WINAPI DXGID3D10RegisterLayers(const struct dxgi_device_layer *layers, U
 
     return S_OK;
 }
+
+HRESULT WINAPI DXGIGetDebugInterface1(UINT flags, REFIID iid, void **debug)
+{
+    TRACE("flags %#x, iid %s, debug %p.\n", flags, debugstr_guid(iid), debug);
+
+    WARN("Returning E_NOINTERFACE.\n");
+    return E_NOINTERFACE;
+}
-- 
2.16.4




More information about the wine-devel mailing list