Subversion Repositories svn1

Rev

Rev 225 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 225 Rev 227
Line 221... Line 221...
221
        time_t      start;                       /* Start time for team */
221
        time_t      start;                       /* Start time for team */
222
        time_t      leg[MAX_LEGS + 1];           /* Times at end of each leg */
222
        time_t      leg[MAX_LEGS + 1];           /* Times at end of each leg */
223
        time_t      lege[MAX_LEGS + 1];          /* Times leg elapsed times */
223
        time_t      lege[MAX_LEGS + 1];          /* Times leg elapsed times */
224
        short       place;                       /* Place at end of each leg */
224
        short       place;                       /* Place at end of each leg */
225
        short       teamclass;                   /* Team class */
225
        short       teamclass;                   /* Team class */
-
 
226
        short       real_teamclass;              /* Team class */
226
        team_flags  flags;                       /* Team flags */
227
        team_flags  flags;                       /* Team flags */
227
    }
228
    }
228
ty_s_data;
229
ty_s_data;
229
 
230
 
230
/*
231
/*
Line 249... Line 250...
249
t_legs;
250
t_legs;
250
 
251
 
251
typedef struct
252
typedef struct
252
{
253
{
253
    int         total;                          /* Total */
254
    int         total;                          /* Total */
-
 
255
    int         valid;                          /* Valid entries */
254
    int         disqualified;                   /* Those disqualified */
256
    int         disqualified;                   /* Those disqualified */
255
    int         non_equestrian;                 /* Those on Non-E */
257
    int         non_equestrian;                 /* Those on Non-E */
256
    int         vet_check;                      /* Those that failed the vet check */
258
    int         vet_check;                      /* Those that failed the vet check */
257
} t_class_sum_entry;
259
} t_class_sum_entry;
258
 
260