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
c91f3905
Commit
c91f3905
authored
Sep 27, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Use BOOL type where appropriate.
parent
6d13dd69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
rpc_message.c
dlls/rpcrt4/rpc_message.c
+3
-3
No files found.
dlls/rpcrt4/rpc_message.c
View file @
c91f3905
...
...
@@ -76,20 +76,20 @@ DWORD RPCRT4_GetHeaderSize(const RpcPktHdr *Header)
return
ret
;
}
static
int
packet_has_body
(
const
RpcPktHdr
*
Header
)
static
BOOL
packet_has_body
(
const
RpcPktHdr
*
Header
)
{
return
(
Header
->
common
.
ptype
==
PKT_FAULT
)
||
(
Header
->
common
.
ptype
==
PKT_REQUEST
)
||
(
Header
->
common
.
ptype
==
PKT_RESPONSE
);
}
static
int
packet_has_auth_verifier
(
const
RpcPktHdr
*
Header
)
static
BOOL
packet_has_auth_verifier
(
const
RpcPktHdr
*
Header
)
{
return
!
(
Header
->
common
.
ptype
==
PKT_BIND_NACK
)
&&
!
(
Header
->
common
.
ptype
==
PKT_SHUTDOWN
);
}
static
int
packet_does_auth_negotiation
(
const
RpcPktHdr
*
Header
)
static
BOOL
packet_does_auth_negotiation
(
const
RpcPktHdr
*
Header
)
{
switch
(
Header
->
common
.
ptype
)
{
...
...
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