EAP_CONFIG_INPUT_FIELD_ARRAY structure (eaptypes.h)

The EAP_CONFIG_INPUT_FIELD_ARRAY structure contains a set of EAP_CONFIG_INPUT_FIELD_DATA structures that collectively contain the user input field data obtained from the user.

Syntax

typedef struct _EAP_CONFIG_INPUT_FIELD_ARRAY {
  DWORD                       dwVersion;
  DWORD                       dwNumberOfFields;
#if ...
  EAP_CONFIG_INPUT_FIELD_DATA *pFields;
#else
  EAP_CONFIG_INPUT_FIELD_DATA *pFields;
#endif
} EAP_CONFIG_INPUT_FIELD_ARRAY, *PEAP_CONFIG_INPUT_FIELD_ARRAY;

Members

dwVersion

The version of the EAP_CONFIG_INPUT_FIELD_DATA structures pointed to by pFields.

Value Meaning
EAP_CREDENTIAL_VERSION
1
The version of the EAP credentials supplied by the user.

dwNumberOfFields

The total number of elements in the array specified by pFields.

pFields

Pointer to an array of EAP_CONFIG_INPUT_FIELD_DATA structures that contain specific user input data obtained from an EAP configuration dialog box.

Remarks

The EAP_CONFIG_INPUT_FIELD_ARRAY structure can be employed to support Single-Sign-On (SSO).

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header eaptypes.h

See also

EAP_CONFIG_INPUT_FIELD_DATA

SSO and PLAP