From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/inc/lsass.h | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 private/inc/lsass.h (limited to 'private/inc/lsass.h') 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 -- cgit v1.2.3