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
b4e4831d
Commit
b4e4831d
authored
Oct 09, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 10, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Use BOOL type where appropriate.
parent
98e4c98e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ftp.c
dlls/wininet/ftp.c
+2
-2
http.c
dlls/wininet/http.c
+1
-1
No files found.
dlls/wininet/ftp.c
View file @
b4e4831d
...
...
@@ -531,7 +531,7 @@ static BOOL FTP_FtpSetCurrentDirectoryW(ftp_session_t *lpwfs, LPCWSTR lpszDirect
{
INT
nResCode
;
appinfo_t
*
hIC
=
NULL
;
DWORD
bSuccess
=
FALSE
;
BOOL
bSuccess
=
FALSE
;
TRACE
(
"lpszDirectory(%s)
\n
"
,
debugstr_w
(
lpszDirectory
));
...
...
@@ -1046,7 +1046,7 @@ static BOOL FTP_FtpGetCurrentDirectoryW(ftp_session_t *lpwfs, LPWSTR lpszCurrent
{
INT
nResCode
;
appinfo_t
*
hIC
=
NULL
;
DWORD
bSuccess
=
FALSE
;
BOOL
bSuccess
=
FALSE
;
/* Clear any error information */
INTERNET_SetLastError
(
0
);
...
...
dlls/wininet/http.c
View file @
b4e4831d
...
...
@@ -1451,7 +1451,7 @@ HINTERNET WINAPI HttpOpenRequestA(HINTERNET hHttpSession,
{
LPWSTR
szVerb
=
NULL
,
szObjectName
=
NULL
;
LPWSTR
szVersion
=
NULL
,
szReferrer
=
NULL
,
*
szAcceptTypes
=
NULL
;
HINTERNET
rc
=
FALSE
;
HINTERNET
rc
=
NULL
;
TRACE
(
"(%p, %s, %s, %s, %s, %p, %08x, %08lx)
\n
"
,
hHttpSession
,
debugstr_a
(
lpszVerb
),
debugstr_a
(
lpszObjectName
),
...
...
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