ReactOS
0.4.16-dev-1165-g40721f4
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
global.h
Go to the documentation of this file.
1
/*
2
* PROJECT: Authentication Package DLL
3
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4
* PURPOSE: NTLM globals definitions (header)
5
* COPYRIGHT: Copyright 2011 Samuel Serapión
6
* Copyright 2020 Andreas Maier <staubim@quantentunnel.de>
7
*/
8
9
#pragma once
10
11
/* functions provided by LSA in SpInitialize */
12
extern
PLSA_SECPKG_FUNCTION_TABLE
LsaFunctions
;
13
/* functions we provide to LSA in SpLsaModeInitialize */
14
extern
SECPKG_FUNCTION_TABLE
NtlmLsaFn
[1];
15
/* functions provided by LSA in SpInstanceInit */
16
extern
PSECPKG_DLL_FUNCTIONS
UsrFunctions
;
17
/* functions we provide to LSA in SpUserModeInitialize */
18
extern
SECPKG_USER_FUNCTION_TABLE
NtlmUsrFn
[1];
19
20
extern
LSA_DISPATCH_TABLE
DispatchTable
;
21
22
typedef
enum
_NTLM_MODE
23
{
24
NtlmUnknownMode
= 0,
25
NtlmLsaMode
= 1,
26
NtlmUserMode
27
}
NTLM_MODE
, *
PNTLM_MODE
;
28
29
extern
NTLM_MODE
NtlmMode
;
NtlmUsrFn
SECPKG_USER_FUNCTION_TABLE NtlmUsrFn[1]
Definition:
global.c:57
NtlmMode
NTLM_MODE NtlmMode
Definition:
global.c:15
LsaFunctions
PLSA_SECPKG_FUNCTION_TABLE LsaFunctions
Definition:
global.c:19
NtlmLsaFn
SECPKG_FUNCTION_TABLE NtlmLsaFn[1]
Definition:
global.c:23
DispatchTable
LSA_DISPATCH_TABLE DispatchTable
Definition:
global.c:17
NTLM_MODE
enum _NTLM_MODE NTLM_MODE
UsrFunctions
PSECPKG_DLL_FUNCTIONS UsrFunctions
Definition:
global.c:56
PNTLM_MODE
enum _NTLM_MODE * PNTLM_MODE
_NTLM_MODE
_NTLM_MODE
Definition:
global.h:23
NtlmLsaMode
@ NtlmLsaMode
Definition:
global.h:25
NtlmUnknownMode
@ NtlmUnknownMode
Definition:
global.h:24
NtlmUserMode
@ NtlmUserMode
Definition:
global.h:26
LSA_DISPATCH_TABLE
Definition:
authpackage.c:54
_LSA_SECPKG_FUNCTION_TABLE
Definition:
ntsecpkg.h:308
_SECPKG_DLL_FUNCTIONS
Definition:
ntsecpkg.h:286
_SECPKG_FUNCTION_TABLE
Definition:
ntsecpkg.h:464
_SECPKG_USER_FUNCTION_TABLE
Definition:
ntsecpkg.h:512
dll
win32
msv1_0
ntlm
global.h
Generated on Thu May 22 2025 06:05:00 for ReactOS by
1.9.6