home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / rpcnsip.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  1KB  |  93 lines

  1. /*++
  2.  
  3. Copyright (c) 1992-1999 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*/
  18. #define __RPCNSIP_H__
  19.  
  20. #if _MSC_VER > 1000
  21. #pragma once
  22. #endif
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. typedef struct
  29. {
  30.    RPC_NS_HANDLE        LookupContext;
  31.    RPC_BINDING_HANDLE   ProposedHandle;
  32.    RPC_BINDING_VECTOR * Bindings;
  33.  
  34. } RPC_IMPORT_CONTEXT_P, * PRPC_IMPORT_CONTEXT_P;
  35.  
  36.  
  37. /* Stub Auto Binding routines. */
  38.  
  39. RPCNSAPI
  40. RPC_STATUS
  41. RPC_ENTRY
  42. I_RpcNsGetBuffer(
  43.     IN PRPC_MESSAGE Message
  44.     );
  45.  
  46. RPCNSAPI
  47. RPC_STATUS
  48. RPC_ENTRY
  49. I_RpcNsSendReceive(
  50.     IN PRPC_MESSAGE Message,
  51.     OUT RPC_BINDING_HANDLE __RPC_FAR * Handle
  52.     );
  53.  
  54. RPCNSAPI
  55. void
  56. RPC_ENTRY
  57. I_RpcNsRaiseException(
  58.     IN PRPC_MESSAGE Message,
  59.     IN RPC_STATUS Status
  60.     );
  61.  
  62. RPCNSAPI
  63. RPC_STATUS
  64. RPC_ENTRY
  65. I_RpcReBindBuffer(
  66.     IN PRPC_MESSAGE Message
  67.     );
  68.  
  69. RPCNSAPI
  70. RPC_STATUS
  71. RPC_ENTRY
  72. I_NsServerBindSearch(
  73.     );
  74.  
  75. RPCNSAPI
  76. RPC_STATUS
  77. RPC_ENTRY
  78. I_NsClientBindSearch(
  79.     );
  80.  
  81. RPCNSAPI
  82. void
  83. RPC_ENTRY
  84. I_NsClientBindDone(
  85.     );
  86.  
  87. #ifdef __cplusplus
  88. }
  89. #endif
  90.  
  91. #pragma option pop /*P_O_Pop*/
  92. #endif /* __RPCNSIP_H__ */
  93.