Subversion Repositories svn1-original

Rev

Rev 214 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 214 Rev 229
Line 113... Line 113...
113
/*
113
/*
114
**  Team based flags
114
**  Team based flags
115
*/
115
*/
116
typedef struct
116
typedef struct
117
    {
117
    {
118
        bool        valid;                       /* Data valid flag */
118
    bool        valid;                      /* Data valid flag */
119
        bool        bad_times;                   /* Legs times not fully defined */
119
    bool        bad_times;                  /* Legs times not fully defined */
120
        bool        disqualified;                /* Team has been disqualified */
120
    bool        disqualified;               /* Team has been disqualified */
121
        bool        non_equestrian;              /* Team is special : non-equestrian */
121
    bool        non_equestrian:1;           /* Team is special : non-equestrian */
-
 
122
    bool        vet_check:1;                /* Team Disqual - Failed vet check */
122
    } MPACKED
123
    } MPACKED
123
team_flags ;                                      /* Flag word */
124
team_flags ;                                    /* Flag word */
124
 
125
 
125
/*
126
/*
126
**  Team information
127
**  Team information
127
*/
128
*/
128
typedef struct
129
typedef struct
Line 250... Line 251...
250
typedef struct
251
typedef struct
251
{
252
{
252
    int         total;                          /* Total */
253
    int         total;                          /* Total */
253
    int         disqualified;                   /* Those disqualified */
254
    int         disqualified;                   /* Those disqualified */
254
    int         non_equestrian;                 /* Those on Non-E */
255
    int         non_equestrian;                 /* Those on Non-E */
-
 
256
    int         vet_check;                      /* Those that failed the vet check */
255
} t_class_sum_entry;
257
} t_class_sum_entry;
256
 
258
 
257
typedef struct
259
typedef struct
258
{
260
{
259
    t_class_sum_entry   teamclass[MAX_CLASS];   /* Per class data */
261
    t_class_sum_entry   teamclass[MAX_CLASS];   /* Per class data */