NWFSE_NLM_LOADED_LIST

Returns a list of NLMs running on a server. Used by NWGetNLMLoadedList.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    numberNLMsLoaded ; 
     nuint32                    NLMsInList ; 
     nuint32                    NLMNums [FSE_NLM_NUMS_RETURNED_MAX]; 
  } NWFSE_NLM_LOADED_LIST;
  

Delphi Structure

  uses calwin32 
   
  NWFSE_NLM_LOADED_LIST = packed Record 
    serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
    reserved : nuint16;
    padding  : nuint16;  
    numberNLMsLoaded : nuint32;  
    NLMsInList : nuint32;  
    NLMNums : Array[0..FSE_NLM_NUMS_RETURNED_MAX-1] Of nuint32; 
  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.
numberNLMsLoaded
Specifies the total number of NLMs loaded on the server including hidden NLMs. No information will be returned about hidden NLMs.
NLMsInList
Specifies the number of valid NLM IDs returned in NLMNums. A valid NLM is an NLM whose information was placed in the buffer and does not include hidden NLMs.
NLMNums
A list containing the numbers assigned to NLMs loaded on the server.