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 a45f5f4a1605bd5c1324c641bbe6fbc5d5c3df90 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 2/2] 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 755b86aced..a74d472d15 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 a217bda82d..18cefa936b 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.17.1
|
|
|