crypt32: Stub implementation of CryptFindLocalizedName.

This commit is contained in:
Mounir IDRASSI 2007-05-14 01:05:53 +02:00 committed by Alexandre Julliard
parent ebe83d561b
commit e7c2e05f0f
2 changed files with 10 additions and 0 deletions

View File

@ -113,6 +113,7 @@
@ stub CryptExportPKCS8
@ stdcall CryptExportPublicKeyInfo(long long long ptr ptr)
@ stdcall CryptExportPublicKeyInfoEx(long long long str long ptr ptr ptr)
@ stdcall CryptFindLocalizedName(wstr)
@ stdcall CryptFindOIDInfo(long ptr long)
@ stdcall CryptFormatObject(long long long ptr str ptr long ptr ptr)
@ stdcall CryptFreeOIDFunctionAddress(long long)

View File

@ -839,6 +839,15 @@ BOOL WINAPI CryptUnregisterDefaultOIDFunction(DWORD dwEncodingType,
return ret;
}
/********************************************************************
* CryptFindLocalizedName (CRYPT32.@)
*/
LPCWSTR WINAPI CryptFindLocalizedName(LPCWSTR pwszCryptName)
{
FIXME(" %s - stub\n",debugstr_w(pwszCryptName));
return NULL;
}
static CRITICAL_SECTION oidInfoCS;
static struct list oidInfo;