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.

38 lines
643 B

  1. /*****************************************************************/
  2. /** Microsoft Windows for Workgroups **/
  3. /** Copyright (C) Microsoft Corp., 1991-1992 **/
  4. /*****************************************************************/
  5. /*
  6. cache.h
  7. Memory based Password caching support prototypes.
  8. FILE HISTORY:
  9. davidar 12/30/93 Created
  10. */
  11. void
  12. CacheInitializeCache(
  13. );
  14. BOOL
  15. CacheGetPassword(
  16. PSSP_CREDENTIAL Credential
  17. );
  18. BOOL
  19. CacheSetPassword(
  20. PSSP_CREDENTIAL Credential
  21. );
  22. #ifndef WIN
  23. SECURITY_STATUS
  24. CacheSetCredentials(
  25. IN PVOID AuthData,
  26. PSSP_CREDENTIAL Credential
  27. );
  28. #endif