pub unsafe extern "C" fn FspFileSystemStartDispatcher(
    FileSystem: *mut FSP_FILE_SYSTEM,
    ThreadCount: ULONG
) -> NTSTATUS
Expand description

Start the file system dispatcher.

The file system dispatcher is used to dispatch operations posted by the FSD to the user mode file system. Once this call starts executing the user mode file system will start receiving file system requests from the kernel.

@param FileSystem The file system object. @param ThreadCount The number of threads for the file system dispatcher. A value of 0 will create a default number of threads and should be chosen in most cases. @return STATUS_SUCCESS or error code.