home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 May / PCP163A.iso / Runimage / Cbuilder4 / Include / RPCNSIP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-26  |  1.3 KB  |  78 lines

  1. /*++
  2.  
  3. Copyright (c) 1992-1996 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     rpcnsip.h
  8.  
  9. Abstract:
  10.  
  11.     This file contains the types and function definitions to use the
  12.     to implement the autohandle features of the runtime.
  13.  
  14. --*/
  15.  
  16. #ifndef __RPCNSIP_H__
  17. #pragma option push -b -a8 -pc -A- /*P_O_Push_S*/
  18. #define __RPCNSIP_H__
  19. #pragma option push -b
  20.  
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26. typedef struct
  27. {
  28.    RPC_NS_HANDLE        LookupContext;
  29.    RPC_BINDING_HANDLE   ProposedHandle;
  30.    RPC_BINDING_VECTOR * Bindings;
  31.  
  32. } RPC_IMPORT_CONTEXT_P, * PRPC_IMPORT_CONTEXT_P;
  33.  
  34.  
  35. /* Stub Auto Binding routines. */
  36.  
  37. RPC_STATUS RPC_ENTRY
  38. I_RpcNsGetBuffer(
  39.     IN PRPC_MESSAGE Message
  40.     );
  41.  
  42. RPC_STATUS RPC_ENTRY
  43. I_RpcNsSendReceive(
  44.     IN PRPC_MESSAGE Message,
  45.     OUT RPC_BINDING_HANDLE __RPC_FAR * Handle
  46.     );
  47.  
  48. void RPC_ENTRY
  49. I_RpcNsRaiseException(
  50.     IN PRPC_MESSAGE Message,
  51.     IN RPC_STATUS Status
  52.     );
  53.  
  54. RPC_STATUS RPC_ENTRY
  55. I_RpcReBindBuffer(
  56.     IN PRPC_MESSAGE Message
  57.     );
  58.  
  59. RPC_STATUS RPC_ENTRY
  60. I_NsServerBindSearch(
  61.     );
  62.  
  63. RPC_STATUS RPC_ENTRY
  64. I_NsClientBindSearch(
  65.     );
  66.  
  67. void RPC_ENTRY
  68. I_NsClientBindDone(
  69.     );
  70.  
  71. #ifdef __cplusplus
  72. }
  73. #endif
  74.  
  75. #pragma option pop
  76. #pragma option pop /*P_O_Pop*/
  77. #endif /* __RPCNSIP_H__ */
  78.