NWFSE_LAN_COMMON_COUNTERS_INFO

Returns information on LAN common counters. Used by NWGetLANCommonCountersInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint8                     statisticsMajorVersion ; 
     nuint8                     statisticsMinorVersion ; 
     nuint32                    numberOfGenericCounters ; 
     nuint32                    numberOfCounterBlocks ; 
     nuint32                    customVariableCount ; 
     nuint32                    NextCounterBlock ; 
     LAN_COMMON_INFO            LANCommonInfo ; 
  } NWFSE_LAN_COMMON_COUNTERS_INFO;
  

Delphi Structure

  uses calwin32 
   
   NWFSE_LAN_COMMON_COUNTERS_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      statisticsMajorVersion : nuint8;  
      statisticsMinorVersion : nuint8;  
      numberOfGenericCounters : nuint32;  
      numberOfCounterBlocks : nuint32;  
      customVariableCount : nuint32;  
      NextCounterBlock : nuint32;  
      LANCommonInfo : LAN_COMMON_INFO; 
    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.
statisticsMajorVersion
Specifies the major version number of the statistics table.
statisticsMinorVersion
Specifies the minor version number of the statistics table.
numberOfGenericCounters
Specifies the total number of LAN common counters.
numberOfCounterBlocks
Specifies the number of blocks used by LAN common counters by the LAN board.
customVariableCount
Specifies the number of custom counters for this LAN board.
NextCounterBlock
Specifies the value to be passed in block numbers to the NWGetLANCommonCountersInfo function.
LANCommonInfo
Points to the LAN_COMMON_INFO structure containing information about the LAN board.

Remarks

When 0 is returned in the NextCounterBlock field, all common counters have been returned.