mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
Added stubs for CryptInitOIDFunctionSet and
CryptUnregisterDefaultOIDFunction.
This commit is contained in:
parent
c16e70587a
commit
443910ba27
@ -3142,3 +3142,16 @@ BOOL WINAPI CryptHashCertificate(HCRYPTPROV hCryptProv, ALG_ID Algid,
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
HCRYPTOIDFUNCSET WINAPI CryptInitOIDFunctionSet(LPCSTR pszFuncName, DWORD dwFlags)
|
||||
{
|
||||
FIXME("stub: %s %lx\n", debugstr_a(pszFuncName), dwFlags);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
BOOL WINAPI CryptUnregisterDefaultOIDFunction(DWORD dwEncodingType,
|
||||
LPCSTR pszFuncName, LPCWSTR pwszDll)
|
||||
{
|
||||
FIXME("stub: %lx %s %s\n", dwEncodingType, debugstr_a(pszFuncName), debugstr_w(pwszDll));
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -117,7 +117,7 @@
|
||||
@ stub CryptImportPKCS8
|
||||
@ stub CryptImportPublicKeyInfo
|
||||
@ stub CryptImportPublicKeyInfoEx
|
||||
@ stub CryptInitOIDFunctionSet
|
||||
@ stdcall CryptInitOIDFunctionSet(str long)
|
||||
@ stub CryptInstallOIDFunctionAddress
|
||||
@ stub CryptLoadSip
|
||||
@ stub CryptMemAlloc
|
||||
@ -154,7 +154,7 @@
|
||||
@ stub CryptSignMessage
|
||||
@ stub CryptSignMessageWithKey
|
||||
@ stdcall CryptUnprotectData(ptr ptr ptr ptr ptr long ptr)
|
||||
@ stub CryptUnregisterDefaultOIDFunction
|
||||
@ stdcall CryptUnregisterDefaultOIDFunction(long str wstr)
|
||||
@ stdcall CryptUnregisterOIDFunction(long str str)
|
||||
@ stub CryptUnregisterOIDInfo
|
||||
@ stub CryptVerifyCertificateSignature
|
||||
|
Loading…
Reference in New Issue
Block a user