pub unsafe extern "C" fn FspFileSystemCreate(
DevicePath: PWSTR,
VolumeParams: *const FSP_FSCTL_VOLUME_PARAMS,
Interface: *const FSP_FILE_SYSTEM_INTERFACE,
PFileSystem: *mut *mut FSP_FILE_SYSTEM,
) -> NTSTATUSExpand description
Create a file system object.
@param DevicePath The name of the control device for this file system. This must be either FSP_FSCTL_DISK_DEVICE_NAME or FSP_FSCTL_NET_DEVICE_NAME. @param VolumeParams Volume parameters for the newly created file system. @param Interface A pointer to the operations that implement this user mode file system. @param PFileSystem [out] Pointer that will receive the file system object created on successful return from this call. @return STATUS_SUCCESS or error code.