Leaked source code of windows server 2003
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.3 KiB

  1. /*---------------------------------------------------------------------------
  2. File: PwdRpcUtil.h
  3. Comments: Functions to establish binding to Password Migration Lsa
  4. Notifications packages. These functions are used by the password extension
  5. to bind to the password migration Lsa notification package on remote source
  6. domain DCs.
  7. This files was copied from AgRpcUtil.h, which was created by Christy Boles
  8. of NetIQ Corporation.
  9. REVISION LOG ENTRY
  10. Revision By: Paul Thompson
  11. Revised on 09/04/00
  12. ---------------------------------------------------------------------------
  13. */
  14. // Create RPC binding for connection with a remote Lsa notification package Dll
  15. DWORD // ret-OS return code
  16. PwdBindCreate(
  17. TCHAR const * sComputer ,// in -computer name
  18. handle_t * phBinding ,// out-binding handle
  19. TCHAR ** psBinding ,// out-binding string
  20. BOOL bAuthn // in -authentication option
  21. );
  22. DWORD // ret-OS return code
  23. PwdBindDestroy(
  24. handle_t * phBinding ,// i/o-binding handle
  25. TCHAR ** psBinding // i/o-binding string
  26. );