mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
0901077f8c
This commit fixes a bug as well: old code of SpUserModeInitialze returns a pointer to a local variable (SECPKG_USER_FUNCTION_TABLE).
14 lines
407 B
C
14 lines
407 B
C
/*
|
|
* PROJECT: Authentication Package DLL
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: Manage user mode contexts (create, destroy, reference)
|
|
* COPYRIGHT: Copyright 2019-2020 Andreas Maier <staubim@quantentunnel.de>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
UsrSpInitUserModeContext(
|
|
_In_ LSA_SEC_HANDLE ContextHandle,
|
|
_In_ PSecBuffer PackedContext);
|