-
Notifications
You must be signed in to change notification settings - Fork 2
/
infcache.h
56 lines (49 loc) · 1.28 KB
/
infcache.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
50
51
52
53
54
55
56
//fileInfoキャッシュクラス
#ifndef infcache_h
#define infcache_h
#include <windows.h>
#include "critsect.h"
#include "entryFuncs.h"
typedef struct ArcInfo
{
HLOCAL hinfo; // fileInfo[]
char path[MAX_PATH]; // ファイルパス
} ArcInfo;
#define INFOCACHE_MAX 0x10
class InfoCache
{
public:
InfoCache();
~InfoCache();
void Clear(void); //キャッシュクリア
void Add(char *filepath, HLOCAL *ph); //キャッシュに追加。INFOCACHE_MAX を超えると古いのは消す。
//キャッシュにあればアーカイブ情報をコピー。
int Dupli(char *filepath, HLOCAL *ph, fileInfo *pinfo);
private:
CriticalSection cs;
ArcInfo arcinfo[INFOCACHE_MAX];
int nowno;
bool GetCache(char *filepath, HLOCAL *ph);
};
// ワイド文字版
typedef struct ArcInfoW
{
HLOCAL hinfo; // fileInfoW[]
wchar_t path[MAX_PATH]; // ファイルパス
} ArcInfoW;
class InfoCacheW
{
public:
InfoCacheW();
~InfoCacheW();
void Clear(void); //キャッシュクリア
void Add(wchar_t *filepath, HLOCAL *ph); //キャッシュに追加。INFOCACHE_MAX を超えると古いのは消す。
//キャッシュにあればアーカイブ情報をコピー。
int Dupli(wchar_t *filepath, HLOCAL *ph, fileInfoW *pinfo);
private:
CriticalSection cs;
ArcInfoW arcinfo[INFOCACHE_MAX];
int nowno;
bool GetCache(wchar_t *filepath, HLOCAL *ph);
};
#endif