175f01bc17
* include/ntsecapi.h: Fixed missing void parameter type in some prototypes. * include/objbase.h: Ditto. * include/rapi.h: Ditto. * include/rpc.h: Ditto. * include/rpcdce.h: Ditto. * include/rpcdcep.h: Ditto. * include/rpcndr.h: Ditto. * include/rpcnsip.h: Ditto. * include/rpcproxy.h: Ditto. * include/windef.h: Ditto.
22 lines
676 B
C
22 lines
676 B
C
#ifndef _RPCNSIP_H
|
|
#define _RPCNSIP_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
typedef struct {
|
|
RPC_NS_HANDLE LookupContext;
|
|
RPC_BINDING_HANDLE ProposedHandle;
|
|
RPC_BINDING_VECTOR *Bindings;
|
|
} RPC_IMPORT_CONTEXT_P,*PRPC_IMPORT_CONTEXT_P;
|
|
RPC_STATUS RPC_ENTRY I_RpcNsGetBuffer(IN PRPC_MESSAGE);
|
|
RPC_STATUS RPC_ENTRY I_RpcNsSendReceive(IN PRPC_MESSAGE,OUT RPC_BINDING_HANDLE*);
|
|
void RPC_ENTRY I_RpcNsRaiseException(IN PRPC_MESSAGE,IN RPC_STATUS);
|
|
RPC_STATUS RPC_ENTRY I_RpcReBindBuffer(IN PRPC_MESSAGE);
|
|
RPC_STATUS RPC_ENTRY I_NsServerBindSearch(void);
|
|
RPC_STATUS RPC_ENTRY I_NsClientBindSearch(void);
|
|
void RPC_ENTRY I_NsClientBindDone(void);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|