From 85a52cb27c2a1b7453418f8a7ae7bd365f546918 Mon Sep 17 00:00:00 2001 From: Shachar Shemesh Date: Sat, 11 Jan 2003 21:03:18 +0000 Subject: [PATCH] Removed the FIXMEs when performing MoveFileEx with MOVEFILE_DELAY_UNTIL_REBOOT, as wineboot will now take care of it. --- files/file.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/files/file.c b/files/file.c index e87a24e8c21..42db9ee3043 100644 --- a/files/file.c +++ b/files/file.c @@ -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 ); }