pub unsafe extern "C" fn FspFileSystemNotifyEnd(
    FileSystem: *mut FSP_FILE_SYSTEM
) -> NTSTATUS
Expand description

End notifying Windows that the file system has file changes.

A file system that wishes to notify Windows about file changes must first issue an FspFileSystemBegin call, followed by 0 or more FspFileSystemNotify calls, followed by an FspFileSystemNotifyEnd call.

This operation allows any blocked file rename operations to proceed.

@param FileSystem The file system object. @return STATUS_SUCCESS or error code.