Commit f6efdd40 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

include: Fix IsEqualPropertyKey definition.

parent 877e31c1
......@@ -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_
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment