msxml3: Support VT_I2 variants tracing

Nikolay Sivov nsivov at codeweavers.com
Mon Jun 25 02:51:30 CDT 2012


Support VT_I2 variants tracing
-------------- next part --------------
>From 81b401f2e7fa5bf5505b8cab47f40224589f461b Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <nsivov at codeweavers.com>
Date: Sat, 23 Jun 2012 17:08:27 +0400
Subject: [PATCH 08/10] Support VT_I2 variants tracing

---
 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 bfb301e..48d007f 100644
--- a/dlls/msxml3/main.c
+++ b/dlls/msxml3/main.c
@@ -268,6 +268,8 @@ const char *debugstr_variant(const VARIANT *v)
         return "{VT_EMPTY}";
     case VT_NULL:
         return "{VT_NULL}";
+    case VT_I2:
+        return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v));
     case VT_I4:
         return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v));
     case VT_R8:
-- 
1.5.6.5




More information about the wine-patches mailing list