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>
This commit is contained in:
parent
ec814c1074
commit
e71bb692f3
|
@ -22,7 +22,7 @@
|
||||||
@ stub SignerAddTimeStampResponse
|
@ stub SignerAddTimeStampResponse
|
||||||
@ stub SignerAddTimeStampResponseEx
|
@ stub SignerAddTimeStampResponseEx
|
||||||
@ stub SignerCreateTimeStampRequest
|
@ stub SignerCreateTimeStampRequest
|
||||||
@ stub SignerFreeSignerContext
|
@ stdcall SignerFreeSignerContext(ptr)
|
||||||
@ stub SignerSign
|
@ stub SignerSign
|
||||||
@ stdcall SignerSignEx(long ptr ptr ptr ptr wstr ptr ptr ptr)
|
@ stdcall SignerSignEx(long ptr ptr ptr ptr wstr ptr ptr ptr)
|
||||||
@ stub SignerTimeStamp
|
@ stub SignerTimeStamp
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include "wincrypt.h"
|
#include "wincrypt.h"
|
||||||
|
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
#include "wine/heap.h"
|
||||||
|
|
||||||
#include "mssign32_private.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);
|
wine_dbgstr_w(http_time_stamp), request, sip_data, signer_cert);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI SignerFreeSignerContext(SIGNER_CONTEXT *signer_context)
|
||||||
|
{
|
||||||
|
heap_free(signer_context);
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue