mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
23 lines
602 B
C
23 lines
602 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)
|
||
|
*/
|
||
|
|
||
|
#include "precomp.h"
|
||
|
|
||
|
#include "wine/debug.h"
|
||
|
WINE_DEFAULT_DEBUG_CHANNEL(msv1_0);
|
||
|
|
||
|
NTSTATUS
|
||
|
NTAPI
|
||
|
UsrSpInitUserModeContext(
|
||
|
_In_ LSA_SEC_HANDLE ContextHandle,
|
||
|
_In_ PSecBuffer PackedContext)
|
||
|
{
|
||
|
TRACE("UsrSpInitUserModeContext(%p %p)\n",
|
||
|
ContextHandle, PackedContext);
|
||
|
return STATUS_NOT_IMPLEMENTED;
|
||
|
}
|