FspFileSystemSendResponse

Function FspFileSystemSendResponse 

Source
pub unsafe extern "C" fn FspFileSystemSendResponse(
    FileSystem: *mut FSP_FILE_SYSTEM,
    Response: *mut FSP_FSCTL_TRANSACT_RSP,
)
Expand description

Send a response to the FSD.

This call is not required when the user mode file system performs synchronous processing of requests. It is possible however for the following FSP_FILE_SYSTEM_INTERFACE operations to be processed asynchronously:

  • Read
  • Write
  • ReadDirectory

These operations are allowed to return STATUS_PENDING to postpone sending a response to the FSD. At a later time the file system can use FspFileSystemSendResponse to send the response.

@param FileSystem The file system object. @param Response The response buffer.