Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This structure is used by the Microsoft Windows API and contains information about an entry in the Internet cache.

Code Block
languagehtml/xmlcpp
typedef struct _INTERNET_CACHE_ENTRY_INFO { 
    DWORD dwStructSize; 
    LPTSTR lpszSourceUrlName; 
    LPTSTR lpszLocalFileName; 
    DWORD CacheEntryType; 
    DWORD dwUseCount; 
    DWORD dwHitRate; 
    DWORD dwSizeLow; 
    DWORD dwSizeHigh; 
    FILETIME LastModifiedTime; 
    FILETIME ExpireTime; 
    FILETIME LastAccessTime; 
    FILETIME LastSyncTime; 
    LPBYTE lpHeaderInfo; 
    DWORD dwHeaderInfoSize; 
    LPTSTR lpszFileExtension; 
    union { 
      DWORD dwReserved; 
      DWORD dwExemptDelta; 
    }; 
} INTERNET_CACHE_ENTRY_INFO, *LPINTERNET_CACHE_ENTRY_INFO;

...