[PATCH] mfplat: Trace I8 propvariant values.

Nikolay Sivov nsivov at codeweavers.com
Tue May 4 05:22:03 CDT 2021


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---

Stream events use that for position offset.

 dlls/mfplat/mfplat_private.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/mfplat/mfplat_private.h b/dlls/mfplat/mfplat_private.h
index 8c968fe6fba..117907bb1a9 100644
--- a/dlls/mfplat/mfplat_private.h
+++ b/dlls/mfplat/mfplat_private.h
@@ -132,6 +132,8 @@ static inline const char *debugstr_propvar(const PROPVARIANT *v)
             return wine_dbg_sprintf("%p {VT_UI4: %d}", v, v->ulVal);
         case VT_UI8:
             return wine_dbg_sprintf("%p {VT_UI8: %s}", v, wine_dbgstr_longlong(v->uhVal.QuadPart));
+        case VT_I8:
+            return wine_dbg_sprintf("%p {VT_I8: %s}", v, wine_dbgstr_longlong(v->hVal.QuadPart));
         case VT_R8:
             return wine_dbg_sprintf("%p {VT_R8: %lf}", v, v->dblVal);
         case VT_CLSID:
-- 
2.30.2




More information about the wine-devel mailing list