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.

57 lines
625 B

  1. /*
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. client.h
  5. Abstract:
  6. This module contains prototypes for client impersonation and Lsa support
  7. routines.
  8. Author:
  9. Jameel Hyder (microsoft!jameelh)
  10. Revision History:
  11. 08 Jul 1992 Initial Version
  12. Notes: Tab stop: 4
  13. --*/
  14. #ifndef _CLIENT_
  15. #define _CLIENT_
  16. extern
  17. VOID
  18. AfpImpersonateClient(
  19. IN PSDA pSda OPTIONAL
  20. );
  21. extern
  22. VOID
  23. AfpRevertBack(
  24. VOID
  25. );
  26. extern
  27. AFPSTATUS
  28. AfpLogonUser(
  29. IN PSDA pSda,
  30. IN PANSI_STRING UserPasswd
  31. );
  32. extern
  33. PBYTE
  34. AfpGetChallenge(
  35. IN VOID
  36. );
  37. #endif // _CLIENT_
  38.