1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 20:06:18 +00:00

include: Fix IsEqualPropertyKey definition.

This commit is contained in:
Maarten Lankhorst 2010-01-29 21:51:41 +01:00 committed by Alexandre Julliard
parent 877e31c10f
commit f6efdd40d8

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_