Commit 30d28138 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

sspicli: Implement SspiFreeAuthIdentity.

parent 20ba0b08
......@@ -122,3 +122,12 @@ SECURITY_STATUS SEC_ENTRY SspiEncodeAuthIdentityAsStrings(
return SEC_E_OK;
}
/***********************************************************************
* SspiFreeAuthIdentity (SECUR32.0)
*/
void SEC_ENTRY SspiFreeAuthIdentity( PSEC_WINNT_AUTH_IDENTITY_OPAQUE opaque_id )
{
TRACE( "%p\n", opaque_id );
HeapFree( GetProcessHeap(), 0, opaque_id );
}
......@@ -88,7 +88,7 @@
@ stub SspiEncryptAuthIdentity
@ stub SspiEncryptAuthIdentityEx
@ stub SspiExcludePackage
@ stub SspiFreeAuthIdentity
@ stdcall SspiFreeAuthIdentity(ptr)
@ stub SspiGetComputerNameForSPN
@ stub SspiGetTargetHostName
@ stub SspiIsAuthIdentityEncrypted
......
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