NWFSE_NLMS_RESOURCE_TAG_LIST

Returns the NLM’s resource tag list. Used by NWGetNLMsResourceTagList.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    totalNumOfResourceTags ; 
     nuint32                    packetResourceTags ; 
     nuint8                     resourceTagBuf [512]; 
  } NWFSE_NLMS_RESOURCE_TAG_LIST;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_NLMS_RESOURCE_TAG_LIST = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      totalNumOfResourceTags : nuint32;  
      packetResourceTags : nuint32;  
      resourceTagBuf : Array[0..511] 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.
totalNumOfResourceTags
Specifies the total number of resource tags the NLM is using.
packetResourceTags
Specifies the number of resource tags the structure contains.
resourceTagBuf
Contains the resourceTagBuf structure.