mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-01-28 22:04:43 -08:00
48 lines
1.5 KiB
Diff
48 lines
1.5 KiB
Diff
|
From 2e637109299000cbcffa3ad1da1a49e2b4b666d9 Mon Sep 17 00:00:00 2001
|
||
|
From: Andrey Gusev <andrey.goosev@gmail.com>
|
||
|
Date: Sun, 1 Sep 2019 17:40:05 +0300
|
||
|
Subject: [PATCH] mfplat: Add MFGetConfigurationDWORD stub.
|
||
|
|
||
|
---
|
||
|
dlls/mfplat/main.c | 10 ++++++++++
|
||
|
dlls/mfplat/mfplat.spec | 2 +-
|
||
|
2 files changed, 11 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/dlls/mfplat/main.c b/dlls/mfplat/main.c
|
||
|
index 5cbf1212f7..42aecb5247 100644
|
||
|
--- a/dlls/mfplat/main.c
|
||
|
+++ b/dlls/mfplat/main.c
|
||
|
@@ -2300,6 +2300,16 @@ static HRESULT attributes_deserialize_read(struct attr_serialize_context *contex
|
||
|
return S_OK;
|
||
|
}
|
||
|
|
||
|
+/***********************************************************************
|
||
|
+ * MFGetConfigurationDWORD (mfplat.@)
|
||
|
+ */
|
||
|
+HRESULT WINAPI MFGetConfigurationDWORD(void *unk1, void *unk2, void *unk3)
|
||
|
+{
|
||
|
+ FIXME("%p, %p, %p stub!\n", unk1, unk2, unk3);
|
||
|
+
|
||
|
+ return E_NOTIMPL;
|
||
|
+}
|
||
|
+
|
||
|
/***********************************************************************
|
||
|
* MFInitAttributesFromBlob (mfplat.@)
|
||
|
*/
|
||
|
diff --git a/dlls/mfplat/mfplat.spec b/dlls/mfplat/mfplat.spec
|
||
|
index cc440c5ee0..3e1b5e6376 100644
|
||
|
--- a/dlls/mfplat/mfplat.spec
|
||
|
+++ b/dlls/mfplat/mfplat.spec
|
||
|
@@ -89,7 +89,7 @@
|
||
|
@ stub MFGetAdaptersAddresses
|
||
|
@ stdcall MFGetAttributesAsBlob(ptr ptr long)
|
||
|
@ stdcall MFGetAttributesAsBlobSize(ptr ptr)
|
||
|
-@ stub MFGetConfigurationDWORD
|
||
|
+@ stdcall MFGetConfigurationDWORD(ptr ptr ptr)
|
||
|
@ stub MFGetConfigurationPolicy
|
||
|
@ stub MFGetConfigurationStore
|
||
|
@ stub MFGetConfigurationString
|
||
|
--
|
||
|
2.21.0
|
||
|
|