Alexandre Julliard : vbscript: Tweak enum macros to avoid confusing winapi_extract.

Alexandre Julliard julliard at winehq.org
Mon Mar 4 13:23:38 CST 2013


Module: wine
Branch: master
Commit: 1e7d7d098529da37bf64deea86caef08692bce9e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=1e7d7d098529da37bf64deea86caef08692bce9e

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Mar  4 11:19:50 2013 +0100

vbscript: Tweak enum macros to avoid confusing winapi_extract.

---

 dlls/vbscript/vbregexp.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dlls/vbscript/vbregexp.c b/dlls/vbscript/vbregexp.c
index 0aaa140..02e63ab 100644
--- a/dlls/vbscript/vbregexp.c
+++ b/dlls/vbscript/vbregexp.c
@@ -25,21 +25,21 @@
 WINE_DEFAULT_DEBUG_CHANNEL(vbscript);
 
 #define REGEXP_TID_LIST \
-    XDIID(RegExp2) \
-    XDIID(Match2) \
-    XDIID(MatchCollection2) \
+    XDIID(RegExp2), \
+    XDIID(Match2), \
+    XDIID(MatchCollection2), \
     XDIID(SubMatches)
 
 typedef enum {
-#define XDIID(iface) iface ## _tid,
-REGEXP_TID_LIST
+#define XDIID(iface) iface ## _tid
+    REGEXP_TID_LIST,
 #undef XDIID
     REGEXP_LAST_tid
 } regexp_tid_t;
 
 static REFIID tid_ids[] = {
-#define XDIID(iface) &IID_I ## iface,
-REGEXP_TID_LIST
+#define XDIID(iface) &IID_I ## iface
+    REGEXP_TID_LIST
 #undef XDIID
 };
 




More information about the wine-cvs mailing list