xref: /reactos/dll/win32/mmdrv/wave_io.c (revision 69931a4a)
1 /*
2     Don't use this.
3 */
4 
5 #include "mmdrv.h"
6 
7 #define NDEBUG
8 #include <debug.h>
9 
10 /*
11     Complete a partial wave buffer transaction
12 */
13 
14 void
15 CompleteWaveOverlap(
16     DWORD error_code,
17     DWORD bytes_transferred,
18     LPOVERLAPPED overlapped)
19 {
20     DPRINT("Complete partial wave overlap\n");
21 }
22 
23 /*
24     Helper function to set up loops
25 */
26 
27 VOID
28 UpdateWaveLoop(SessionInfo* session_info)
29 {
30 }
31 
32 
33 /*
34     The hub of all wave I/O. This ensures a constant stream of buffers are
35     passed between the land of usermode and kernelmode.
36 */
37 
38 VOID
39 PerformWaveIO(
40     SessionInfo* session_info)
41 {
42 
43 }
44