Commit a2e0f0f4 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

propkeydef.h: Fixed DEFINE_PROPERTYKEY define.

parent 715921fe
...@@ -33,18 +33,16 @@ ...@@ -33,18 +33,16 @@
#ifdef INITGUID #ifdef INITGUID
#ifdef __cplusplus #ifdef __cplusplus
#define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \ #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
EXTERN_C const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_SELECTANY; \ EXTERN_C const PROPERTYKEY DECLSPEC_SELECTANY name DECLSPEC_HIDDEN = \
EXTERN_C const PROPERTYKEY name = \
{ { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid } { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
#else #else
#define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \ #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_SELECTANY; \ const PROPERTYKEY DECLSPEC_SELECTANY name DECLSPEC_HIDDEN = \
const PROPERTYKEY name = \
{ { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid } { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid }
#endif #endif
#else #else
#define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \ #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \
EXTERN_C const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_SELECTANY EXTERN_C const PROPERTYKEY name DECLSPEC_HIDDEN
#endif #endif
#ifndef IsEqualPropertyKey #ifndef IsEqualPropertyKey
......
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