summaryrefslogtreecommitdiffstats
path: root/private/inc/lsass.h
blob: ba5d85a8d6ec9f5322f6f027189322de68105183 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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