CryptFindLocalizedName (Windows CE 5.0)

Send Feedback

This function finds the localized name for the specified name, such as the localized name of the "Root" system store. This function can be used before displaying any UI that includes a name that might have a localized form.

LPCWSTR WINAPI CryptFindLocalizedName(
  LPCWSTR pwszCryptName);

Parameters

  • pwszCryptName
    [in] A pointer to a specified name. An internal table is searched to compare a predefined localized name to the specified name. The search matches the localized name by using a case insensitive string comparison.

Note   Localized names for the predefined system stores ("Root", "My") and predefined physical stores (".Default", ".LocalMachine") are preinstalled as resource strings in Crypt32.dll.

Return Values

If the specified name is found, a pointer to the localized name is returned. The returned pointer must not be freed.

If the specified name is not found, NULL is returned.

Requirements

OS Versions: Windows CE 2.10 and later.
Header: Wincrypt.h.
Link Library: Coredll.lib.

See Also

Cryptography Functions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.