NWFSE_VOLUME_SWITCH_INFO

Returns information about volume switches. Used by NWGetVolumeSwitchInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct { 
     SERVER_AND_VCONSOLE_INFO    serverTimeAndVConsoleInfo ; 
     nuint16                     reserved ; 
     nuint32                     totalLFSCounters ; 
     nuint32                     CurrentLFSCounters ; 
     nuint32                     LFSCounters [128]; 
  } NWFSE_VOLUME_SWITCH_INFO;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_VOLUME_SWITCH_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      totalLFSCounters : nuint32;  
      CurrentLFSCounters : nuint32;  
      LFSCounters : Array[0..127] Of nuint32; 
    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).
totalLFSCounters
Specifies the total number of FS counters.
CurrentLFSCounters
Specifies the current number of FS counters.
LFSCounters
Specifies the number of LFS counters.