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
5320a42a
Commit
5320a42a
authored
Jan 29, 2002
by
Eric Kohl
Committed by
Alexandre Julliard
Jan 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added FindFirstUrlCacheEntry[AW] stubs.
parent
71a081ca
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
9 deletions
+46
-9
Makefile.in
dlls/wininet/Makefile.in
+1
-0
urlcache.c
dlls/wininet/urlcache.c
+36
-0
wininet.spec
dlls/wininet/wininet.spec
+2
-2
wininet.h
include/wininet.h
+7
-7
No files found.
dlls/wininet/Makefile.in
View file @
5320a42a
...
...
@@ -11,6 +11,7 @@ C_SRCS = \
ftp.c
\
http.c
\
internet.c
\
urlcache.c
\
utility.c
\
wininet_main.c
...
...
dlls/wininet/urlcache.c
0 → 100644
View file @
5320a42a
/*
* Wininet - Url Cache functions
*
* Copyright 2001 CodeWeavers
*
* Eric Kohl
*
*/
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "windef.h"
#include "winbase.h"
#include "wininet.h"
#include "winerror.h"
#include "debugtools.h"
#include "internet.h"
DEFAULT_DEBUG_CHANNEL
(
wininet
);
INTERNETAPI
HANDLE
WINAPI
FindFirstUrlCacheEntryA
(
LPCSTR
lpszUrlSearchPattern
,
LPINTERNET_CACHE_ENTRY_INFOA
lpFirstCacheEntryInfo
,
LPDWORD
lpdwFirstCacheEntryInfoBufferSize
)
{
return
0
;
}
INTERNETAPI
HANDLE
WINAPI
FindFirstUrlCacheEntryW
(
LPCWSTR
lpszUrlSearchPattern
,
LPINTERNET_CACHE_ENTRY_INFOW
lpFirstCacheEntryInfo
,
LPDWORD
lpdwFirstCacheEntryInfoBufferSize
)
{
return
0
;
}
dlls/wininet/wininet.spec
View file @
5320a42a
...
...
@@ -27,10 +27,10 @@ debug_channels (wininet)
@ stub FindCloseUrlCache
@ stub FindFirstUrlCacheContainerA
@ stub FindFirstUrlCacheContainerW
@ st
ub
FindFirstUrlCacheEntryA
@ st
dcall FindFirstUrlCacheEntryA(str ptr ptr)
FindFirstUrlCacheEntryA
@ stub FindFirstUrlCacheEntryExA
@ stub FindFirstUrlCacheEntryExW
@ st
ub
FindFirstUrlCacheEntryW
@ st
dcall FindFirstUrlCacheEntryW(wstr ptr ptr)
FindFirstUrlCacheEntryW
@ stub FindNextUrlCacheContainerA
@ stub FindNextUrlCacheContainerW
@ stub FindNextUrlCacheEntryA
...
...
include/wininet.h
View file @
5320a42a
...
...
@@ -1290,12 +1290,12 @@ typedef struct _INTERNET_CACHE_ENTRY_INFOW {
FILETIME
LastSyncTime
;
LPBYTE
lpHeaderInfo
;
DWORD
dwHeaderInfoSize
;
LPWSTR
lpszFileExtension
;
union
{
DWORD
dwHeaderInfoSize
;
LPWSTR
lpszFileExtension
;
union
{
DWORD
dwReserved
;
DWORD
dwExemptDelta
;
}
u
;
}
u
;
}
INTERNET_CACHE_ENTRY_INFOW
,
*
LPINTERNET_CACHE_ENTRY_INFOW
;
DECL_WINELIB_TYPE_AW
(
INTERNET_CACHE_ENTRY_INFO
)
...
...
@@ -1344,7 +1344,7 @@ BOOLAPI GetUrlCacheEntryInfoExW(
BOOLAPI
SetUrlCacheEntryInfoA
(
LPCSTR
,
LPINTERNET_CACHE_ENTRY_INFOA
,
DWORD
);
BOOLAPI
SetUrlCacheEntryInfoW
(
LPCSTR
,
LPINTERNET_CACHE_ENTRY_INFOW
,
DWORD
);
BOOLAPI
SetUrlCacheEntryInfoW
(
LPC
W
STR
,
LPINTERNET_CACHE_ENTRY_INFOW
,
DWORD
);
#define SetUrlCacheEntryInfo WINELIB_NAME_AW(SetUrlCacheEntryInfo)
typedef
LONGLONG
GROUPID
;
...
...
@@ -1359,7 +1359,7 @@ BOOLAPI SetUrlCacheEntryGroup(LPCSTR ,DWORD ,GROUPID ,LPBYTE ,DWORD ,LPVOID);
INTERNETAPI
HANDLE
WINAPI
FindFirstUrlCacheEntryExA
(
LPCSTR
,
DWORD
,
DWORD
,
GROUPID
,
LPINTERNET_CACHE_ENTRY_INFOA
,
LPDWORD
,
LPVOID
,
LPDWORD
,
LPVOID
);
INTERNETAPI
HANDLE
WINAPI
FindFirstUrlCacheEntryExW
(
LPCSTR
,
DWORD
,
DWORD
,
GROUPID
,
LPINTERNET_CACHE_ENTRY_INFOW
,
LPDWORD
,
LPVOID
,
LPDWORD
,
LPVOID
);
LPC
W
STR
,
DWORD
,
DWORD
,
GROUPID
,
LPINTERNET_CACHE_ENTRY_INFOW
,
LPDWORD
,
LPVOID
,
LPDWORD
,
LPVOID
);
#define FindFirstUrlCacheEntryEx WINELIB_NAME_AW(FindFirstUrlCacheEntryEx)
BOOLAPI
FindNextUrlCacheEntryExA
(
HANDLE
,
LPINTERNET_CACHE_ENTRY_INFOA
,
LPDWORD
,
LPVOID
,
LPDWORD
,
LPVOID
);
...
...
@@ -1367,7 +1367,7 @@ BOOLAPI FindNextUrlCacheEntryExW(HANDLE ,LPINTERNET_CACHE_ENTRY_INFOW ,LPDWORD ,
#define FindNextUrlCacheEntryEx WINELIB_NAME_AW(FindNextUrlCacheEntryEx)
INTERNETAPI
HANDLE
WINAPI
FindFirstUrlCacheEntryA
(
LPCSTR
,
LPINTERNET_CACHE_ENTRY_INFOA
,
LPDWORD
);
INTERNETAPI
HANDLE
WINAPI
FindFirstUrlCacheEntryW
(
LPCSTR
,
LPINTERNET_CACHE_ENTRY_INFOW
,
LPDWORD
);
INTERNETAPI
HANDLE
WINAPI
FindFirstUrlCacheEntryW
(
LPC
W
STR
,
LPINTERNET_CACHE_ENTRY_INFOW
,
LPDWORD
);
#define FindFirstUrlCacheEntry WINELIB_NAME_AW(FindFirstUrlCacheEntry)
BOOLAPI
FindNextUrlCacheEntryA
(
HANDLE
,
LPINTERNET_CACHE_ENTRY_INFOA
,
LPDWORD
);
...
...
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