wintrust: Add stub for WTHelperGetKnownUsages.
This commit is contained in:
parent
9bc74e3ab6
commit
6e0f86596f
|
@ -79,7 +79,7 @@
|
|||
@ stub WTHelperGetAgencyInfo
|
||||
@ stdcall WTHelperGetFileHandle(ptr)
|
||||
@ stdcall WTHelperGetFileName(ptr)
|
||||
@ stub WTHelperGetKnownUsages
|
||||
@ stdcall WTHelperGetKnownUsages(long ptr)
|
||||
@ stdcall WTHelperGetProvCertFromChain(ptr long)
|
||||
@ stdcall WTHelperGetProvPrivateDataFromChain(ptr ptr)
|
||||
@ stdcall WTHelperGetProvSignerFromChain(ptr long long long)
|
||||
|
|
|
@ -735,6 +735,15 @@ HANDLE WINAPI WTHelperGetFileHandle(WINTRUST_DATA *data)
|
|||
return INVALID_HANDLE_VALUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* WTHelperGetKnownUsages(WINTRUST.@)
|
||||
*/
|
||||
BOOL WINAPI WTHelperGetKnownUsages(DWORD action, PCCRYPT_OID_INFO **usages)
|
||||
{
|
||||
FIXME("(%d, %p): stub\n", action, usages);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static const WCHAR Software_Publishing[] = {
|
||||
'S','o','f','t','w','a','r','e','\\',
|
||||
'M','i','c','r','o','s','o','f','t','\\',
|
||||
|
|
Loading…
Reference in New Issue