mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
51 lines
1.3 KiB
Diff
51 lines
1.3 KiB
Diff
From cd8c2fb687e322b2d142ad0d6b23978e56df5a5c Mon Sep 17 00:00:00 2001
|
|
From: Andrey Gusev <andrey.goosev@gmail.com>
|
|
Date: Sun, 1 Sep 2019 18:34:53 +0300
|
|
Subject: [PATCH 1/2] mfplat: Add DestroyPropVariant stub.
|
|
|
|
---
|
|
dlls/mfplat/main.c | 13 +++++++++++++
|
|
dlls/mfplat/mfplat.spec | 2 +-
|
|
2 files changed, 14 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/dlls/mfplat/main.c b/dlls/mfplat/main.c
|
|
index 5cbf1212f7..755b86aced 100644
|
|
--- a/dlls/mfplat/main.c
|
|
+++ b/dlls/mfplat/main.c
|
|
@@ -7619,6 +7619,19 @@ HRESULT WINAPI CreatePropertyStore(IPropertyStore **store)
|
|
return S_OK;
|
|
}
|
|
|
|
+/***********************************************************************
|
|
+ * DestroyPropVariant (mfplat.@)
|
|
+ */
|
|
+HRESULT WINAPI DestroyPropVariant(PROPVARIANT *pv)
|
|
+{
|
|
+ FIXME("%p stub!\n", pv);
|
|
+
|
|
+ if (!pv)
|
|
+ return E_POINTER;
|
|
+
|
|
+ return E_NOTIMPL;
|
|
+}
|
|
+
|
|
struct dxgi_device_manager
|
|
{
|
|
IMFDXGIDeviceManager IMFDXGIDeviceManager_iface;
|
|
diff --git a/dlls/mfplat/mfplat.spec b/dlls/mfplat/mfplat.spec
|
|
index cc440c5ee0..a217bda82d 100644
|
|
--- a/dlls/mfplat/mfplat.spec
|
|
+++ b/dlls/mfplat/mfplat.spec
|
|
@@ -11,7 +11,7 @@
|
|
@ stub CopyPropVariant
|
|
@ stub CreatePropVariant
|
|
@ stdcall CreatePropertyStore(ptr)
|
|
-@ stub DestroyPropVariant
|
|
+@ stdcall DestroyPropVariant(ptr)
|
|
@ stub GetAMSubtypeFromD3DFormat
|
|
@ stub GetD3DFormatFromMFSubtype
|
|
@ stub LFGetGlobalPool
|
|
--
|
|
2.17.1
|
|
|