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
67b6c2a4
Commit
67b6c2a4
authored
May 13, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
May 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Add a stub implementation of IncrementUrlCacheHeaderData.
parent
7ddec087
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
urlcache.c
dlls/wininet/urlcache.c
+9
-0
wininet.spec
dlls/wininet/wininet.spec
+1
-1
winineti.h
include/winineti.h
+1
-0
No files found.
dlls/wininet/urlcache.c
View file @
67b6c2a4
...
...
@@ -3654,3 +3654,12 @@ DWORD WINAPI RegisterUrlCacheNotification(LPVOID a, DWORD b, DWORD c, DWORD d, D
FIXME
(
"(%p %x %x %x %x %x)
\n
"
,
a
,
b
,
c
,
d
,
e
,
f
);
return
0
;
}
/***********************************************************************
* IncrementUrlCacheHeaderData (WININET.@)
*/
BOOL
WINAPI
IncrementUrlCacheHeaderData
(
DWORD
index
,
LPDWORD
data
)
{
FIXME
(
"(%u, %p)
\n
"
,
index
,
data
);
return
FALSE
;
}
dlls/wininet/wininet.spec
View file @
67b6c2a4
...
...
@@ -109,7 +109,7 @@
@ stdcall HttpSendRequestExA(long ptr ptr long long)
@ stdcall HttpSendRequestExW(long ptr ptr long long)
@ stdcall HttpSendRequestW(ptr wstr long ptr long)
@ st
ub IncrementUrlCacheHeaderData
@ st
dcall IncrementUrlCacheHeaderData(long ptr)
@ stub InternetAlgIdToStringA
@ stub InternetAlgIdToStringW
@ stdcall InternetAttemptConnect(long)
...
...
include/winineti.h
View file @
67b6c2a4
...
...
@@ -94,6 +94,7 @@ BOOL WINAPI GetDiskInfoA(PCSTR,PDWORD,PDWORDLONG,PDWORDLONG);
BOOL
WINAPI
GetUrlCacheConfigInfoA
(
LPINTERNET_CACHE_CONFIG_INFOA
,
LPDWORD
,
DWORD
);
BOOL
WINAPI
GetUrlCacheConfigInfoW
(
LPINTERNET_CACHE_CONFIG_INFOW
,
LPDWORD
,
DWORD
);
#define GetUrlCacheConfigInfo WINELIB_NAME_AW(GetUrlCacheConfigInfo)
BOOL
WINAPI
IncrementUrlCacheHeaderData
(
DWORD
,
LPDWORD
);
BOOL
WINAPI
InternetQueryFortezzaStatus
(
DWORD
*
,
DWORD_PTR
);
BOOL
WINAPI
IsUrlCacheEntryExpiredA
(
LPCSTR
,
DWORD
,
FILETIME
*
);
BOOL
WINAPI
IsUrlCacheEntryExpiredW
(
LPCWSTR
,
DWORD
,
FILETIME
*
);
...
...
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