Stub for the CryptRegisterOIDFunction function.
This commit is contained in:
parent
ebf582cd48
commit
0ee7073d4e
|
@ -132,7 +132,7 @@
|
|||
@ stub CryptMsgSignCTL
|
||||
@ stub CryptMsgUpdate
|
||||
@ stub CryptMsgVerifyCountersignatureEncoded
|
||||
@ stub CryptRegisterDefaultOIDFunction
|
||||
@ stdcall CryptRegisterDefaultOIDFunction(long str long wstr) CryptRegisterDefaultOIDFunction
|
||||
@ stdcall CryptRegisterOIDFunction(long str str wstr str) CryptRegisterOIDFunction
|
||||
@ stub CryptRegisterOIDInfo
|
||||
@ stdcall CryptSIPAddProvider(ptr) CryptSIPAddProvider
|
||||
|
|
|
@ -86,6 +86,15 @@ BOOL WINAPI CryptGetOIDFunctionValue(DWORD dwEncodingType, LPCSTR pszFuncName,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI CryptRegisterDefaultOIDFunction(DWORD dwEncodingType,
|
||||
LPCSTR pszFuncName, DWORD dwIndex,
|
||||
LPCWSTR pwszDll)
|
||||
{
|
||||
FIXME("(%lx,%s,%lx,%s) stub!\n", dwEncodingType, pszFuncName, dwIndex,
|
||||
debugstr_w(pwszDll));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI CryptRegisterOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName,
|
||||
LPCSTR pszOID, LPCWSTR pwszDll, LPCSTR pszOverrideFuncName)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue