namespace StabilityMatrix.Core.ReparsePoints;
internal enum Win32ErrorCode
{
///
/// The file or directory is not a reparse point.
/// ERROR_NOT_A_REPARSE_POINT
///
NotAReparsePoint = 4390,
///
/// The reparse point attribute cannot be set because it conflicts with an existing attribute.
/// ERROR_REPARSE_ATTRIBUTE_CONFLICT
///
ReparseAttributeConflict = 4391,
///
/// The data present in the reparse point buffer is invalid.
/// ERROR_INVALID_REPARSE_DATA
///
InvalidReparseData = 4392,
///
/// The tag present in the reparse point buffer is invalid.
/// ERROR_REPARSE_TAG_INVALID
///
ReparseTagInvalid = 4393,
///
/// There is a mismatch between the tag specified in the request and the tag present in the reparse point.
/// ERROR_REPARSE_TAG_MISMATCH
///
ReparseTagMismatch = 4394,
}