summaryrefslogtreecommitdiffstats
path: root/private/inc/lsass.h
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/inc/lsass.h
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/inc/lsass.h')
-rw-r--r--private/inc/lsass.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/private/inc/lsass.h b/private/inc/lsass.h
new file mode 100644
index 000000000..ba5d85a8d
--- /dev/null
+++ b/private/inc/lsass.h
@@ -0,0 +1,51 @@
+/*++
+
+Copyright (c) 1987-1991 Microsoft Corporation
+
+Module Name:
+
+ lsass.h
+
+Abstract:
+
+ This is a common header file for all codes that go in lsass.exe (ie
+ in security process).
+
+Author:
+
+ Madan Appiah (madana) 23-Mar-1993
+
+Environment:
+
+ User mode only.
+ Contains NT-specific code.
+ Requires ANSI C extensions: slash-slash comments, long external names.
+
+Revision History:
+
+--*/
+
+#ifndef _LSASS_
+#define _LSASS_
+
+//
+// DON'T USE the following LARGE_INTEGER definitions. These definitions
+// are used only by few old RPC code for compatibilty reason.
+//
+
+typedef struct _OLD_LARGE_INTEGER {
+ ULONG LowPart;
+ LONG HighPart;
+} OLD_LARGE_INTEGER, *POLD_LARGE_INTEGER;
+
+#define OLD_TO_NEW_LARGE_INTEGER(Old, New) { \
+ (New).LowPart = (Old).LowPart; \
+ (New).HighPart = (Old).HighPart; \
+ }
+
+#define NEW_TO_OLD_LARGE_INTEGER(New, Old) { \
+ (Old).LowPart = (New).LowPart; \
+ (Old).HighPart = (New).HighPart; \
+ }
+
+#endif // _LSASS