WWAN_UICC_APP_LIST structure (wwan.h)

The WWAN_UICC_APP_LIST structure describes a list of applications in a UICC and information about them.

Syntax

typedef struct _WWAN_UICC_APP_LIST {
  ULONG Version;
  ULONG AppCount;
  ULONG ActiveAppIndex;
  ULONG AppListSize;
  BYTE  Response[ANYSIZE_ARRAY];
} WWAN_UICC_APP_LIST, *PWWAN_UICC_APP_LIST;

Members

Version

The version number of the structure that follows. In Windows 10, version 1903, this version must be set to 1.

AppCount

The number of UICC application WWAN_UICC_APP_INFO structures being returned in this response.

ActiveAppIndex

The index of the application selected by the modem for registration with the mobile network. This field must be between 0 and AppCount - 1. It indexes into the array of applications returned by this response. If no application is selected for registration, this field contains 0xFFFFFFFF.

AppListSize

The size of the app list data, in bytes.

Response[ANYSIZE_ARRAY]

An array of WWAN_UICC_APP_INFO structures that represent the UICC application list response. Cast this member to WWAN_UICC_APP_INFO when retrieving information about an application.

Remarks

This structure is used in the NDIS_WWAN_UICC_APP_LIST structure.

Requirements

Requirement Value
Minimum supported client Windows 10, version 1903
Header wwan.h

See also

MB UICC application and file system access

OID_WWAN_UICC_APP_LIST

NDIS_WWAN_UICC_APP_LIST