mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
16 lines
272 B
C#
16 lines
272 B
C#
using System;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
[Flags]
|
|
public enum MoveFileFlags
|
|
{
|
|
ReplaceExisting = 1,
|
|
CopyAllowed = 2,
|
|
DelayUntilReboot = 4,
|
|
WriteThrough = 8,
|
|
CreateHardLink = 16,
|
|
FailIfNotTrackable = 32
|
|
}
|
|
}
|