NWFSE_LSL_LOGICAL_BOARD_STATS

Returns statistics concerning LSL boards. Used by NWGetLSLLogicalBoardStats.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved0 ; 
     nuint32                    LogTtlTxPackets ; 
     nuint32                    LogTtlRxPackets ; 
     nuint32                    LogUnclaimedPackets ; 
     nuint32                    reserved1 ; 
  } NWFSE_LSL_LOGICAL_BOARD_STATS; 
  

Delphi Structure

  uses calwin32 
   
    NWFSE_LSL_LOGICAL_BOARD_STATS = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved0 : nuint16;
      padding  : nuint16;  
      LogTtlTxPackets : nuint32;  
      LogTtlRxPackets : nuint32;  
      LogUnclaimedPackets : nuint32;  
      reserved1 : 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.
reserved0
Is reserved (pass zero).
LogTtlTxPackets
Specifies the total number of packets transmitted.
LogTtlRxPackets
Specifies the total number of packets received.
LogUnclaimedPackets
Specifies the total number of unclaimed packets.
reserved1
Is reserved (pass zero).