vbscript: Tweak enum macros to avoid confusing winapi_extract.

This commit is contained in:
Alexandre Julliard 2013-03-04 11:19:50 +01:00
parent 20e85dd21b
commit 1e7d7d0985
1 changed files with 7 additions and 7 deletions

View File

@ -25,21 +25,21 @@
WINE_DEFAULT_DEBUG_CHANNEL(vbscript); WINE_DEFAULT_DEBUG_CHANNEL(vbscript);
#define REGEXP_TID_LIST \ #define REGEXP_TID_LIST \
XDIID(RegExp2) \ XDIID(RegExp2), \
XDIID(Match2) \ XDIID(Match2), \
XDIID(MatchCollection2) \ XDIID(MatchCollection2), \
XDIID(SubMatches) XDIID(SubMatches)
typedef enum { typedef enum {
#define XDIID(iface) iface ## _tid, #define XDIID(iface) iface ## _tid
REGEXP_TID_LIST REGEXP_TID_LIST,
#undef XDIID #undef XDIID
REGEXP_LAST_tid REGEXP_LAST_tid
} regexp_tid_t; } regexp_tid_t;
static REFIID tid_ids[] = { static REFIID tid_ids[] = {
#define XDIID(iface) &IID_I ## iface, #define XDIID(iface) &IID_I ## iface
REGEXP_TID_LIST REGEXP_TID_LIST
#undef XDIID #undef XDIID
}; };