mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 02:04:34 +00:00
crypt32: Add CryptFormatObject stub.
This commit is contained in:
parent
0721dd254d
commit
9958987f18
@ -113,7 +113,7 @@
|
|||||||
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
|
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
|
||||||
@ stdcall CryptExportPublicKeyInfoEx(long long long str long ptr ptr ptr)
|
@ stdcall CryptExportPublicKeyInfoEx(long long long str long ptr ptr ptr)
|
||||||
@ stdcall CryptFindOIDInfo(long ptr long)
|
@ stdcall CryptFindOIDInfo(long ptr long)
|
||||||
@ stub CryptFormatObject
|
@ stdcall CryptFormatObject(long long long ptr str ptr long ptr ptr)
|
||||||
@ stdcall CryptFreeOIDFunctionAddress(long long)
|
@ stdcall CryptFreeOIDFunctionAddress(long long)
|
||||||
@ stub CryptGetAsyncParam
|
@ stub CryptGetAsyncParam
|
||||||
@ stdcall CryptGetDefaultOIDDllList(long long ptr ptr)
|
@ stdcall CryptGetDefaultOIDDllList(long long ptr ptr)
|
||||||
|
@ -367,6 +367,16 @@ BOOL WINAPI I_CryptUninstallAsn1Module(void *x)
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI CryptFormatObject(DWORD dwCertEncodingType, DWORD dwFormatType,
|
||||||
|
DWORD dwFormatStrType, void *pFormatStruct, LPCSTR lpszStructType,
|
||||||
|
const BYTE *pbEncoded, DWORD cbEncoded, void *pbFormat, DWORD *pcbFormat)
|
||||||
|
{
|
||||||
|
FIXME("(%08lx, %ld, %ld, %p, %s, %p, %ld, %p, %p): stub\n",
|
||||||
|
dwCertEncodingType, dwFormatType, dwFormatStrType, pFormatStruct,
|
||||||
|
debugstr_a(lpszStructType), pbEncoded, cbEncoded, pbFormat, pcbFormat);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void* pvObject,
|
BOOL WINAPI CryptQueryObject(DWORD dwObjectType, const void* pvObject,
|
||||||
DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags,
|
DWORD dwExpectedContentTypeFlags, DWORD dwExpectedFormatTypeFlags,
|
||||||
DWORD dwFlags, DWORD* pdwMsgAndCertEncodingType, DWORD* pdwContentType,
|
DWORD dwFlags, DWORD* pdwMsgAndCertEncodingType, DWORD* pdwContentType,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user