Commit e71bb692 authored by Gijs Vermeulen's avatar Gijs Vermeulen Committed by Alexandre Julliard

mssign32: Implement SignerFreeSignerContext.

parent ec814c10
......@@ -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
......
......@@ -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;
}
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