WCM_PROFILE_INFO_LIST structure (wcmapi.h)

The WCM_PROFILE_INFO_LIST structure contains a list of profiles in preferred order.

Syntax

typedef struct _WCM_PROFILE_INFO_LIST {
  DWORD            dwNumberOfItems;
#if ...
  WCM_PROFILE_INFO *ProfileInfo[];
#else
  WCM_PROFILE_INFO ProfileInfo[1];
#endif
} WCM_PROFILE_INFO_LIST, *PWCM_PROFILE_INFO_LIST;

Members

dwNumberOfItems

Type: DWORD

The number of profiles in the list.

ProfileInfo[*]

Type: WCM_PROFILE_INFO[1]

Information about each profile.

ProfileInfo[1]

Type: WCM_PROFILE_INFO[1]

Information about each profile.

Requirements

Requirement Value
Minimum supported client Windows 8 [desktop apps only]
Minimum supported server Windows Server 2012 [desktop apps only]
Header wcmapi.h

See also

WCM_PROFILE_INFO