Stub for the CryptRegisterOIDFunction function.
This commit is contained in:
parent
ebf582cd48
commit
0ee7073d4e
|
@ -132,7 +132,7 @@
|
||||||
@ stub CryptMsgSignCTL
|
@ stub CryptMsgSignCTL
|
||||||
@ stub CryptMsgUpdate
|
@ stub CryptMsgUpdate
|
||||||
@ stub CryptMsgVerifyCountersignatureEncoded
|
@ stub CryptMsgVerifyCountersignatureEncoded
|
||||||
@ stub CryptRegisterDefaultOIDFunction
|
@ stdcall CryptRegisterDefaultOIDFunction(long str long wstr) CryptRegisterDefaultOIDFunction
|
||||||
@ stdcall CryptRegisterOIDFunction(long str str wstr str) CryptRegisterOIDFunction
|
@ stdcall CryptRegisterOIDFunction(long str str wstr str) CryptRegisterOIDFunction
|
||||||
@ stub CryptRegisterOIDInfo
|
@ stub CryptRegisterOIDInfo
|
||||||
@ stdcall CryptSIPAddProvider(ptr) CryptSIPAddProvider
|
@ stdcall CryptSIPAddProvider(ptr) CryptSIPAddProvider
|
||||||
|
|
|
@ -86,6 +86,15 @@ BOOL WINAPI CryptGetOIDFunctionValue(DWORD dwEncodingType, LPCSTR pszFuncName,
|
||||||
return FALSE;
|
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,
|
BOOL WINAPI CryptRegisterOIDFunction(DWORD dwEncodingType, LPCSTR pszFuncName,
|
||||||
LPCSTR pszOID, LPCWSTR pwszDll, LPCSTR pszOverrideFuncName)
|
LPCSTR pszOID, LPCWSTR pwszDll, LPCSTR pszOverrideFuncName)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue