1: /* $Header$ */
2:
3: /*
4: * Project directory set definitions
5: *
6: * Author: Peter J. Nicklin
7: */
8:
9: /*
10: * Project directory type label block
11: */
12: typedef struct _typblk
13: {
14: short t_exist; /* type label exist for this dir? */
15: short t_prior; /* type label priority */
16: } TYPBLK;
17: /*
18: * Project directory attribute block
19: */
20: typedef struct _pdset
21: {
22: char *ppath; /* project directory project pathname */
23: char *rpath; /* project directory regular pathname */
24: char *project; /* project directory's project */
25: TYPBLK *typblk; /* project directory's type labels */
26: } PDSET;
27: /*
28: * Project directory type label statistics (for each set of type labels)
29: */
30: typedef struct _types
31: {
32: char *t_name; /* type label name */
33: short t_ntl; /* number of type labels */
34: short t_itlp; /* initial type label priority */
35: short t_sort; /* sort on this type label? */
36: } TYPES;
Defined struct's
Defined typedef's
PDSET
defined in line
26; used 14 times
TYPES
defined in line
36; used 4 times
Usage of this include