propkeydef.h: Fixed DEFINE_PROPERTYKEY define.
This commit is contained in:
parent
715921fea0
commit
a2e0f0f4de
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue