mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
43 lines
584 B
C
43 lines
584 B
C
/*
|
|
Don't use this.
|
|
*/
|
|
|
|
#include "mmdrv.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.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)
|
|
{
|
|
|
|
}
|