You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
462 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Runtime.InteropServices;
  4. using System.Text;
  5. namespace Apewer.Internals.Interop
  6. {
  7. [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
  8. internal class WAVEFORMATEX
  9. {
  10. internal short wFormatTag;
  11. internal short nChannels;
  12. internal int nSamplesPerSec;
  13. internal int nAvgBytesPerSec;
  14. internal short nBlockAlign;
  15. internal short wBitsPerSample;
  16. internal short cbSize;
  17. }
  18. }