Edit

WEBAUTHN_AUTHENTICATOR_DETAILS_LIST structure (webauthn.h)

Contains a list of WEBAUTHN_AUTHENTICATOR_DETAILS structures returned by WebAuthNGetAuthenticatorList.

Syntax

typedef struct _WEBAUTHN_AUTHENTICATOR_DETAILS_LIST {
  DWORD                           cAuthenticatorDetails;
  PWEBAUTHN_AUTHENTICATOR_DETAILS *ppAuthenticatorDetails;
} WEBAUTHN_AUTHENTICATOR_DETAILS_LIST, *PWEBAUTHN_AUTHENTICATOR_DETAILS_LIST;

Members

cAuthenticatorDetails

The number of elements in the ppAuthenticatorDetails array.

ppAuthenticatorDetails

A pointer to an array of pointers to WEBAUTHN_AUTHENTICATOR_DETAILS structures.

Remarks

Free this structure by calling WebAuthNFreeAuthenticatorList.

Requirements

Requirement Value
Header webauthn.h

See also

WebAuthNGetAuthenticatorList

WebAuthNFreeAuthenticatorList

WEBAUTHN_AUTHENTICATOR_DETAILS