SUPPORT_MODULE_INFO

Returns (level 0) support module information by NWGetSupportModuleInfo

Service:Data Migration
Defined In:nwmigrat.h

Structure

   typedef struct 
   { 
      nuint32   IOStatus ; 
      nuint32   InfoBlockSize ; 
      nuint32   AvailSpace ; 
      nuint32   UsedSpace ; 
      nuint8    SMInfo [MAX_SIZE_OF_SM_STRING + MAX_SIZE_OF_SM_INFO]; 
   } SUPPORT_MODULE_INFO;
   

Delphi Structure

   uses calwin32 
    
   SUPPORT_MODULE_INFO = packed Record 
       IOStatus : nuint32; 
       InfoBlockSize : nuint32; 
       AvailSpace : nuint32; 
       UsedSpace : nuint32; (*A length preceded string is followed by SMInfo data*) 
       SMInfo : Array[0..MAX_SIZE_OF_SM_STRING + MAX_SIZE_OF_SM_INFO - 1] Of nuint8 
     End;
   

Fields

IOStatus

Specifies the IO read and write access status of the associated storage device .

InfoBlockSize

Specifies the information block size on the associated storage device.

AvailSpace

Specifies the amount of space available on the associated storage device.

UsedSpace

Specifies the amount of used space on the associated storage device. This length-preceded string is followed by SMInfo data.

SMInfo

Specifies the support-module specific data in the form of a length-preceded string.