PFN_CRYPT_ENUM_OID_INFO callback function (wincrypt.h)

The CRYPT_ENUM_OID_INFO callback function is used with the CryptEnumOIDInfo function.

Syntax

PFN_CRYPT_ENUM_OID_INFO PfnCryptEnumOidInfo;

BOOL PfnCryptEnumOidInfo(
  [in] PCCRYPT_OID_INFO pInfo,
  [in] void *pvArg
)
{...}

Parameters

[in] pInfo

A pointer to the OID information.

[in] pvArg

A pointer to arguments passed through to the callback function.

Return value

Returns TRUE to continue the enumeration and FALSE to stop the enumeration. If FALSE is returned, the CryptEnumOIDInfo enumeration is stopped.

Requirements

Requirement Value
Minimum supported client Windows XP [desktop apps only]
Minimum supported server Windows Server 2003 [desktop apps only]
Target Platform Windows
Header wincrypt.h

See also

CryptEnumOIDInfo