mssign32: Implement SignerFreeSignerContext.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46903
Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Gijs Vermeulen 2019-04-04 02:55:43 +02:00 committed by Alexandre Julliard
parent ec814c1074
commit e71bb692f3
2 changed files with 8 additions and 1 deletions

View File

@ -22,7 +22,7 @@
@ stub SignerAddTimeStampResponse
@ stub SignerAddTimeStampResponseEx
@ stub SignerCreateTimeStampRequest
@ stub SignerFreeSignerContext
@ stdcall SignerFreeSignerContext(ptr)
@ stub SignerSign
@ stdcall SignerSignEx(long ptr ptr ptr ptr wstr ptr ptr ptr)
@ stub SignerTimeStamp

View File

@ -27,6 +27,7 @@
#include "wincrypt.h"
#include "wine/debug.h"
#include "wine/heap.h"
#include "mssign32_private.h"
@ -84,3 +85,9 @@ HRESULT WINAPI SignerSignEx(DWORD flags, SIGNER_SUBJECT_INFO *subject_info, SIGN
wine_dbgstr_w(http_time_stamp), request, sip_data, signer_cert);
return E_NOTIMPL;
}
HRESULT WINAPI SignerFreeSignerContext(SIGNER_CONTEXT *signer_context)
{
heap_free(signer_context);
return S_OK;
}