mirror of
https://github.com/reactos/wine.git
synced 2025-02-14 01:31:43 +00:00
kernel32: Add the MOVEFILE_WRITE_THROUGH flag for MoveFileEx (stub).
This commit is contained in:
parent
b329a2ef3c
commit
0e8f193184
@ -1010,6 +1010,9 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, LPCWSTR dest,
|
||||
if (!dest)
|
||||
return DeleteFileW( source );
|
||||
|
||||
if (flag & MOVEFILE_WRITE_THROUGH)
|
||||
FIXME("MOVEFILE_WRITE_THROUGH unimplemented\n");
|
||||
|
||||
/* check if we are allowed to rename the source */
|
||||
|
||||
if (!RtlDosPathNameToNtPathName_U( source, &nt_name, NULL, NULL ))
|
||||
|
@ -845,6 +845,7 @@ typedef DWORD (CALLBACK *LPPROGRESS_ROUTINE)(LARGE_INTEGER, LARGE_INTEGER, LARGE
|
||||
#define MOVEFILE_REPLACE_EXISTING 0x00000001
|
||||
#define MOVEFILE_COPY_ALLOWED 0x00000002
|
||||
#define MOVEFILE_DELAY_UNTIL_REBOOT 0x00000004
|
||||
#define MOVEFILE_WRITE_THROUGH 0x00000008
|
||||
|
||||
#define REPLACEFILE_WRITE_THROUGH 0x00000001
|
||||
#define REPLACEFILE_IGNORE_MERGE_ERRORS 0x00000002
|
||||
|
Loading…
x
Reference in New Issue
Block a user