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
42bf8254
Commit
42bf8254
authored
May 25, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
May 25, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Stub implementations for NDRS marshalling functions.
parent
136804de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
6 deletions
+58
-6
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+52
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+6
-6
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
42bf8254
...
...
@@ -4369,3 +4369,55 @@ void WINAPI NDRCContextUnmarshall(NDR_CCONTEXT *CContext,
{
FIXME
(
"(%p %p %p %08lx): stub
\n
"
,
CContext
,
hBinding
,
pBuff
,
DataRepresentation
);
}
void
WINAPI
NDRSContextMarshall
(
NDR_SCONTEXT
CContext
,
void
*
pBuff
,
NDR_RUNDOWN
userRunDownIn
)
{
FIXME
(
"(%p %p %p): stub
\n
"
,
CContext
,
pBuff
,
userRunDownIn
);
}
void
WINAPI
NDRSContextMarshallEx
(
RPC_BINDING_HANDLE
hBinding
,
NDR_SCONTEXT
CContext
,
void
*
pBuff
,
NDR_RUNDOWN
userRunDownIn
)
{
FIXME
(
"(%p %p %p %p): stub
\n
"
,
hBinding
,
CContext
,
pBuff
,
userRunDownIn
);
}
void
WINAPI
NDRSContextMarshall2
(
RPC_BINDING_HANDLE
hBinding
,
NDR_SCONTEXT
CContext
,
void
*
pBuff
,
NDR_RUNDOWN
userRunDownIn
,
void
*
CtxGuard
,
unsigned
long
Flags
)
{
FIXME
(
"(%p %p %p %p %p %lu): stub
\n
"
,
hBinding
,
CContext
,
pBuff
,
userRunDownIn
,
CtxGuard
,
Flags
);
}
NDR_SCONTEXT
WINAPI
NDRSContextUnmarshall
(
void
*
pBuff
,
unsigned
long
DataRepresentation
)
{
FIXME
(
"(%p %08lx): stub
\n
"
,
pBuff
,
DataRepresentation
);
return
NULL
;
}
NDR_SCONTEXT
WINAPI
NDRSContextUnmarshallEx
(
RPC_BINDING_HANDLE
hBinding
,
void
*
pBuff
,
unsigned
long
DataRepresentation
)
{
FIXME
(
"(%p %p %08lx): stub
\n
"
,
hBinding
,
pBuff
,
DataRepresentation
);
return
NULL
;
}
NDR_SCONTEXT
WINAPI
NDRSContextUnmarshall2
(
RPC_BINDING_HANDLE
hBinding
,
void
*
pBuff
,
unsigned
long
DataRepresentation
,
void
*
CtxGuard
,
unsigned
long
Flags
)
{
FIXME
(
"(%p %p %08lx %p %lu): stub
\n
"
,
hBinding
,
pBuff
,
DataRepresentation
,
CtxGuard
,
Flags
);
return
NULL
;
}
dlls/rpcrt4/rpcrt4.spec
View file @
42bf8254
...
...
@@ -140,12 +140,12 @@
@ stdcall NDRCContextBinding(ptr)
@ stdcall NDRCContextMarshall(ptr ptr)
@ stdcall NDRCContextUnmarshall(ptr ptr ptr long)
@ st
ub NDRSContextMarshall2
@ st
ub NDRSContextMarshall
@ st
ub NDRSContextMarshallEx
@ st
ub NDRSContextUnmarshall2
@ st
ub NDRSContextUnmarshall
@ st
ub NDRSContextUnmarshallEx
@ st
dcall NDRSContextMarshall2(ptr ptr ptr ptr ptr long)
@ st
dcall NDRSContextMarshall(ptr ptr ptr)
@ st
dcall NDRSContextMarshallEx(ptr ptr ptr ptr)
@ st
dcall NDRSContextUnmarshall2(ptr ptr ptr ptr long)
@ st
dcall NDRSContextUnmarshall(ptr ptr)
@ st
dcall NDRSContextUnmarshallEx(ptr ptr ptr)
@ stub NDRcopy
@ stdcall NdrAllocate(ptr long)
@ stub NdrAsyncClientCall
...
...
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