Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ace09a72
Commit
ace09a72
authored
Oct 25, 1999
by
Ian Schmidt
Committed by
Alexandre Julliard
Oct 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partial implementation of the Shell32 call Win32DeleteFile(), required
by IE5's Explorer.
parent
96af9aa5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
shell32.spec
dlls/shell32/shell32.spec
+1
-1
shellord.c
dlls/shell32/shellord.c
+21
-0
No files found.
dlls/shell32/shell32.spec
View file @
ace09a72
...
...
@@ -169,7 +169,7 @@ init Shell32LibMain
161 stdcall SHRunControlPanel (long long) SHRunControlPanel
162 stdcall SHSimpleIDListFromPath (ptr) SHSimpleIDListFromPathAW
163 stdcall StrToOleStr (wstr str) StrToOleStrAW
164 st
ub
Win32DeleteFile
164 st
dcall Win32DeleteFile(str)
Win32DeleteFile
165 stdcall SHCreateDirectory(long long) SHCreateDirectory
166 stub CallCPLEntry16
167 stub SHAddFromPropSheetExtArray
...
...
dlls/shell32/shellord.c
View file @
ace09a72
...
...
@@ -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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment