kerberos: Add SpInstanceInit stub.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2018-01-25 11:33:11 +08:00 committed by Alexandre Julliard
parent 83ea13d6d7
commit ea9e8c54d6
1 changed files with 8 additions and 1 deletions

View File

@ -729,9 +729,16 @@ NTSTATUS NTAPI SpLsaModeInitialize(ULONG lsa_version, PULONG package_version,
return STATUS_SUCCESS;
}
static NTSTATUS NTAPI kerberos_SpInstanceInit(ULONG version, SECPKG_DLL_FUNCTIONS *dll_function_table, void **user_functions)
{
FIXME("%u,%p,%p: stub\n", version, dll_function_table, user_functions);
return STATUS_SUCCESS;
}
static SECPKG_USER_FUNCTION_TABLE kerberos_user_table =
{
NULL, /* SpInstanceInit */
kerberos_SpInstanceInit,
NULL, /* SpInitUserModeContext */
NULL, /* SpMakeSignature */
NULL, /* SpVerifySignature */