From 94dc00c55845f199f74c4fb3d9ded43bd5e086d2 Mon Sep 17 00:00:00 2001 From: Ge van Geldorp Date: Thu, 8 Sep 2005 11:02:38 +0000 Subject: [PATCH] Fix NdrServerContextMarshall prototype. --- dlls/rpcrt4/ndr_marshall.c | 4 ++-- include/rpcndr.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c index 55f62c778bd..62686dc2a2e 100644 --- a/dlls/rpcrt4/ndr_marshall.c +++ b/dlls/rpcrt4/ndr_marshall.c @@ -2684,9 +2684,9 @@ void WINAPI NdrClientContextUnmarshall(PMIDL_STUB_MESSAGE pStubMsg, void WINAPI NdrServerContextMarshall(PMIDL_STUB_MESSAGE pStubMsg, 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) diff --git a/include/rpcndr.h b/include/rpcndr.h index 82dd0ebe884..08804913145 100644 --- a/include/rpcndr.h +++ b/include/rpcndr.h @@ -448,7 +448,7 @@ RPCRTAPI void RPC_ENTRY IN RPC_BINDING_HANDLE BindHandle ); 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 NdrServerContextUnmarshall( IN PMIDL_STUB_MESSAGE pStubMsg );