pub unsafe extern "C" fn FspFileSystemCanReplaceReparsePoint(
    CurrentReparseData: PVOID,
    CurrentReparseDataSize: SIZE_T,
    ReplaceReparseData: PVOID,
    ReplaceReparseDataSize: SIZE_T
) -> NTSTATUS
Expand description

Test whether reparse data can be replaced.

This is a helper for implementing the SetReparsePoint/DeleteReparsePoint operation in file systems that support reparse points.

@param CurrentReparseData Pointer to the current reparse data. @param CurrentReparseDataSize Pointer to the current reparse data size. @param ReplaceReparseData Pointer to the replacement reparse data. @param ReplaceReparseDataSize Pointer to the replacement reparse data size. @return STATUS_SUCCESS or error code. @see SetReparsePoint DeleteReparsePoint