dlls/rpcrt4/ndr_marshall.c

Ge van Geldorp gvg at reactos.com
Wed Sep 7 15:42:56 CDT 2005


Changelog:
  Ge van Geldorp <gvg at reactos.com>
  - Fix prototype (to match PSDK)

Index: include/rpcndr.h
===================================================================
RCS file: /home/wine/wine/include/rpcndr.h,v
retrieving revision 1.29
diff -u -r1.29 rpcndr.h
--- include/rpcndr.h	3 Aug 2005 14:55:57 -0000	1.29
+++ include/rpcndr.h	7 Sep 2005 20:40:17 -0000
@@ -448,7 +448,7 @@
                               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 );
Index: dlls/rpcrt4/ndr_marshall.c
===================================================================
RCS file: /home/wine/wine/dlls/rpcrt4/ndr_marshall.c,v
retrieving revision 1.28
diff -u -r1.28 ndr_marshall.c
--- dlls/rpcrt4/ndr_marshall.c	2 Sep 2005 11:19:26 -0000	1.28
+++ dlls/rpcrt4/ndr_marshall.c	7 Sep 2005 20:40:18 -0000
@@ -2684,9 +2684,9 @@
 
 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)



More information about the wine-patches mailing list