Share

ACTC_TARGET_PRODUCT_INFO

C++

struct ACTC_TARGET_PRODUCT_INFO {
  ACHAR mszProductName[ACTC_MAX_PRODUCT_NAME];
  ACHAR mszLocaleIds[ACTC_MAX_LOCALE];
  DWORD mdwMinVersion;
  DWORD mdwMaxVersion;
};

File

AcTc.h

Members

Members Description
mszProductName Product name, or an empty string if not specified.
mszLocaleIds Locale IDs. May include multiple IDs separated by commas. Empty string if not specified.
mdwMinVersion Major version is in HIWORD. Minor version is in LOWORD. Zero if not specified.
mdwMaxVersion Major version is in HIWORD. Minor version is in LOWORD. Zero if not specified.

Description

This struct is used to define data needed by entries in an AcTcCatalogItem object's target product list.

Was this information helpful?