Alistair Leslie-Hughes leslie_alistair@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.