Partial implementation of the Shell32 call Win32DeleteFile(), required

by IE5's Explorer.
This commit is contained in:
Ian Schmidt 1999-10-25 15:36:39 +00:00 committed by Alexandre Julliard
parent 96af9aa5b8
commit ace09a720b
2 changed files with 22 additions and 1 deletions

View File

@ -169,7 +169,7 @@ init Shell32LibMain
161 stdcall SHRunControlPanel (long long) SHRunControlPanel
162 stdcall SHSimpleIDListFromPath (ptr) SHSimpleIDListFromPathAW
163 stdcall StrToOleStr (wstr str) StrToOleStrAW
164 stub Win32DeleteFile
164 stdcall Win32DeleteFile(str) Win32DeleteFile
165 stdcall SHCreateDirectory(long long) SHCreateDirectory
166 stub CallCPLEntry16
167 stub SHAddFromPropSheetExtArray

View File

@ -1433,3 +1433,24 @@ BOOL WINAPI shell32_243(DWORD a, DWORD b)
{
return FALSE;
}
/************************************************************************
* Win32DeleteFile [SHELL32.164]
*
* Deletes a file. Also triggers a change notify if one exists, but
* that mechanism doesn't yet exist in Wine's SHELL32.
*
* FIXME:
* Verified on Win98 / IE 5 (SHELL32 4.72, March 1999 build) to be
* ANSI. Is this Unicode on NT?
*
*/
BOOL WINAPI Win32DeleteFile(LPSTR fName)
{
FIXME("%p(%s): partial stub\n", fName, fName);
DeleteFileA(fName);
return TRUE;
}