NWFSE_ACTIVE_LAN_BOARD_LIST

Returns a list of active LAN boards in the server. Used by NWGetActiveLANBoardList.

Service:Server Environment
Defined In:nwfserver.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo: 
     nuint16                    reserved ; 
     nuint32                    MaxNumOfLANs ; 
     nuint32                    LANLoadedCount ; 
     nuint32                    boardNums [FSE_MAX_NUM_OF_LANS]; 
  } NWFSE_ACTIVE_LAN_BOARD_LIST; 
  

Delphi Structure

  uses calwin32 
   
   NWFSE_ACTIVE_LAN_BOARD_LIST = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      MaxNumOfLANs : nuint32;  
      LANLoadedCount : nuint32;  
      boardNums : Array[0..FSE_MAX_NUM_OF_LANS-1] 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/18 of a second). When this parameter reaches 0xFFFFFFFF, it wraps to zero.
reserved
Reserved for future use.
MaxNumOfLANs
Specifies the maximum number of LAN boards that can be used on the server.
LANLoadedCount
contains the number of LAN boards returned by this call to SSGetActiveLANBoardList. To retrieve the rest of the board numbers, call this function again, using the total number of items returned by all previous calls to SSGetActiveLANBoardList plus 1 as startNumber.
boardNums
Contains the first LAN board number. The first number is followed by board numbers for each LAN board.