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
47ed171a
Commit
47ed171a
authored
Dec 03, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 03, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Use BOOL type where appropriate.
parent
e780ee58
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
35 deletions
+36
-35
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+33
-33
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+3
-2
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
47ed171a
This diff is collapsed.
Click to expand it.
dlls/rpcrt4/rpcrt4_main.c
View file @
47ed171a
...
...
@@ -390,7 +390,8 @@ static RPC_STATUS RPC_UuidGetNodeAddress(BYTE *address)
*/
RPC_STATUS
WINAPI
UuidCreateSequential
(
UUID
*
Uuid
)
{
static
int
initialised
,
count
;
static
BOOL
initialised
;
static
int
count
;
ULONGLONG
time
;
static
ULONGLONG
timelast
;
...
...
@@ -409,7 +410,7 @@ RPC_STATUS WINAPI UuidCreateSequential(UUID *Uuid)
sequence
&=
0x1fff
;
status
=
RPC_UuidGetNodeAddress
(
address
);
initialised
=
1
;
initialised
=
TRUE
;
}
/* Generate time element of the UUID. Account for going faster
...
...
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