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