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