Skip to content
Snippets Groups Projects
Commit 0ee7073d authored by Christian Neumair's avatar Christian Neumair Committed by Alexandre Julliard
Browse files

Stub for the CryptRegisterOIDFunction function.

parent ebf582cd
No related branches found
Tags wine-960114
No related merge requests found
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment