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
943eefc8
Commit
943eefc8
authored
May 17, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 17, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Avoid using long.
parent
184c86e7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+2
-2
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+1
-1
No files found.
dlls/rpcrt4/ndr_stubless.c
View file @
943eefc8
...
...
@@ -579,7 +579,7 @@ LONG_PTR WINAPIV NdrClientCall2(PMIDL_STUB_DESC pStubDesc, PFORMAT_STRING pForma
void
*
This
=
NULL
;
PFORMAT_STRING
pHandleFormat
;
/* correlation cache */
unsigned
long
NdrCorrCache
[
256
];
ULONG_PTR
NdrCorrCache
[
256
];
TRACE
(
"pStubDesc %p, pFormat %p, ...
\n
"
,
pStubDesc
,
pFormat
);
...
...
@@ -1636,7 +1636,7 @@ struct async_call_data
/* number of parameters. optional for client to give it to us */
unsigned
char
number_of_params
;
/* correlation cache */
unsigned
long
NdrCorrCache
[
256
];
ULONG_PTR
NdrCorrCache
[
256
];
};
LONG_PTR
WINAPIV
NdrAsyncClientCall
(
PMIDL_STUB_DESC
pStubDesc
,
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
943eefc8
...
...
@@ -432,7 +432,7 @@ RPC_STATUS WINAPI UuidCreateSequential(UUID *Uuid)
/* Pack the information into the UUID structure. */
Uuid
->
Data1
=
(
unsigned
long
)(
time
&
0xffffffff
);
Uuid
->
Data1
=
(
ULONG
)(
time
&
0xffffffff
);
Uuid
->
Data2
=
(
unsigned
short
)((
time
>>
32
)
&
0xffff
);
Uuid
->
Data3
=
(
unsigned
short
)((
time
>>
48
)
&
0x0fff
);
...
...
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