reactos/dll/win32/mmdrv/wave_io.c
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

40 lines
549 B
C

/*
Don't use this.
*/
#include <mmdrv.h>
/*
Complete a partial wave buffer transaction
*/
void
CompleteWaveOverlap(
DWORD error_code,
DWORD bytes_transferred,
LPOVERLAPPED overlapped)
{
DPRINT("Complete partial wave overlap\n");
}
/*
Helper function to set up loops
*/
VOID
UpdateWaveLoop(SessionInfo* session_info)
{
}
/*
The hub of all wave I/O. This ensures a constant stream of buffers are
passed between the land of usermode and kernelmode.
*/
VOID
PerformWaveIO(
SessionInfo* session_info)
{
}