NWFSE_DIR_CACHE_INFO

Returns Directory cache information. Used by NWGetDirCacheInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     DIR_CACHE_INFO             dirCacheInfo ; 
  } NWFSE_DIR_CACHE_INFO;
  

Delphi Structure

  uses calwin32 
   
   NWFSE_DIR_CACHE_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      dirCacheInfo : DIR_CACHE_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/18 of a second). When this parameter reaches 0xFFFFFFFF, it wraps to zero.
reserved
Reserved for future use.
dirCacheInfo
Contains a DIR_CACHE_INFO structure.