Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4def9cc0
Commit
4def9cc0
authored
May 24, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
May 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add stub implementations for NDRCContext(Un)Marshall.
parent
e480b6d0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+13
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+2
-2
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
4def9cc0
...
...
@@ -4344,3 +4344,16 @@ RPC_BINDING_HANDLE WINAPI NDRCContextBinding(NDR_CCONTEXT CContext)
FIXME
(
"(%p): stub
\n
"
,
CContext
);
return
NULL
;
}
void
WINAPI
NDRCContextMarshall
(
NDR_CCONTEXT
CContext
,
void
*
pBuff
)
{
FIXME
(
"(%p %p): stub
\n
"
,
CContext
,
pBuff
);
}
void
WINAPI
NDRCContextUnmarshall
(
NDR_CCONTEXT
*
CContext
,
RPC_BINDING_HANDLE
hBinding
,
void
*
pBuff
,
unsigned
long
DataRepresentation
)
{
FIXME
(
"(%p %p %p %08lx): stub
\n
"
,
CContext
,
hBinding
,
pBuff
,
DataRepresentation
);
}
dlls/rpcrt4/rpcrt4.spec
View file @
4def9cc0
...
...
@@ -138,8 +138,8 @@
@ stub MqGetContext # win9x
@ stub MqRegisterQueue # win9x
@ stdcall NDRCContextBinding(ptr)
@ st
ub NDRCContextMarshall
@ st
ub NDRCContextUnmarshall
@ st
dcall NDRCContextMarshall(ptr ptr)
@ st
dcall NDRCContextUnmarshall(ptr ptr ptr long)
@ stub NDRSContextMarshall2
@ stub NDRSContextMarshall
@ stub NDRSContextMarshallEx
...
...
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