Returns a list of support module IDs (level 1 information) by NWGetSupportModuleInfo
typedef struct
{
nuint32 numberOfSMs ;
nuint32 SMIDs [MAX_NUM_OF_SM];
} SUPPORT_MODULE_IDS;
uses calwin32
SUPPORT_MODULE_IDS = packed Record
numberOfSMs : nuint32;
SMIDs : Array[0..MAX_NUM_OF_SM-1] Of nuint32
End;
Specifies the number of valid support module IDs returned by the Data Migrator.
Specifies the list of support module IDs.