Removed the FIXMEs when performing MoveFileEx with

MOVEFILE_DELAY_UNTIL_REBOOT, as wineboot will now take care of it.
oldstable
Shachar Shemesh 2003-01-11 21:03:18 +00:00 committed by Alexandre Julliard
parent 73a7cdac0b
commit 85a52cb27c
1 changed files with 1 additions and 11 deletions

View File

@ -2693,12 +2693,6 @@ BOOL WINAPI MoveFileExW( LPCWSTR fn1, LPCWSTR fn2, DWORD flag )
if (flag & MOVEFILE_DELAY_UNTIL_REBOOT)
{
/* FIXME: (bon@elektron.ikp.physik.th-darmstadt.de 970706)
Perhaps we should queue these command and execute it
when exiting... What about using on_exit(2)
*/
FIXME("Please move existing file %s to file %s when Wine has finished\n",
debugstr_w(fn1), debugstr_w(fn2));
return FILE_AddBootRenameEntry( fn1, fn2, flag );
}
@ -2781,11 +2775,7 @@ BOOL WINAPI MoveFileExW( LPCWSTR fn1, LPCWSTR fn2, DWORD flag )
SetLastError( ERROR_GEN_FAILURE );
return FALSE;
}
/* FIXME: (bon@elektron.ikp.physik.th-darmstadt.de 970706)
Perhaps we should queue these command and execute it
when exiting... What about using on_exit(2)
*/
FIXME("Please delete file %s when Wine has finished\n", debugstr_w(fn1));
return FILE_AddBootRenameEntry( fn1, NULL, flag );
}