Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7c578ab3
Commit
7c578ab3
authored
Apr 27, 2003
by
Uwe Bonnes
Committed by
Alexandre Julliard
Apr 27, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some UrlCache stubs.
parent
1d60387e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
3 deletions
+38
-3
urlcache.c
dlls/wininet/urlcache.c
+35
-0
wininet.spec
dlls/wininet/wininet.spec
+3
-3
No files found.
dlls/wininet/urlcache.c
View file @
7c578ab3
...
...
@@ -115,6 +115,19 @@ BOOL WINAPI GetUrlCacheEntryInfoA(LPCSTR lpszUrl,
}
/***********************************************************************
* GetUrlCacheEntryInfoW (WININET.@)
*
*/
BOOL
WINAPI
GetUrlCacheEntryInfoW
(
LPCWSTR
lpszUrl
,
LPINTERNET_CACHE_ENTRY_INFOW
lpCacheEntry
,
LPDWORD
lpCacheEntrySize
)
{
FIXME
(
"(%s) stub
\n
"
,
debugstr_w
(
lpszUrl
));
SetLastError
(
ERROR_FILE_NOT_FOUND
);
return
FALSE
;
}
/***********************************************************************
* GetUrlCacheEntryInfoExA (WININET.@)
*
*/
...
...
@@ -149,3 +162,25 @@ BOOL WINAPI GetUrlCacheEntryInfoExW(
INTERNET_SetLastError
(
ERROR_FILE_NOT_FOUND
);
return
FALSE
;
}
/***********************************************************************
* GetUrlCacheConfigInfoA (WININET.@)
*
* CacheInfo is some CACHE_CONFIG_INFO structure, with no MS info found by google
*/
BOOL
GetUrlCacheConfigInfoA
(
LPDWORD
CacheInfo
,
LPDWORD
size
,
DWORD
bitmask
)
{
FIXME
(
"
\n
"
);
INTERNET_SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
/***********************************************************************
* GetUrlCacheConfigInfoW (WININET.@)
*/
BOOL
GetUrlCacheConfigInfoW
(
LPDWORD
CacheInfo
,
LPDWORD
size
,
DWORD
bitmask
)
{
FIXME
(
"
\n
"
);
INTERNET_SetLastError
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
dlls/wininet/wininet.spec
View file @
7c578ab3
...
...
@@ -51,12 +51,12 @@
@ stub FtpRenameFileW
@ stdcall FtpSetCurrentDirectoryA(ptr str)
@ stdcall FtpSetCurrentDirectoryW(ptr wstr)
@ st
ub GetUrlCacheConfigInfoA
@ st
ub GetUrlCacheConfigInfoW
@ st
dcall GetUrlCacheConfigInfoA(ptr ptr long)
@ st
dcall GetUrlCacheConfigInfoW(ptr ptr long)
@ stdcall GetUrlCacheEntryInfoA(str ptr long)
@ stdcall GetUrlCacheEntryInfoExA(str ptr ptr str ptr ptr long)
@ stdcall GetUrlCacheEntryInfoExW(wstr ptr ptr wstr ptr ptr long)
@ st
ub GetUrlCacheEntryInfoW
@ st
dcall GetUrlCacheEntryInfoW(wstr ptr long)
@ stub GetUrlCacheHeaderData
@ stub GopherCreateLocatorA
@ stub GopherCreateLocatorW
...
...
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