Commit c859e910 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Use only standard C types in rpchdr.h.

parent d45e12a9
...@@ -97,7 +97,7 @@ typedef unsigned char _wine_boolean; ...@@ -97,7 +97,7 @@ typedef unsigned char _wine_boolean;
/* typedef _wine_boolean boolean; */ /* typedef _wine_boolean boolean; */
#define __RPC_CALLEE WINAPI #define __RPC_CALLEE WINAPI
#define RPC_VAR_ENTRY WINAPIV #define RPC_VAR_ENTRY __cdecl
#define NDR_SHAREABLE static #define NDR_SHAREABLE static
#define MIDL_ascii_strlen(s) strlen(s) #define MIDL_ascii_strlen(s) strlen(s)
...@@ -472,9 +472,9 @@ RPCRTAPI void RPC_ENTRY ...@@ -472,9 +472,9 @@ RPCRTAPI void RPC_ENTRY
NdrServerCall( PRPC_MESSAGE pRpcMsg ); NdrServerCall( PRPC_MESSAGE pRpcMsg );
RPCRTAPI long RPC_ENTRY 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 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 RPCRTAPI void* RPC_ENTRY
NdrAllocate( PMIDL_STUB_MESSAGE pStubMsg, size_t Len ); NdrAllocate( PMIDL_STUB_MESSAGE pStubMsg, size_t Len );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment