NWFSE_ACTIVE_LAN_BOARD_LIST
Returns a list of active LAN boards in the server. Used by NWGetActiveLANBoardList.
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;
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;