SUPPORT_MODULE_IDS

Returns a list of support module IDs (level 1 information) by NWGetSupportModuleInfo

Service:Data Migration
Defined In:nwmigrat.h

Structure

   typedef struct 
   { 
      nuint32   numberOfSMs ; 
      nuint32   SMIDs [MAX_NUM_OF_SM]; 
   } SUPPORT_MODULE_IDS;
   

Delphi Structure

   uses calwin32 
    
   SUPPORT_MODULE_IDS = packed Record 
      numberOfSMs : nuint32; 
      SMIDs : Array[0..MAX_NUM_OF_SM-1] Of nuint32 
   End;
   

Fields

numberOfSMs

Specifies the number of valid support module IDs returned by the Data Migrator.

SMIDs

Specifies the list of support module IDs.