Commit 75e9c468 authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Added missing union names for some encapsulated unions.

parent da0b4dc7
......@@ -229,7 +229,7 @@ typedef [unique] FLAGGED_WORD_BLOB *UP_FLAGGED_WORD_BLOB;
const unsigned long WDT_INPROC_CALL = 0x48746457;
const unsigned long WDT_REMOTE_CALL = 0x52746457;
typedef union _userCLIPFORMAT switch(long fContext) {
typedef union _userCLIPFORMAT switch(long fContext) u {
case WDT_INPROC_CALL: DWORD dwValue;
case WDT_REMOTE_CALL: [string] WCHAR *pwszName;
} userCLIPFORMAT;
......@@ -245,7 +245,7 @@ typedef struct tagRemHMETAFILEPICT {
[size_is(cbData)] byte data[];
} RemHMETAFILEPICT;
typedef union _userHMETAFILE switch(long fContext) {
typedef union _userHMETAFILE switch(long fContext) u {
case WDT_INPROC_CALL: long hInproc;
case WDT_REMOTE_CALL: BYTE_BLOB *hRemote;
default: long hGlobal;
......@@ -260,7 +260,7 @@ typedef struct _remoteMETAFILEPICT {
userHMETAFILE *hMF;
} remoteMETAFILEPICT;
typedef union _userHMETAFILEPICT switch(long fContext) {
typedef union _userHMETAFILEPICT switch(long fContext) u {
case WDT_INPROC_CALL: long hInproc;
case WDT_REMOTE_CALL: remoteMETAFILEPICT *hRemote;
default: long hGlobal;
......
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