crypt32: Add CryptRegisterOIDInfo stub.
This commit is contained in:
parent
508270b533
commit
d9972cb4b4
|
@ -163,7 +163,7 @@
|
|||
@ stdcall CryptQueryObject(long ptr long long long ptr ptr ptr ptr ptr ptr)
|
||||
@ stdcall CryptRegisterDefaultOIDFunction(long str long wstr)
|
||||
@ stdcall CryptRegisterOIDFunction(long str str wstr str)
|
||||
@ stub CryptRegisterOIDInfo
|
||||
@ stdcall CryptRegisterOIDInfo(ptr long)
|
||||
@ stdcall CryptSIPAddProvider(ptr)
|
||||
@ stdcall CryptSIPCreateIndirectData(ptr ptr ptr)
|
||||
@ stdcall CryptSIPGetSignedDataMsg(ptr ptr long ptr ptr)
|
||||
|
|
|
@ -664,6 +664,16 @@ error_close_key:
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CryptRegisterOIDInfo (CRYPT32.@)
|
||||
*/
|
||||
BOOL WINAPI CryptRegisterOIDInfo(PCCRYPT_OID_INFO pInfo, DWORD dwFlags)
|
||||
{
|
||||
FIXME("(%p, %x): stub\n", pInfo, dwFlags );
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CryptUnregisterOIDFunction (CRYPT32.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue