NWFSE_NLM_INFO

Returns information about an NLM running on a server for the current connection. Used by NWGetNLMInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     NLM_INFO                   NLMInfo ; 
  } NWFSE_NLM_INFO;
  

Delphi Structure

  uses calwin32 
   
   NWFSE_NLM_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      NLMInfo : NLM_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.
NLMInfo
Contains an NLM_INFO structure.