You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1002 B
35 lines
1002 B
1 year ago
|
namespace StabilityMatrix.Core.ReparsePoints;
|
||
1 year ago
|
|
||
|
internal enum Win32ErrorCode
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The file or directory is not a reparse point.
|
||
1 year ago
|
/// ERROR_NOT_A_REPARSE_POINT
|
||
1 year ago
|
/// </summary>
|
||
|
NotAReparsePoint = 4390,
|
||
|
|
||
|
/// <summary>
|
||
|
/// The reparse point attribute cannot be set because it conflicts with an existing attribute.
|
||
1 year ago
|
/// ERROR_REPARSE_ATTRIBUTE_CONFLICT
|
||
1 year ago
|
/// </summary>
|
||
|
ReparseAttributeConflict = 4391,
|
||
|
|
||
|
/// <summary>
|
||
|
/// The data present in the reparse point buffer is invalid.
|
||
1 year ago
|
/// ERROR_INVALID_REPARSE_DATA
|
||
1 year ago
|
/// </summary>
|
||
|
InvalidReparseData = 4392,
|
||
|
|
||
|
/// <summary>
|
||
|
/// The tag present in the reparse point buffer is invalid.
|
||
1 year ago
|
/// ERROR_REPARSE_TAG_INVALID
|
||
1 year ago
|
/// </summary>
|
||
|
ReparseTagInvalid = 4393,
|
||
|
|
||
|
/// <summary>
|
||
|
/// There is a mismatch between the tag specified in the request and the tag present in the reparse point.
|
||
1 year ago
|
/// ERROR_REPARSE_TAG_MISMATCH
|
||
1 year ago
|
/// </summary>
|
||
|
ReparseTagMismatch = 4394,
|
||
|
}
|