#define 	MAX_BLOCKS_PERCENT	1
#define 	MAX_REPORTS 		70
#define 	MAX_DIRS_PER_REPORT 	1600

typedef struct
{
	int 	size;
	short 	disk,
		index;
} SORT_ENTRIES;


typedef struct
{
	char	name[30],
		big_dir[100],
		big_root[100];
	int	dir_count,
		files_count,
		blocks_count,
		max_blocks,
		root_count,
		big_root_size,
		big_dir_size;
} DISK_SUMMARY;

typedef struct 
{
	char 	name[100];
	int     parent_index,
		act_total_files,
		cum_files,
		total_sub_dirs,
		dir_depth;
	int  	act_blocks,
		cum_blocks;
} DIR_DATA;
