File: dirCacheP.h

package info (click to toggle)
mtools 4.0.17-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,320 kB
  • sloc: ansic: 18,154; sh: 3,237; makefile: 242; sed: 5
file content (14 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 */