Module: wine Branch: master Commit: 8c278a0d82c22e8cb85896ef61e5975575f8b452 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8c278a0d82c22e8cb85896ef61...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Fri Nov 13 14:48:53 2009 +0100
include: Fix propkeydef.h header.
---
include/propkeydef.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/propkeydef.h b/include/propkeydef.h index 8507ddb..2a45984 100644 --- a/include/propkeydef.h +++ b/include/propkeydef.h @@ -33,18 +33,18 @@ #ifdef INITGUID #ifdef __cplusplus #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \ - EXTERN_C const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_ANY; \ + EXTERN_C const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_SELECTANY; \ EXTERN_C const PROPERTYKEY name = \ { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid } #else #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \ - const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_ANY; \ + const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_SELECTANY; \ const PROPERTYKEY name = \ { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }, pid } #endif #else #define DEFINE_PROPERTYKEY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8, pid) \ - EXTERN_C const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_ANY + EXTERN_C const PROPERTYKEY name DECLSPEC_HIDDEN DECLSPEC_SELECTANY #endif
#ifndef IsEqualPropertyKey