Partial implementation of the Shell32 call Win32DeleteFile(), required
by IE5's Explorer.

diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c
index 451ec00..cc78dae 100644
--- a/dlls/shell32/shellord.c
+++ b/dlls/shell32/shellord.c
@@ -1433,3 +1433,24 @@
 { 
   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;
+}