shell32: Remove the now unused SHELL_DeleteFileW.

This commit is contained in:
Mikołaj Zalewski 2006-06-30 22:40:23 +02:00 committed by Alexandre Julliard
parent 123592f0c3
commit 9078c6af45
1 changed files with 0 additions and 11 deletions

View File

@ -174,17 +174,6 @@ BOOL SHELL_DeleteDirectoryW(LPCWSTR pszDir, BOOL bShowUI)
return ret;
}
/**************************************************************************
* SHELL_DeleteFileW() [internal]
*/
BOOL SHELL_DeleteFileW(LPCWSTR pszFile, BOOL bShowUI)
{
if (bShowUI && !SHELL_ConfirmDialogW(ASK_DELETE_FILE, pszFile))
return FALSE;
return (SHNotifyDeleteFileW(pszFile) == ERROR_SUCCESS);
}
/**************************************************************************
* Win32CreateDirectory [SHELL32.93]
*