crypt32: Stub implementation of CryptFindLocalizedName.
This commit is contained in:
parent
ebe83d561b
commit
e7c2e05f0f
|
@ -113,6 +113,7 @@
|
||||||
@ stub CryptExportPKCS8
|
@ stub CryptExportPKCS8
|
||||||
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
|
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
|
||||||
@ stdcall CryptExportPublicKeyInfoEx(long long long str long ptr ptr ptr)
|
@ stdcall CryptExportPublicKeyInfoEx(long long long str long ptr ptr ptr)
|
||||||
|
@ stdcall CryptFindLocalizedName(wstr)
|
||||||
@ stdcall CryptFindOIDInfo(long ptr long)
|
@ stdcall CryptFindOIDInfo(long ptr long)
|
||||||
@ stdcall CryptFormatObject(long long long ptr str ptr long ptr ptr)
|
@ stdcall CryptFormatObject(long long long ptr str ptr long ptr ptr)
|
||||||
@ stdcall CryptFreeOIDFunctionAddress(long long)
|
@ stdcall CryptFreeOIDFunctionAddress(long long)
|
||||||
|
|
|
@ -839,6 +839,15 @@ BOOL WINAPI CryptUnregisterDefaultOIDFunction(DWORD dwEncodingType,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/********************************************************************
|
||||||
|
* CryptFindLocalizedName (CRYPT32.@)
|
||||||
|
*/
|
||||||
|
LPCWSTR WINAPI CryptFindLocalizedName(LPCWSTR pwszCryptName)
|
||||||
|
{
|
||||||
|
FIXME(" %s - stub\n",debugstr_w(pwszCryptName));
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static CRITICAL_SECTION oidInfoCS;
|
static CRITICAL_SECTION oidInfoCS;
|
||||||
static struct list oidInfo;
|
static struct list oidInfo;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue