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