NWFSE_VOLUME_INFO_BY_LEVEL

Returns volume information when the information level is specified. Used by NWGetVolumeInfoByLevel.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    infoLevel ; 
     VOLUME_INFO_BY_LEVEL       volumeInfo ; 
  } NWFSE_VOLUME_INFO_BY_LEVEL; 
  

Delphi Structure

  uses calwin32 
   
    NWFSE_VOLUME_INFO_BY_LEVEL = packed Record 
      serverAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      infoLevel : nuint32;  
      volumeInfo : VOLUME_INFO_BY_LEVEL; 
    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 (pass zero).
infoLevel
Specifies the information level to be returned.

If this field is set to 1, the volInfoDef field of the VOLUME_INFO_BY_LEVEL structure will be used.

If this field is set to 2, the volInfoDef2 field of the VOLUME_INFO_BY_LEVEL structure will be used.

volumeInfo
Points to the VOLUME_INFO_BY_LEVEL structure containing the specified volume information.