NWFSE_PROTOCOL_CUSTOM_INFO

Returns custom information about protocol stacks. Used by NWGetProtocolStackCustomInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved0 ; 
     nuint32                    customCount ; 
     nuint8                     customStruct [512]; 
  } NWFSE_PROTOCOL_CUSTOM_INFO;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_PROTOCOL_CUSTOM_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved0 : nuint16;
      padding  : nuint16;  
      customCount : nuint32;  
      customStruct : Array[0.. 512 -1] 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.
customCount
Contains the number of NWFSE_PROTOCOL_CUSTOM_INFO structures in the buffer.
customStruct
Specifies the structure with the DWORD value of the custom counter, followed by a length preceded string describing the custom counter.