wintrust: Add stub for WVTAsn1CatNameValueEncode.
This commit is contained in:
parent
a2b2a4cf79
commit
9033fa9ab2
|
@ -907,6 +907,15 @@ BOOL WINAPI WVTAsn1CatMemberInfoEncode(DWORD dwCertEncodingType,
|
|||
return ret;
|
||||
}
|
||||
|
||||
BOOL WINAPI WVTAsn1CatNameValueEncode(DWORD dwCertEncodingType,
|
||||
LPCSTR lpszStructType, const void *pvStructInfo, BYTE *pbEncoded,
|
||||
DWORD *pcbEncoded)
|
||||
{
|
||||
FIXME("(0x%08x, %s, %p, %p, %p): stub\n", dwCertEncodingType,
|
||||
debugstr_a(lpszStructType), pvStructInfo, pbEncoded, pcbEncoded);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* Gets the number of length bytes from the given (leading) length byte */
|
||||
#define GET_LEN_BYTES(b) ((b) <= 0x7f ? 1 : 1 + ((b) & 0x7f))
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
@ stdcall WVTAsn1CatMemberInfoDecode(long str ptr long long ptr ptr)
|
||||
@ stdcall WVTAsn1CatMemberInfoEncode(long str ptr ptr ptr)
|
||||
@ stub WVTAsn1CatNameValueDecode
|
||||
@ stub WVTAsn1CatNameValueEncode
|
||||
@ stdcall WVTAsn1CatNameValueEncode(long str ptr ptr ptr)
|
||||
@ stub WVTAsn1SpcFinancialCriteriaInfoDecode
|
||||
@ stub WVTAsn1SpcFinancialCriteriaInfoEncode
|
||||
@ stdcall WVTAsn1SpcIndirectDataContentDecode(long str ptr long long ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue