New examples/documentation for console configuration options.
[wine] / include / mmreg.h
1 /*
2  *      mmreg.h   -       Declarations for ???
3  */
4
5 #include "wintypes.h"
6
7 /***********************************************************************
8  * Defines/Enums
9  */
10
11 #ifndef _ACM_WAVEFILTER
12 #define _ACM_WAVEFILTER
13
14 #define WAVE_FILTER_UNKNOWN     0x0000
15 #define WAVE_FILTER_DEVELOPMENT 0xFFFF
16
17 typedef struct _WAVEFILTER {
18   DWORD   cbStruct;
19   DWORD   dwFilterTag;
20   DWORD   fdwFilter;
21   DWORD   dwReserved[5];
22 } WAVEFILTER, *PWAVEFILTER, *NPWAVEFILTER, *LPWAVEFILTER;
23 #endif /* _ACM_WAVEFILTER */
24
25
26 #ifndef _WAVEFORMATEX_
27 #define _WAVEFORMATEX_
28 typedef struct _WAVEFORMATEX {
29   WORD   wFormatTag;
30   WORD   nChannels;
31   DWORD  nSamplesPerSec;
32   DWORD  nAvgBytesPerSec;
33   WORD   nBlockAlign;
34   WORD   wBitsPerSample;
35   WORD   cbSize;
36 } WAVEFORMATEX, *PWAVEFORMATEX, *NPWAVEFORMATEX, *LPWAVEFORMATEX;
37 #endif /* _WAVEFORMATEX_ */
38