00001 #ifndef __SUM_INFO_H
00002 #define __SUM_INFO_H
00003
00004
00005
00006
00007 struct SUM_info_struct
00008 {
00009 struct SUM_info_struct *next;
00010 uint64_t sunum;
00011 char online_loc[81];
00012 char online_status[5];
00013 char archive_status[5];
00014 char offsite_ack[5];
00015 char history_comment[81];
00016 char owning_series[81];
00017 int storage_group;
00018 double bytes;
00019 char creat_date[32];
00020 char username[11];
00021 char arch_tape[21];
00022 int arch_tape_fn;
00023 char arch_tape_date[32];
00024 char safe_tape[21];
00025 int safe_tape_fn;
00026 char safe_tape_date[32];
00027 int pa_status;
00028 int pa_substatus;
00029 char effective_date[20];
00030 };
00031 typedef struct SUM_info_struct SUM_info_t;
00032
00033 #endif
00034