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
2387532c
Commit
2387532c
authored
Oct 30, 2009
by
Austin English
Committed by
Alexandre Julliard
Nov 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Add stubs for FreeUrlCacheSpace.
parent
6d6d8eb1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
urlcache.c
dlls/wininet/urlcache.c
+22
-0
wininet.spec
dlls/wininet/wininet.spec
+2
-2
No files found.
dlls/wininet/urlcache.c
View file @
2387532c
...
...
@@ -1449,6 +1449,28 @@ static BOOL URLCache_EnumHashTableEntries(LPCURLCACHE_HEADER pHeader, const HASH
}
/***********************************************************************
* FreeUrlCacheSpaceA (WININET.@)
*
*/
BOOL
WINAPI
FreeUrlCacheSpaceA
(
LPCSTR
lpszCachePath
,
DWORD
dwSize
,
DWORD
dwFilter
)
{
FIXME
(
"stub!
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* FreeUrlCacheSpaceW (WININET.@)
*
*/
BOOL
WINAPI
FreeUrlCacheSpaceW
(
LPCWSTR
lpszCachePath
,
DWORD
dwSize
,
DWORD
dwFilter
)
{
FIXME
(
"stub!
\n
"
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* GetUrlCacheEntryInfoExA (WININET.@)
*
*/
...
...
dlls/wininet/wininet.spec
View file @
2387532c
...
...
@@ -50,8 +50,8 @@
@ stdcall FindNextUrlCacheGroup(long ptr ptr)
@ stub ForceNexusLookup
@ stub ForceNexusLookupExW
@ st
ub FreeUrlCacheSpaceA
@ st
ub FreeUrlCacheSpaceW
@ st
dcall FreeUrlCacheSpaceA(str long long)
@ st
dcall FreeUrlCacheSpaceW(wstr long long)
@ stdcall FtpCommandA(long long long str ptr ptr)
@ stdcall FtpCommandW(long long long wstr ptr ptr)
@ stdcall FtpCreateDirectoryA(ptr str)
...
...
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