Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.2 KiB

  1. /*---------------------------------------------------------------------------
  2. File: AgentRpcUtil.h
  3. Comments: Functions to establish binding to DCT Agent service.
  4. These functions are used by the dispatcher, and the agent monitor
  5. to bind to the agent service on remote machines.
  6. (c) Copyright 1999, Mission Critical Software, Inc., All Rights Reserved
  7. Proprietary and confidential to Mission Critical Software, Inc.
  8. REVISION LOG ENTRY
  9. Revision By: Christy Boles
  10. Revised on 02/15/99 11:23:57
  11. ---------------------------------------------------------------------------
  12. */
  13. // Create RPC binding for connection with DCT Agent
  14. DWORD // ret-OS return code
  15. EaxBindCreate(
  16. TCHAR const * sComputer ,// in -computer name
  17. handle_t * phBinding ,// out-binding handle
  18. TCHAR ** psBinding ,// out-binding string
  19. BOOL bAuthn // in -authentication option
  20. );
  21. DWORD // ret-OS return code
  22. EaxBindDestroy(
  23. handle_t * phBinding ,// i/o-binding handle
  24. TCHAR ** psBinding // i/o-binding string
  25. );