reactos/dll/win32/mmdrv/wave_io.c
Cameron Gutman c2d0d784c7 [USB-BRINGUP-TRUNK]
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup
- In the future, DO NOT under any circumstances branch another branch. This leads to merge problems!

svn path=/branches/usb-bringup-trunk/; revision=55018
2012-01-20 20:58:46 +00:00

41 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)
{
}