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
173ae68f
Commit
173ae68f
authored
Jul 13, 2015
by
Huw Davies
Committed by
Alexandre Julliard
Jul 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Procedures containing a range within a conformance have a larger correlation descriptor.
parent
e8d1380a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+6
-0
ndrtypes.h
include/ndrtypes.h
+5
-1
No files found.
dlls/rpcrt4/ndr_stubless.c
View file @
173ae68f
...
...
@@ -736,6 +736,8 @@ LONG_PTR CDECL ndr_client_call( PMIDL_STUB_DESC pStubDesc, PFORMAT_STRING pForma
{
/* initialize extra correlation package */
NdrCorrelationInitialize
(
&
stubMsg
,
NdrCorrCache
,
sizeof
(
NdrCorrCache
),
0
);
if
(
ext_flags
.
Unused
&
0x2
)
/* has range on conformance */
stubMsg
.
CorrDespIncrement
=
12
;
}
/* order of phases:
...
...
@@ -1345,6 +1347,8 @@ LONG WINAPI NdrStubCall2(
{
/* initialize extra correlation package */
NdrCorrelationInitialize
(
&
stubMsg
,
NdrCorrCache
,
sizeof
(
NdrCorrCache
),
0
);
if
(
ext_flags
.
Unused
&
0x2
)
/* has range on conformance */
stubMsg
.
CorrDespIncrement
=
12
;
}
}
else
...
...
@@ -1618,6 +1622,8 @@ LONG_PTR CDECL ndr_async_client_call( PMIDL_STUB_DESC pStubDesc, PFORMAT_STRING
{
/* initialize extra correlation package */
NdrCorrelationInitialize
(
pStubMsg
,
async_call_data
->
NdrCorrCache
,
sizeof
(
async_call_data
->
NdrCorrCache
),
0
);
if
(
ext_flags
.
Unused
&
0x2
)
/* has range on conformance */
pStubMsg
->
CorrDespIncrement
=
12
;
}
/* order of phases:
...
...
include/ndrtypes.h
View file @
173ae68f
...
...
@@ -83,7 +83,11 @@ typedef struct
* routine @ NotifyIndex. */
unsigned
char
HasNotify2
:
1
;
/* 0x10 - should call MIDL [notify_flag] routine @
* NotifyIndex. */
unsigned
char
Unused
:
3
;
/* The following bits are in fact used by midl but haven't yet been
named in the SDK. */
unsigned
char
Unused
:
3
;
/* 0x20 - has complex return */
/* 0x40 - has range on conformance */
}
INTERPRETER_OPT_FLAGS2
,
*
PINTERPRETER_OPT_FLAGS2
;
/* Win2000 extensions */
...
...
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