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
8e6ae023
Commit
8e6ae023
authored
Jun 16, 2003
by
Mike Hearn
Committed by
Alexandre Julliard
Jun 16, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub out SetUrlCacheEntryInfoA/W.
parent
d2b8e39b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
urlcache.c
dlls/wininet/urlcache.c
+21
-2
wininet.spec
dlls/wininet/wininet.spec
+2
-2
No files found.
dlls/wininet/urlcache.c
View file @
8e6ae023
...
...
@@ -168,7 +168,7 @@ BOOL WINAPI GetUrlCacheEntryInfoExW(
*
* CacheInfo is some CACHE_CONFIG_INFO structure, with no MS info found by google
*/
BOOL
GetUrlCacheConfigInfoA
(
LPDWORD
CacheInfo
,
LPDWORD
size
,
DWORD
bitmask
)
BOOL
WINAPI
GetUrlCacheConfigInfoA
(
LPDWORD
CacheInfo
,
LPDWORD
size
,
DWORD
bitmask
)
{
FIXME
(
"
\n
"
);
INTERNET_SetLastError
(
ERROR_INVALID_PARAMETER
);
...
...
@@ -178,9 +178,28 @@ BOOL GetUrlCacheConfigInfoA(LPDWORD CacheInfo, LPDWORD size, DWORD bitmask)
/***********************************************************************
* GetUrlCacheConfigInfoW (WININET.@)
*/
BOOL
GetUrlCacheConfigInfoW
(
LPDWORD
CacheInfo
,
LPDWORD
size
,
DWORD
bitmask
)
BOOL
WINAPI
GetUrlCacheConfigInfoW
(
LPDWORD
CacheInfo
,
LPDWORD
size
,
DWORD
bitmask
)
{
FIXME
(
"
\n
"
);
INTERNET_SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
/***********************************************************************
* SetUrlCacheEntryInfoA (WININET.@)
*/
BOOL
WINAPI
SetUrlCacheEntryInfoA
(
LPCSTR
lpszUrlName
,
LPINTERNET_CACHE_ENTRY_INFOA
lpCacheEntryInfo
,
DWORD
dwFieldControl
)
{
FIXME
(
"stub
\n
"
);
return
FALSE
;
}
/***********************************************************************
* SetUrlCacheEntryInfoW (WININET.@)
*/
BOOL
WINAPI
SetUrlCacheEntryInfoW
(
LPCWSTR
lpszUrlName
,
LPINTERNET_CACHE_ENTRY_INFOW
lpCacheEntryInfo
,
DWORD
dwFieldControl
)
{
FIXME
(
"stub
\n
"
);
return
FALSE
;
}
dlls/wininet/wininet.spec
View file @
8e6ae023
...
...
@@ -156,8 +156,8 @@
@ stub SetUrlCacheConfigInfoA
@ stub SetUrlCacheConfigInfoW
@ stdcall SetUrlCacheEntryGroup(str long double ptr long ptr)
@ st
ub SetUrlCacheEntryInfoA
@ st
ub SetUrlCacheEntryInfoW
@ st
dcall SetUrlCacheEntryInfoA(str ptr long)
@ st
dcall SetUrlCacheEntryInfoW(wstr ptr long)
@ stub SetUrlCacheHeaderData
@ stub ShowClientAuthCerts
@ stub ShowSecurityInfo
...
...
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