23 Jan
2020
23 Jan
'20
3:22 p.m.
Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> writes:
+ struct + { + DWORD wFormatTag : 2; + DWORD nChannels : 3; + DWORD nSamplesPerSec : 18; + DWORD wBlockAlign : 8; + DWORD wBitsPerSample : 1; + } NONAMELESSUNION;
You want DUMMYSTRUCTNAME.
+ union + { + union + { + DWORD dwFlags : 4; + DWORD Duration : 28; + } NONAMELESSUNION; + DWORD dwFlagsAndDuration; + };
Same here, plus the inner one doesn't make sense as a union. -- Alexandre Julliard julliard(a)winehq.org