RPCRT4: use only standard C types in rpchdr.h

Mike McCormack mike at codeweavers.com
Fri Sep 3 07:10:48 CDT 2004


ChangeLog:
* use only standard C types in rpchdr.h
-------------- next part --------------
Index: include/rpcndr.h
===================================================================
RCS file: /home/wine/wine/include/rpcndr.h,v
retrieving revision 1.25
diff -u -r1.25 rpcndr.h
--- include/rpcndr.h	3 Sep 2004 01:03:29 -0000	1.25
+++ include/rpcndr.h	3 Sep 2004 10:36:27 -0000
@@ -97,7 +97,7 @@
 /* typedef _wine_boolean boolean; */
 
 #define __RPC_CALLEE WINAPI
-#define RPC_VAR_ENTRY WINAPIV
+#define RPC_VAR_ENTRY __cdecl
 #define NDR_SHAREABLE static
 
 #define MIDL_ascii_strlen(s) strlen(s)
@@ -472,9 +472,9 @@
   NdrServerCall( PRPC_MESSAGE pRpcMsg );
 
 RPCRTAPI long RPC_ENTRY
-  NdrStubCall2( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, LPDWORD pdwStubPhase );
+  NdrStubCall2( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, unsigned long * pdwStubPhase );
 RPCRTAPI long RPC_ENTRY
-  NdrStubCall( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, LPDWORD pdwStubPhase );
+  NdrStubCall( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, unsigned long * pdwStubPhase );
 
 RPCRTAPI void* RPC_ENTRY
   NdrAllocate( PMIDL_STUB_MESSAGE pStubMsg, size_t Len );


More information about the wine-patches mailing list