xref: /reactos/dll/win32/msv1_0/usercontext.c (revision 9d3c3a75)
1 /*
2  * PROJECT:     Authentication Package DLL
3  * LICENSE:     GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4  * PURPOSE:     Manage user mode contexts (create, destroy, reference)
5  * COPYRIGHT:   Copyright 2019-2020 Andreas Maier (staubim@quantentunnel.de)
6  */
7 
8 #include "precomp.h"
9 
10 #include "wine/debug.h"
11 WINE_DEFAULT_DEBUG_CHANNEL(msv1_0);
12 
13 NTSTATUS
14 NTAPI
15 UsrSpInitUserModeContext(
16     _In_ LSA_SEC_HANDLE ContextHandle,
17     _In_ PSecBuffer PackedContext)
18 {
19     TRACE("UsrSpInitUserModeContext(%p %p)\n",
20           ContextHandle, PackedContext);
21     return STATUS_NOT_IMPLEMENTED;
22 }
23