Use only standard C types in rpchdr.h.
This commit is contained in:
parent
d45e12a966
commit
c859e91098
|
@ -97,7 +97,7 @@ typedef unsigned char _wine_boolean;
|
|||
/* 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 @@ RPCRTAPI void RPC_ENTRY
|
|||
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 );
|
||||
|
|
Loading…
Reference in New Issue