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
34abacde
Commit
34abacde
authored
Jul 13, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Rename WININETHTTPREQW to http_request_t.
parent
e9f4a405
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
dialogs.c
dlls/wininet/dialogs.c
+4
-4
http.c
dlls/wininet/http.c
+0
-0
internet.h
dlls/wininet/internet.h
+2
-2
No files found.
dlls/wininet/dialogs.c
View file @
34abacde
...
...
@@ -62,12 +62,12 @@ struct WININET_ErrorDlgParams
*/
static
BOOL
WININET_GetProxyServer
(
HINTERNET
hRequest
,
LPWSTR
szBuf
,
DWORD
sz
)
{
LPWININETHTTPREQW
lpwhr
;
http_request_t
*
lpwhr
;
http_session_t
*
lpwhs
=
NULL
;
LPWININETAPPINFOW
hIC
=
NULL
;
LPWSTR
p
;
lpwhr
=
(
LPWININETHTTPREQW
)
WININET_GetObject
(
hRequest
);
lpwhr
=
(
http_request_t
*
)
WININET_GetObject
(
hRequest
);
if
(
NULL
==
lpwhr
)
return
FALSE
;
...
...
@@ -203,12 +203,12 @@ static BOOL WININET_GetSetPassword( HWND hdlg, LPCWSTR szServer,
static
BOOL
WININET_SetProxyAuthorization
(
HINTERNET
hRequest
,
LPWSTR
username
,
LPWSTR
password
)
{
LPWININETHTTPREQW
lpwhr
;
http_request_t
*
lpwhr
;
http_session_t
*
lpwhs
;
LPWININETAPPINFOW
hIC
;
LPWSTR
p
;
lpwhr
=
(
LPWININETHTTPREQW
)
WININET_GetObject
(
hRequest
);
lpwhr
=
(
http_request_t
*
)
WININET_GetObject
(
hRequest
);
if
(
!
lpwhr
)
return
FALSE
;
...
...
dlls/wininet/http.c
View file @
34abacde
This diff is collapsed.
Click to expand it.
dlls/wininet/internet.h
View file @
34abacde
...
...
@@ -215,7 +215,7 @@ typedef struct
BOOL
decoding
;
gzip_stream_t
*
gzip_stream
;
}
WININETHTTPREQW
,
*
LPWININETHTTPREQW
;
}
http_request_t
;
...
...
@@ -390,7 +390,7 @@ BOOL INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest);
LPSTR
INTERNET_GetResponseBuffer
(
void
);
LPSTR
INTERNET_GetNextLine
(
INT
nSocket
,
LPDWORD
dwLen
);
BOOLAPI
HTTP_HttpSendRequestW
(
LPWININETHTTPREQW
lpwhr
,
LPCWSTR
lpszHeaders
,
BOOLAPI
HTTP_HttpSendRequestW
(
http_request_t
*
req
,
LPCWSTR
lpszHeaders
,
DWORD
dwHeaderLength
,
LPVOID
lpOptional
,
DWORD
dwOptionalLength
,
DWORD
dwContentLength
,
BOOL
bEndRequest
);
INTERNETAPI
HINTERNET
WINAPI
HTTP_HttpOpenRequestW
(
http_session_t
*
session
,
...
...
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