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
f815b68a
Commit
f815b68a
authored
Jan 31, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 02, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Declare some functions static.
parent
ae28430f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
http.c
dlls/wininet/http.c
+3
-2
internet.h
dlls/wininet/internet.h
+0
-3
No files found.
dlls/wininet/http.c
View file @
f815b68a
...
...
@@ -125,8 +125,9 @@ static BOOL HTTP_HandleRedirect(LPWININETHTTPREQW lpwhr, LPCWSTR lpszUrl);
static
UINT
HTTP_DecodeBase64
(
LPCWSTR
base64
,
LPSTR
bin
);
static
BOOL
HTTP_VerifyValidHeader
(
LPWININETHTTPREQW
lpwhr
,
LPCWSTR
field
);
static
void
HTTP_DrainContent
(
WININETHTTPREQW
*
req
);
static
BOOL
HTTP_FinishedReading
(
LPWININETHTTPREQW
lpwhr
);
LPHTTPHEADERW
HTTP_GetHeader
(
LPWININETHTTPREQW
req
,
LPCWSTR
head
)
static
LPHTTPHEADERW
HTTP_GetHeader
(
LPWININETHTTPREQW
req
,
LPCWSTR
head
)
{
int
HeaderIndex
=
0
;
HeaderIndex
=
HTTP_GetCustomHeaderIndex
(
req
,
head
,
0
,
TRUE
);
...
...
@@ -4206,7 +4207,7 @@ static BOOL HTTP_ProcessHeader(LPWININETHTTPREQW lpwhr, LPCWSTR field, LPCWSTR v
* Called when all content from server has been read by client.
*
*/
BOOL
HTTP_FinishedReading
(
LPWININETHTTPREQW
lpwhr
)
static
BOOL
HTTP_FinishedReading
(
LPWININETHTTPREQW
lpwhr
)
{
WCHAR
szVersion
[
10
];
WCHAR
szConnectionResponse
[
20
];
...
...
dlls/wininet/internet.h
View file @
f815b68a
...
...
@@ -379,7 +379,6 @@ INTERNETAPI HINTERNET WINAPI HTTP_HttpOpenRequestW(LPWININETHTTPSESSIONW lpwhs,
LPCWSTR
lpszVerb
,
LPCWSTR
lpszObjectName
,
LPCWSTR
lpszVersion
,
LPCWSTR
lpszReferrer
,
LPCWSTR
*
lpszAcceptTypes
,
DWORD
dwFlags
,
DWORD_PTR
dwContext
);
BOOL
HTTP_FinishedReading
(
LPWININETHTTPREQW
lpwhr
);
VOID
SendAsyncCallback
(
LPWININETHANDLEHEADER
hdr
,
DWORD_PTR
dwContext
,
DWORD
dwInternetStatus
,
LPVOID
lpvStatusInfo
,
...
...
@@ -389,8 +388,6 @@ VOID INTERNET_SendCallback(LPWININETHANDLEHEADER hdr, DWORD_PTR dwContext,
DWORD
dwInternetStatus
,
LPVOID
lpvStatusInfo
,
DWORD
dwStatusInfoLength
);
LPHTTPHEADERW
HTTP_GetHeader
(
LPWININETHTTPREQW
lpwhr
,
LPCWSTR
header
);
BOOL
NETCON_connected
(
WININET_NETCONNECTION
*
connection
);
BOOL
NETCON_init
(
WININET_NETCONNECTION
*
connnection
,
BOOL
useSSL
);
BOOL
NETCON_create
(
WININET_NETCONNECTION
*
connection
,
int
domain
,
...
...
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