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);
#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
};