Module: wine Branch: master Commit: 92223ac91301128d944bc5a7e50f2a269d64f1a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=92223ac91301128d944bc5a7e5...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Wed Nov 11 09:49:44 2009 +0100
include: Add PROPERTYKEY to wtypes.idl.
---
include/wtypes.idl | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/include/wtypes.idl b/include/wtypes.idl index bacf4cd..032d64b 100644 --- a/include/wtypes.idl +++ b/include/wtypes.idl @@ -827,4 +827,13 @@ typedef union switch(DWORD tyspec) } ByObjectId; } uCLSSPEC;
+cpp_quote("#ifndef PROPERTYKEY_DEFINED") +cpp_quote("#define PROPERTYKEY_DEFINED") +typedef struct _tagpropertykey +{ + GUID fmtid; + DWORD pid; +} PROPERTYKEY; +cpp_quote("#endif /*PROPERTYKEY_DEFINED*/") + } /* interface IWinTypes */