Partial implementation of the Shell32 call Win32DeleteFile(), required
by IE5's Explorer.
This commit is contained in:
parent
96af9aa5b8
commit
ace09a720b
|
@ -169,7 +169,7 @@ init Shell32LibMain
|
||||||
161 stdcall SHRunControlPanel (long long) SHRunControlPanel
|
161 stdcall SHRunControlPanel (long long) SHRunControlPanel
|
||||||
162 stdcall SHSimpleIDListFromPath (ptr) SHSimpleIDListFromPathAW
|
162 stdcall SHSimpleIDListFromPath (ptr) SHSimpleIDListFromPathAW
|
||||||
163 stdcall StrToOleStr (wstr str) StrToOleStrAW
|
163 stdcall StrToOleStr (wstr str) StrToOleStrAW
|
||||||
164 stub Win32DeleteFile
|
164 stdcall Win32DeleteFile(str) Win32DeleteFile
|
||||||
165 stdcall SHCreateDirectory(long long) SHCreateDirectory
|
165 stdcall SHCreateDirectory(long long) SHCreateDirectory
|
||||||
166 stub CallCPLEntry16
|
166 stub CallCPLEntry16
|
||||||
167 stub SHAddFromPropSheetExtArray
|
167 stub SHAddFromPropSheetExtArray
|
||||||
|
|
|
@ -1433,3 +1433,24 @@ BOOL WINAPI shell32_243(DWORD a, DWORD b)
|
||||||
{
|
{
|
||||||
return FALSE;
|
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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue