NWFSE_IPXSPX_INFO

Returns information about IPX/SPX use on a server. Used by NWGetIPXSPXInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     IPX_INFO                   IPXInfo ; 
     SPX_INFO                   SPXInfo ; 
  } NWFSE_IPXSPX_INFO;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_IPXSPX_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      IPXInfo : IPX_INFO;  
      SPXInfo : SPX_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
Reserved for future use.
IPXInfo
Contains a IPX_INFO structure. This structure is defined in NWSERVST.H.
SPXInfo
Contains a SPX_INFOstructure. This structure is defined in NWSERVST.H.