Commit ea9e8c54 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

kerberos: Add SpInstanceInit stub.

parent 83ea13d6
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment