kernelbase: Use the user shared data to implement GetTickCount().
[wine.git] / include / xact3wb.h
blobb4c5a53d40c14ffe94feb33fbe16c7b852e558b7
1 /*
2 * Copyright (c) 2020 Alistair Leslie-Hughes
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 #ifndef __XACT3WB_H__
19 #define __XACT3WB_H__
21 typedef union WAVEBANKMINIWAVEFORMAT
23 struct
25 DWORD wFormatTag : 2;
26 DWORD nChannels : 3;
27 DWORD nSamplesPerSec : 18;
28 DWORD wBlockAlign : 8;
29 DWORD wBitsPerSample : 1;
30 } DUMMYSTRUCTNAME;
31 DWORD dwValue;
32 } WAVEBANKMINIWAVEFORMAT;
34 typedef struct WAVEBANKREGION
36 DWORD dwOffset;
37 DWORD dwLength;
38 } WAVEBANKREGION;
40 typedef struct WAVEBANKSAMPLEREGION
42 DWORD dwStartSample;
43 DWORD dwTotalSamples;
44 } WAVEBANKSAMPLEREGION;
46 typedef struct WAVEBANKENTRY
48 union
50 struct
52 DWORD dwFlags : 4;
53 DWORD Duration : 28;
54 } DUMMYSTRUCTNAME;
55 DWORD dwFlagsAndDuration;
56 } DUMMYUNIONNAME;
58 WAVEBANKMINIWAVEFORMAT Format;
59 WAVEBANKREGION PlayRegion;
60 WAVEBANKSAMPLEREGION LoopRegion;
61 } WAVEBANKENTRY;
63 #endif /* __XACT3WB_H__ */