sspicli: Implement SspiLocalFree.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
30d2813829
commit
1ec8dd7556
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue