Commit 1ec8dd75 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

sspicli: Implement SspiLocalFree.

parent 30d28138
......@@ -131,3 +131,12 @@ void SEC_ENTRY SspiFreeAuthIdentity( PSEC_WINNT_AUTH_IDENTITY_OPAQUE opaque_id )
TRACE( "%p\n", opaque_id );
HeapFree( GetProcessHeap(), 0, opaque_id );
}
/***********************************************************************
* SspiLocalFree (SECUR32.0)
*/
void SEC_ENTRY SspiLocalFree( void *ptr )
{
TRACE( "%p\n", ptr );
HeapFree( GetProcessHeap(), 0, ptr );
}
......@@ -92,7 +92,7 @@
@ stub SspiGetComputerNameForSPN
@ stub SspiGetTargetHostName
@ stub SspiIsAuthIdentityEncrypted
@ stub SspiLocalFree
@ stdcall SspiLocalFree(ptr)
@ stub SspiMarshalAuthIdentity
@ stub SspiPrepareForCredRead
@ stub SspiPrepareForCredWrite
......
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