NWFSE_VOLUME_SEGMENT_LIST

Returns the volume segment list. Used by NWGetVolumeSegmentList.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    numOfVolumeSegments ; 
     VOLUME_SEGMENT             volumeSegment [42]; 
  } NWFSE_VOLUME_SEGMENT_LIST; 
  

Delphi Structure

  uses calwin32 
   
    NWFSE_VOLUME_SEGMENT_LIST = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      numOfVolumeSegments : nuint32;       
      volumeSegment : Array[0..41] Of VOLUME_SEGMENT; 
    End; 
  

Fields

serverTimeAndVConsoleInfo
Specifies the SERVER_AND_VCONSOLE_INFO structure containing the time since the server was brought up. This time is returned in ticks (approximately 1/8 of a second). When this parameter reaches 0xFFFFFFFF, it wraps to zero.
reserved
Is reserved for future use.
numOfVolumeSegments
Specifies the number of volume segments on the volume.
volumeSegment
Specifies the volume information structures for all the volume segments on the volume. Only the number of structures will contain valid data.