msxml3: Support VT_UI1|VT_ARRAY variant debug output

Nikolay Sivov nsivov at codeweavers.com
Fri Jun 29 03:13:59 CDT 2012


Support VT_UI1|VT_ARRAY variant debug output
-------------- next part --------------
>From 3cb7abc9311ddd5cbda2874e58f6fa675870624b Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <nsivov at codeweavers.com>
Date: Fri, 29 Jun 2012 00:44:50 +0400
Subject: [PATCH 1/2] Support VT_UI1|VT_ARRAY variant debug output

---
 dlls/msxml3/main.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/msxml3/main.c b/dlls/msxml3/main.c
index 48d007f..1553e77 100644
--- a/dlls/msxml3/main.c
+++ b/dlls/msxml3/main.c
@@ -291,6 +291,8 @@ const char *debugstr_variant(const VARIANT *v)
         return wine_dbg_sprintf("{VT_ERROR: 0x%08x}", V_ERROR(v));
     case VT_VARIANT|VT_BYREF:
         return wine_dbg_sprintf("{VT_VARIANT|VT_BYREF: %s}", debugstr_variant(V_VARIANTREF(v)));
+    case VT_UI1|VT_ARRAY:
+        return "{VT_UI1|VT_ARRAY}";
     default:
         return wine_dbg_sprintf("{vt %d}", V_VT(v));
     }
-- 
1.5.6.5



More information about the wine-patches mailing list