15 lines
252 B
C
15 lines
252 B
C
#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 */
|