VOLUME_SEGMENT

Returns information about the segments in a volume.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint32   volumeSegmentDeviceNum ; 
     nuint32   volumeSegmentOffset ; 
     nuint32   volumeSegmentSize ; 
  } VOLUME_SEGMENT; 
  

Delphi Structure

  uses calwin32 
   
    VOLUME_SEGMENT = packed Record 
      volumeSegmentDeviceNum : nuint32;  
      volumeSegmentOffset : nuint32;  
      volumeSegmentSize : nuint32; 
    End; 
  

Fields

volumeSegmentDeviceNum
Specifies the device the segment is located on.
volumeSegmentOffset
Specifies the offset of the segment in bytes.
volumeSegmentSize
Specifies the segment size in bytes.