Page 1 of 1

[Implemented] WAVEFORMATEX Structure: Unsigned FormatTag

Posted: Thu Jul 28, 2011 2:00 am
by chris319
Please make the wFormatTag member of the WAVEFORMATEX structure an unsigned unicode variable thus:

Code: Select all

Structure WAVEFORMATEX
  wFormatTag.u
  nChannels.w
  nSamplesPerSec.l
  nAvgBytesPerSec.l
  nBlockAlign.w
  wBitsPerSample.w
  cbSize.w
EndStructure
for compatibility with unsigned format tags defined by Microsoft (e.g. #WAVE_FORMAT_EXTENSIBLE = $FFFE).

Thank you.