NWFSE_PROTOCOL_STK_CONFIG_INFO

Returns information about the protocol stack configuration. Used by NWGetProtocolStackConfigInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint8                     configMajorVersionNum ; 
     nuint8                     configMinorVersionNum ; 
     nuint8                     stackMajorVersionNum ; 
     nuint8                     stackMinorVersionNum ; 
     nuint8                     stackShortName [16]; 
  } NWFSE_PROTOCOL_STK_CONFIG_INFO;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_PROTOCOL_STK_CONFIG_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      configMajorVersionNum : nuint8;  
      configMinorVersionNum : nuint8;  
      stackMajorVersionNum : nuint8;  
      stackMinorVersionNum : nuint8;  
      stackShortName : Array[0..15] Of nuint8; 
    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.
configMajorVersionNum
Specifies the major version number of the configuration table.
configMinorVersionNum
Specifies the minor version number of the configuration table.
stackMajorVersionNum
Specifies the major version number of the protocol stack.
stackMinorVersionNum
Specifies the minor version number of the protocol stack.
stackShortName
Specifies the short protocol name; name used to register the stack with the LSL. The first byte is the length of the string followed by the string itself. It is not a null-terminated string.