Module: wine Branch: master Commit: 56502ebb99e6643599d5395a58492186da842937 URL: http://source.winehq.org/git/wine.git/?a=commit;h=56502ebb99e6643599d5395a58... Author: Rob Shearman <robertshearman(a)gmail.com> Date: Wed Sep 17 10:58:43 2008 +0100 include: Add DUMMYUNIONNAME to the anonymous union in the uSTGMEDIUM structure in objidl.idl. --- include/objidl.idl | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/include/objidl.idl b/include/objidl.idl index 0e869cb..e0d83fa 100644 --- a/include/objidl.idl +++ b/include/objidl.idl @@ -1378,7 +1378,6 @@ interface IAdviseSink : IUnknown [size_is(cbData)] byte data[]; } RemSTGMEDIUM; - /* FIXME: C/C++ nameless union version */ typedef struct tagSTGMEDIUM { DWORD tymed; [switch_is(tymed)] union { @@ -1390,7 +1389,7 @@ interface IAdviseSink : IUnknown [case(TYMED_ISTREAM)] IStream *pstm; [case(TYMED_ISTORAGE)] IStorage *pstg; [default] ; - }; + } DUMMYUNIONNAME; [unique] IUnknown *pUnkForRelease; } uSTGMEDIUM;