Re: [1/2] iphlpapi: Add GetUnicastIpAddressEntry implementation (try 4)
9 Feb
2017
9 Feb
'17
10:29 a.m.
André Hentschel <nerv(a)dawncrow.de> writes:
@@ -78,6 +80,17 @@ typedef enum { ScopeLevelGlobal = 14 } SCOPE_LEVEL;
+typedef struct +{ + union { + struct { + ULONG Zone : 28; + ULONG Level : 4; + }; + ULONG Value; + }; +} SCOPE_ID, *PSCOPE_ID;
Anonymous unions and structs are not portable, please check how this is handled in other places. -- Alexandre Julliard julliard(a)winehq.org
3231
Age (days ago)
3231
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard