Nikolay Sivov : mfplat: Trace I8 propvariant values.

Alexandre Julliard julliard at winehq.org
Tue May 4 16:23:35 CDT 2021


Module: wine
Branch: master
Commit: f4aae6255b26899cbf443c18391eec5e5808c63c
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=f4aae6255b26899cbf443c18391eec5e5808c63c

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Tue May  4 13:22:03 2021 +0300

mfplat: Trace I8 propvariant values.

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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:




More information about the wine-cvs mailing list