Fix NdrServerContextMarshall prototype.

This commit is contained in:
Ge van Geldorp 2005-09-08 11:02:38 +00:00 committed by Alexandre Julliard
parent ee934ffadd
commit 94dc00c558
2 changed files with 3 additions and 3 deletions

View File

@ -2684,9 +2684,9 @@ void WINAPI NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
void WINAPI NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg, void WINAPI NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg,
NDR_SCONTEXT ContextHandle, NDR_SCONTEXT ContextHandle,
int fCheck ) NDR_RUNDOWN RundownRoutine )
{ {
FIXME("(%p, %p, %d): stub\n", pStubMsg, ContextHandle, fCheck); FIXME("(%p, %p, %p): stub\n", pStubMsg, ContextHandle, RundownRoutine);
} }
NDR_SCONTEXT WINAPI NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg) NDR_SCONTEXT WINAPI NdrServerContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg)

View File

@ -448,7 +448,7 @@ RPCRTAPI void RPC_ENTRY
IN RPC_BINDING_HANDLE BindHandle ); IN RPC_BINDING_HANDLE BindHandle );
RPCRTAPI void RPC_ENTRY RPCRTAPI void RPC_ENTRY
NdrServerContextMarshall ( PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle, int fCheck ); NdrServerContextMarshall ( PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle, NDR_RUNDOWN RundownRoutine );
RPCRTAPI NDR_SCONTEXT RPC_ENTRY RPCRTAPI NDR_SCONTEXT RPC_ENTRY
NdrServerContextUnmarshall( IN PMIDL_STUB_MESSAGE pStubMsg ); NdrServerContextUnmarshall( IN PMIDL_STUB_MESSAGE pStubMsg );