xref: /aosp_15_r20/external/mtools/dirCacheP.h (revision d5c9a868b113e0ec0db2f27bc2ce8a253e77c4b0)
1 #ifndef DIRCACHEP_H
2 #define DIRCACHEP_H
3 
4 struct dirCacheEntry_t {
5 	dirCacheEntryType_t type;
6 	unsigned int beginSlot;
7 	unsigned int endSlot;
8 	wchar_t *shortName;
9 	wchar_t *longName;
10 	struct directory dir;
11 	int endMarkPos;
12 } ;
13 
14 #endif /* DIRCACHEP_H */
15