WWAN_TAI_LIST_SINGLE_PLMN structure (wwan.h)

The WWAN_TAI_LIST structure represents a list of Tracking Area Codes (TACs) that belong to a single PLMN (the Mobile Country Code (MCC) and Mobile Network Code (MNC)). The TAC values can be consecutive or nonconsecutive.

Syntax

typedef struct _WWAN_TAI_LIST_SINGLE_PLMN {
  WWAN_PLMN Plmn;
  UINT32    ElementCount;
  UINT32    Tacs[ANYSIZE_ARRAY];
} WWAN_TAI_LIST_SINGLE_PLMN, *PWWAN_TAI_LIST_SINGLE_PLMN;

Members

Plmn

A WWAN_PLMN structure that represents the PLMN.

ElementCount

The number of elements in the TAC list.

Tacs[ANYSIZE_ARRAY]

The TAC list. The ElementCount field specifies the number of elements.

Requirements

Requirement Value
Minimum supported client Windows 11, version 22H2
Header wwan.h

See also

WWAN_PLMN

WWAN_TAI_LIST_MULTI_PLMN