summaryrefslogtreecommitdiffstats
path: root/private/lsa/msv1_0/msvars.c
diff options
context:
space:
mode:
Diffstat (limited to 'private/lsa/msv1_0/msvars.c')
-rw-r--r--private/lsa/msv1_0/msvars.c76
1 files changed, 76 insertions, 0 deletions
diff --git a/private/lsa/msv1_0/msvars.c b/private/lsa/msv1_0/msvars.c
new file mode 100644
index 000000000..d84e4e52d
--- /dev/null
+++ b/private/lsa/msv1_0/msvars.c
@@ -0,0 +1,76 @@
+/*++
+
+Copyright (c) 1989 Microsoft Corporation
+
+Module Name:
+
+ msvars.c
+
+Abstract:
+
+ This module contains variables used within the msv1_0 authentication
+ package.
+
+Author:
+
+ Jim Kelly (JimK) 11-Apr-1991
+
+Environment:
+
+ User mode - msv1_0 authentication package DLL
+
+Revision History:
+
+
+--*/
+
+#include "msp.h"
+
+
+
+////////////////////////////////////////////////////////////////////////
+// //
+// READ ONLY Variables //
+// //
+////////////////////////////////////////////////////////////////////////
+
+
+
+//
+// msv1_0 private heap.
+//
+
+PVOID MspHeap;
+
+
+//
+// package ID assigned to msv1_0 by the LSA.
+//
+
+ULONG MspAuthenticationPackageId;
+
+
+//
+// dispatch table of (public) LSA service routines.
+//
+
+LSA_DISPATCH_TABLE Lsa;
+
+
+//
+// dispatch table of (Private) LSA service routines.
+//
+
+LSAP_PRIVATE_LSA_SERVICES Lsap;
+
+
+
+////////////////////////////////////////////////////////////////////////
+// //
+// READ/WRITE Variables //
+// //
+////////////////////////////////////////////////////////////////////////
+
+
+
+