NWFSE_SERVER_SRC_INFO

Returns address information about servers known to a server with a given name. Used by NWGetServerSourcesInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo; 
     nuint16                    reserved ; 
     nuint32                    numberOfEntries ; 
     SERVERS_SRC_INFO           serverSrcInfo[42]; 
  } NWFSE_SERVER_SRC_INFO;
  

Delphi Structure

  uses calwin32 
   
   NWFSE_SERVER_SRC_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      numberOfEntries : nuint32;  
      serversSrcInfo : Array[0..41] Of SERVERS_SRC_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.
numberOfEntries
Specifies the number of SERVERS_SRC_INFOs that were returned byNWGetServerSourcesInfo .
serverSrcInfo
Specifies SERVERS_SRC_INFO.