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
04dc115b
Commit
04dc115b
authored
Nov 05, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Handle FC_IGNORE in the base type functions.
parent
b8af6677
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+9
-0
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
04dc115b
...
...
@@ -5355,6 +5355,8 @@ static unsigned char *WINAPI NdrBaseTypeMarshall(
pStubMsg
->
Buffer
+=
sizeof
(
USHORT
);
TRACE
(
"value: 0x%04x
\n
"
,
*
(
UINT
*
)
pMemory
);
break
;
case
RPC_FC_IGNORE
:
break
;
default:
FIXME
(
"Unhandled base type: 0x%02x
\n
"
,
*
pFormat
);
}
...
...
@@ -5428,6 +5430,8 @@ static unsigned char *WINAPI NdrBaseTypeUnmarshall(
pStubMsg
->
Buffer
+=
sizeof
(
USHORT
);
TRACE
(
"value: 0x%08x
\n
"
,
**
(
UINT
**
)
ppMemory
);
break
;
case
RPC_FC_IGNORE
:
break
;
default:
FIXME
(
"Unhandled base type: 0x%02x
\n
"
,
*
pFormat
);
}
...
...
@@ -5485,6 +5489,8 @@ static void WINAPI NdrBaseTypeBufferSize(
ALIGN_LENGTH
(
pStubMsg
->
BufferLength
,
sizeof
(
error_status_t
));
pStubMsg
->
BufferLength
+=
sizeof
(
error_status_t
);
break
;
case
RPC_FC_IGNORE
:
break
;
default:
FIXME
(
"Unhandled base type: 0x%02x
\n
"
,
*
pFormat
);
}
...
...
@@ -5538,6 +5544,9 @@ static ULONG WINAPI NdrBaseTypeMemorySize(
pStubMsg
->
Buffer
+=
sizeof
(
INT
);
pStubMsg
->
MemorySize
+=
sizeof
(
INT
);
return
sizeof
(
INT
);
case
RPC_FC_IGNORE
:
pStubMsg
->
MemorySize
+=
sizeof
(
void
*
);
return
sizeof
(
void
*
);
default:
FIXME
(
"Unhandled base type: 0x%02x
\n
"
,
*
pFormat
);
return
0
;
...
...
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