//
// Device deinit - devices are expected to close down.
// The device manager does not check the return code.
//
BOOL
DAB_Deinit(
DWORD dwContext // future: pointer to the per disk structure
)
{
return TRUE;
} // DSK_Deinit
//
// Returns handle value for the open instance.
//
DWORD
DAB_Open(
DWORD dwData,
DWORD dwAccess,
DWORD dwShareMode
)
{
return 0;
} // DSK_Open
//
// I/O Control function - responds to info, read and write control codes.
// The read and write take a scatter/gather list in pInBuf
//
BOOL
DAB_IOControl(
DWORD Handle,
DWORD dwIoControlCode,
PBYTE pInBuf,
DWORD nInBufSize,
PBYTE pOutBuf,
DWORD nOutBufSize,
PDWORD pBytesReturned
)
{
return FALSE;
} // DSK_IOControl