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
f625f4a0
Commit
f625f4a0
authored
Aug 19, 2004
by
Robert Shearman
Committed by
Alexandre Julliard
Aug 19, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix type of DeleteIE3Cache function.
parent
2e569d14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
urlcache.c
dlls/wininet/urlcache.c
+12
-3
wininet.spec
dlls/wininet/wininet.spec
+1
-1
No files found.
dlls/wininet/urlcache.c
View file @
f625f4a0
...
...
@@ -2129,9 +2129,18 @@ BOOL WINAPI GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmas
/***********************************************************************
* DeleteIE3Cache (WININET.@)
*
* Deletes the files used by the IE3 URL caching system.
*
* PARAMS
* hWnd [I] A dummy window.
* hInst [I] Instance of process calling the function.
* lpszCmdLine [I] Options used by function.
* nCmdShow [I] The nCmdShow value to use when showing windows created, if any.
*
* RETURNS
* nothing
*/
DWORD
WINAPI
DeleteIE3Cache
(
DWORD
long1
,
DWORD
long2
,
LPSTR
strbufA
,
DWORD
long3
)
void
WINAPI
DeleteIE3Cache
(
HWND
hWnd
,
HINSTANCE
hInst
,
LPSTR
lpszCmdLine
,
int
nCmdShow
)
{
FIXME
(
"(%ld, %ld, %s, %ld)
\n
"
,
long1
,
long2
,
debugstr_a
(
strbufA
),
long3
);
return
0
;
FIXME
(
"(%p, %p, %s, %d)
\n
"
,
hWnd
,
hInst
,
debugstr_a
(
lpszCmdLine
),
nCmdShow
);
}
dlls/wininet/wininet.spec
View file @
f625f4a0
...
...
@@ -25,7 +25,7 @@
@ stdcall CreateUrlCacheEntryA(str long str ptr long)
@ stub CreateUrlCacheEntryW
@ stdcall CreateUrlCacheGroup(long ptr)
@ stdcall DeleteIE3Cache(
long long
str long)
@ stdcall DeleteIE3Cache(
ptr ptr
str long)
@ stub DeleteUrlCacheContainerA
@ stub DeleteUrlCacheContainerW
@ stdcall DeleteUrlCacheEntry(str) DeleteUrlCacheEntryA
...
...
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