Browse Source

* movefile_* consts expanded

marcoonthegit 2 years ago
parent
commit
f4155dc710
1 changed files with 6 additions and 3 deletions
  1. 6 3
      rtl/win/wininc/defines.inc

+ 6 - 3
rtl/win/wininc/defines.inc

@@ -2382,9 +2382,12 @@
      XBUTTON1 = WORD($0001);
      XBUTTON2 = WORD($0002);
   { MoveFileEx  }
-     MOVEFILE_REPLACE_EXISTING = 1;
-     MOVEFILE_COPY_ALLOWED = 2;
-     MOVEFILE_DELAY_UNTIL_REBOOT = 4;
+     MOVEFILE_REPLACE_EXISTING       = $00000001;
+     MOVEFILE_COPY_ALLOWED           = $00000002;
+     MOVEFILE_DELAY_UNTIL_REBOOT     = $00000004;
+     MOVEFILE_WRITE_THROUGH          = $00000008;
+     MOVEFILE_CREATE_HARDLINK        = $00000010;
+     MOVEFILE_FAIL_IF_NOT_TRACKABLE  = $00000020;
   { MsgWaitForMultipleObjects, WaitForMultipleObjectsEx  }
      WAIT_OBJECT_0 = 0;
      WAIT_ABANDONED_0 = $80;