From 276bbb9f97a393435b0ccd20a7b86f1c9b63661c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Zalewski?= Date: Fri, 2 Jun 2006 17:10:17 +0200 Subject: [PATCH] shell32: Remove the now unused SHELL_DeleteFileA and SHELL_DeleteDirectoryA. --- dlls/shell32/shlfileop.c | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 64e66e3929c..426c02272fe 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -156,19 +156,6 @@ static void SHELL32_FreeUnicodeBuf(LPWSTR wPath) * Asks for confirmation when bShowUI is true and deletes the directory and * all its subdirectories and files if necessary. */ -BOOL SHELL_DeleteDirectoryA(LPCSTR pszDir, BOOL bShowUI) -{ - LPWSTR wPath; - BOOL ret = FALSE; - - if (!SHELL32_AnsiToUnicodeBuf(pszDir, &wPath, 0)) - { - ret = SHELL_DeleteDirectoryW(wPath, bShowUI); - SHELL32_FreeUnicodeBuf(wPath); - } - return ret; -} - BOOL SHELL_DeleteDirectoryW(LPCWSTR pszDir, BOOL bShowUI) { BOOL ret = TRUE; @@ -205,16 +192,8 @@ BOOL SHELL_DeleteDirectoryW(LPCWSTR pszDir, BOOL bShowUI) } /************************************************************************** - * SHELL_DeleteFileA() [internal] + * SHELL_DeleteFileW() [internal] */ -BOOL SHELL_DeleteFileA(LPCSTR pszFile, BOOL bShowUI) -{ - if (bShowUI && !SHELL_ConfirmDialog(ASK_DELETE_FILE, pszFile)) - return FALSE; - - return (SHNotifyDeleteFileA(pszFile) == ERROR_SUCCESS); -} - BOOL SHELL_DeleteFileW(LPCWSTR pszFile, BOOL bShowUI) { if (bShowUI && !SHELL_ConfirmDialogW(ASK_DELETE_FILE, pszFile))