source: Daodan/MSYS2/mingw32/i686-w64-mingw32/include/rpcnsip.h@ 1181

Last change on this file since 1181 was 1166, checked in by rossy, 3 years ago

Daodan: Replace MinGW build env with an up-to-date MSYS2 env

File size: 1019 bytes
Line 
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
5 */
6#ifndef __RPCNSIP_H__
7#define __RPCNSIP_H__
8
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13 typedef struct {
14 RPC_NS_HANDLE LookupContext;
15 RPC_BINDING_HANDLE ProposedHandle;
16 RPC_BINDING_VECTOR *Bindings;
17 } RPC_IMPORT_CONTEXT_P,*PRPC_IMPORT_CONTEXT_P;
18
19 RPCNSAPI RPC_STATUS RPC_ENTRY I_RpcNsGetBuffer(PRPC_MESSAGE Message);
20 RPCNSAPI RPC_STATUS RPC_ENTRY I_RpcNsSendReceive(PRPC_MESSAGE Message,RPC_BINDING_HANDLE *Handle);
21 RPCNSAPI void RPC_ENTRY I_RpcNsRaiseException(PRPC_MESSAGE Message,RPC_STATUS Status);
22 RPCNSAPI RPC_STATUS RPC_ENTRY I_RpcReBindBuffer(PRPC_MESSAGE Message);
23 RPCNSAPI RPC_STATUS RPC_ENTRY I_NsServerBindSearch(void);
24 RPCNSAPI RPC_STATUS RPC_ENTRY I_NsClientBindSearch(void);
25 RPCNSAPI void RPC_ENTRY I_NsClientBindDone(void);
26
27#ifdef __cplusplus
28}
29#endif
30#endif
Note: See TracBrowser for help on using the repository browser.