NWFSE_CACHE_INFO

Returns Server Environment cache information. Used by NWGetCacheInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo; 
     nuint16                    reserved ; 
     CACHE_COUNTERS             cacheCounters ; 
     CACHE_MEM_COUNTERS         cacheMemCounters ; 
     CACHE_TREND_COUNTERS       cacheTrendCounters ; 
     CACHE_INFO                 cacheInformation ; 
  } NWFSE_CACHE_INFO;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_CACHE_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      cacheCounters : CACHE_COUNTERS;  
      cacheMemCounters : CACHE_MEM_COUNTERS;  
      cacheTrendCounters : CACHE_TREND_COUNTERS;  
      cacheInformation : CACHE_INFO; 
    End; 
  

Fields

serverTimeAndVConsoleInfo
Points to SERVER_AND_VCONSOLE_INFO.
reserved
Is reserved for future use.
cacheCounters
Points to CACHE_COUNTERS.
cacheMemCounters
Points to CACHE_MEM_COUNTERS.
cacheTrendCounters
Points to CACHE_TREND_COUNTERS.
cacheInformation
Points to CACHE_INFO.