namespace StabilityMatrix.Core.ReparsePoints;
internal enum DeviceIoControlCode : uint
{
///
/// FSCTL_SET_REPARSE_POINT
/// Command to set the reparse point data block.
///
SetReparsePoint = 0x000900A4,
///
/// FSCTL_GET_REPARSE_POINT
/// Command to get the reparse point data block.
///
GetReparsePoint = 0x000900A8,
///
/// FSCTL_DELETE_REPARSE_POINT
/// Command to delete the reparse point data base.
///
DeleteReparsePoint = 0x000900AC,
///
/// IO_REPARSE_TAG_MOUNT_POINT
/// Reparse point tag used to identify mount points and junction points.
///
ReparseTagMountPoint = 0xA0000003,
}