rpcrt4: Constify some variables.
This commit is contained in:
parent
b7e420429d
commit
04e0986d60
@ -119,7 +119,7 @@ static inline UUID *LookupObjType(UUID *ObjUuid)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static RpcServerInterface* RPCRT4_find_interface(UUID* object,
|
static RpcServerInterface* RPCRT4_find_interface(UUID* object,
|
||||||
RPC_SYNTAX_IDENTIFIER* if_id,
|
const RPC_SYNTAX_IDENTIFIER* if_id,
|
||||||
BOOL check_object)
|
BOOL check_object)
|
||||||
{
|
{
|
||||||
UUID* MgrType = NULL;
|
UUID* MgrType = NULL;
|
||||||
|
@ -1475,7 +1475,7 @@ ULONG RpcAssoc_Release(RpcAssoc *assoc)
|
|||||||
|
|
||||||
#define ROUND_UP(value, alignment) (((value) + ((alignment) - 1)) & ~((alignment)-1))
|
#define ROUND_UP(value, alignment) (((value) + ((alignment) - 1)) & ~((alignment)-1))
|
||||||
|
|
||||||
static RPC_STATUS RpcAssoc_BindConnection(RpcAssoc *assoc, RpcConnection *conn,
|
static RPC_STATUS RpcAssoc_BindConnection(const RpcAssoc *assoc, RpcConnection *conn,
|
||||||
const RPC_SYNTAX_IDENTIFIER *InterfaceId,
|
const RPC_SYNTAX_IDENTIFIER *InterfaceId,
|
||||||
const RPC_SYNTAX_IDENTIFIER *TransferSyntax)
|
const RPC_SYNTAX_IDENTIFIER *TransferSyntax)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user