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