-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDisplayCache.h
49 lines (38 loc) · 1.02 KB
/
DisplayCache.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef __CDISPLAYCACHE_H__
#define __CDISPLAYCACHE_H__
#include <WinInet.h>
//////////////////////////////////////////////////////////////////////
// Classe : CDisplayCache
// Resume : Display Cache Entry
//////////////////////////////////////////////////////////////////////
class CDisplayCache
{
public:
bool m_bDisp_dwStructSize;
bool m_bDisp_lpszSourceUrlName;
bool m_bDisp_lpszLocalFileName;
bool m_bDisp_CacheEntryType;
bool m_bDisp_dwUseCount;
bool m_bDisp_dwHitRate;
bool m_bDisp_dwSizeLow;
bool m_bDisp_dwSizeHigh;
bool m_bDisp_LastModifiedTime;
bool m_bDisp_ExpireTime;
bool m_bDisp_LastAccessTime;
bool m_bDisp_LastSyncTime;;
bool m_bDisp_lpHeaderInfo;
bool m_bDisp_dwHeaderInfoSize;
bool m_bDisp_lpszFileExtension;
bool m_b_String;
bool m_b_Remove;
public:
CDisplayCache();
~CDisplayCache();
void DisplayCacheEntry(INTERNET_CACHE_ENTRY_INFO*);
public:
void DisplayCookies ();
void DisplayTemporary ();
void DisplayHistory ();
void DisplayAll ();
};
#endif