NWFSE_MLID_BOARD_INFO

Contains a list of each Multiple Link Interface Driver (MLID) on a specified server. Used by NWGetMLIDBoardInfo.

Service:Server Environment
Defined In:nwfse.h

Syntax

  typedef struct { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo; 
     nuint8                     reserved; 
     nuint8                     numberProtocols; 
     MLID_BOARD_INFO            MLIDBoardInfo[FSE_MAX_NUM_BOARD_INFO]; 
  } NWFSE_MLID_BOARD_INFO;
  

Delphi Syntax

  CONST FSE_MAX_NUM_BOARD_INFO = 18;
  
  uses calwin32 
  
    NWFSE_MLID_BOARD_INFO = packed Record
       serverTimeAndVConsoleInfo :SERVER_AND_VCONSOLE_INFO;
       reserved : nuint8;
       numberProtocols :nuint8;
       LIDBoardInfo : Array[0..(FSE_MAX_NUM_BOARD_INFO-1)] of
                      MLID_BOARD_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.
reserved
Is reserved for future use.
numberProtocols
Specifies the number of protocols bound to the specified board.
MLIDBoardInfo
Points to MLID_BOARD_INFO, which contains information about each MLID.