include: Fix IsEqualPropertyKey definition.
This commit is contained in:
parent
877e31c10f
commit
f6efdd40d8
|
@ -48,7 +48,11 @@
|
|||
#endif
|
||||
|
||||
#ifndef IsEqualPropertyKey
|
||||
#ifdef __cplusplus
|
||||
#define IsEqualPropertyKey(a,b) (((a).pid == (b).pid) && IsEqualIID((a).fmtid,(b).fmtid))
|
||||
#else
|
||||
#define IsEqualPropertyKey(a,b) (((a).pid == (b).pid) && IsEqualIID(&(a).fmtid,&(b).fmtid))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef _PROPERTYKEY_EQUALITY_OPERATORS_
|
||||
|
|
Loading…
Reference in New Issue