vbscript: Tweak enum macros to avoid confusing winapi_extract.
This commit is contained in:
parent
20e85dd21b
commit
1e7d7d0985
|
@ -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
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue