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.

71 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. msvars.c
  5. Abstract:
  6. This module contains variables used within the msv1_0 authentication
  7. package.
  8. Author:
  9. Jim Kelly (JimK) 11-Apr-1991
  10. Environment:
  11. User mode - msv1_0 authentication package DLL
  12. Revision History:
  13. Chandana Surlu 21-Jul-96 Stolen from \\kernel\razzle3\src\security\msv1_0\msvars.c
  14. --*/
  15. #include "msp.h"
  16. ////////////////////////////////////////////////////////////////////////
  17. // //
  18. // READ ONLY Variables //
  19. // //
  20. ////////////////////////////////////////////////////////////////////////
  21. //
  22. // msv1_0 private heap.
  23. //
  24. PVOID MspHeap;
  25. //
  26. // package ID assigned to msv1_0 by the LSA.
  27. //
  28. ULONG MspAuthenticationPackageId;
  29. //
  30. // dispatch table of (public) LSA service routines.
  31. //
  32. LSA_SECPKG_FUNCTION_TABLE Lsa;
  33. ////////////////////////////////////////////////////////////////////////
  34. // //
  35. // READ/WRITE Variables //
  36. // //
  37. ////////////////////////////////////////////////////////////////////////