NWFSE_SERVER_SET_CATEGORIES

Returns information about server set categories. Used by NWGetServerSetCategories.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo; 
     nuint16                    reserved ; 
     nuint32                    numberOfSetCategories ; 
     nuint32                    nextSequenceNumber ; 
     nuint8                     categoryName [512]; 
  } NWFSE_SERVER_SET_CATEGORIES; 
  

Delphi Structure

  uses calwin32 
   
    NWFSE_SERVER_SET_CATEGORIES = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      numberOfSetCategories : nuint32;  
      nextSequenceNumber : nuint32;  
      categoryName : 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.
numberOfSetCategories
Specifies the total number of set categories supported on the server.
nextSequenceNumber
Specifies the number to be used for startNum on subsequent calls.
categoryName
Specifies the null-terminated (not length-preceded) string describing the category.