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
5616c415
Commit
5616c415
authored
May 10, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
May 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Rename NonEncapsulatedUnionSize to NdrNonEncapsulatedUnionMemorySize.
parent
75fe824e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
17 deletions
+10
-17
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+10
-17
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
5616c415
...
...
@@ -1427,20 +1427,6 @@ void WINAPI NdrSimpleStructFree(PMIDL_STUB_MESSAGE pStubMsg,
}
static
long
NonEncapsulatedUnionSize
(
PMIDL_STUB_MESSAGE
pStubMsg
,
PFORMAT_STRING
pFormat
)
{
pFormat
+=
2
;
if
(
pStubMsg
->
fHasNewCorrDesc
)
pFormat
+=
6
;
else
pFormat
+=
4
;
pFormat
+=
*
(
const
SHORT
*
)
pFormat
;
TRACE
(
"size %d
\n
"
,
*
(
const
SHORT
*
)
pFormat
);
return
*
(
const
SHORT
*
)
pFormat
;
}
unsigned
long
WINAPI
EmbeddedComplexSize
(
PMIDL_STUB_MESSAGE
pStubMsg
,
PFORMAT_STRING
pFormat
)
{
...
...
@@ -1453,7 +1439,7 @@ unsigned long WINAPI EmbeddedComplexSize(PMIDL_STUB_MESSAGE pStubMsg,
case
RPC_FC_USER_MARSHAL
:
return
*
(
const
WORD
*
)
&
pFormat
[
4
];
case
RPC_FC_NON_ENCAPSULATED_UNION
:
return
N
onEncapsulatedUnion
Size
(
pStubMsg
,
pFormat
);
return
N
drNonEncapsulatedUnionMemory
Size
(
pStubMsg
,
pFormat
);
default:
FIXME
(
"unhandled embedded type %02x
\n
"
,
*
pFormat
);
}
...
...
@@ -3109,8 +3095,15 @@ void WINAPI NdrNonEncapsulatedUnionBufferSize(PMIDL_STUB_MESSAGE pStubMsg,
unsigned
long
WINAPI
NdrNonEncapsulatedUnionMemorySize
(
PMIDL_STUB_MESSAGE
pStubMsg
,
PFORMAT_STRING
pFormat
)
{
FIXME
(
"stub
\n
"
);
return
0
;
pFormat
+=
2
;
if
(
pStubMsg
->
fHasNewCorrDesc
)
pFormat
+=
6
;
else
pFormat
+=
4
;
pFormat
+=
*
(
const
SHORT
*
)
pFormat
;
TRACE
(
"size %d
\n
"
,
*
(
const
SHORT
*
)
pFormat
);
return
*
(
const
SHORT
*
)
pFormat
;
}
/***********************************************************************
...
...
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