include: Fix IsEqualPropertyKey definition.

oldstable
Maarten Lankhorst 2010-01-29 21:51:41 +01:00 committed by Alexandre Julliard
parent 877e31c10f
commit f6efdd40d8
1 changed files with 4 additions and 0 deletions

View File

@ -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_