summaryrefslogtreecommitdiff
path: root/dirCacheP.h
blob: 1857ee487dcb2fdc6044091c62cdb44c9b609fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef DIRCACHEP_H
#define DIRCACHEP_H

struct dirCacheEntry_t {
	dirCacheEntryType_t type;
	unsigned int beginSlot;
	unsigned int endSlot;
	wchar_t *shortName;
	wchar_t *longName;
	struct directory dir;
	int endMarkPos;
} ;

#endif /* DIRCACHEP_H */