Subversion Repositories wimsdev

Rev

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

Rev 8255 Rev 8286
Line 56... Line 56...
56
/* max number of lines in a work file */
56
/* max number of lines in a work file */
57
/* Limit for datafield cache */
57
/* Limit for datafield cache */
58
#define LINE_LIMIT 16384
58
#define LINE_LIMIT 16384
59
/* size of cached datafields */
59
/* size of cached datafields */
60
#define DATAFIELD_LIMIT 16384
60
#define DATAFIELD_LIMIT 16384
-
 
61
/* max required points */
-
 
62
#define MAX_REQUIRE 1000
-
 
63
 
61
/* temporary log file */
64
/* temporary log file */
62
#define TEMP_LOG_FILE "../log/temp.log"
65
#define TEMP_LOG_FILE "../log/temp.log"
63
/* max required points */
-
 
64
#define MAX_REQUIRE 1000
-
 
65
/* Tag string for randfile */
66
/* Tag string for randfile */
66
#define tag_string "\n:"
67
#define tag_string "\n:"
67
 
68
 
68
/* Define current version of the server here */
69
/* Define current version of the server here */
69
#define wims_version PACKAGE_VERSION
70
#define wims_version PACKAGE_VERSION
Line 78... Line 79...
78
 
79
 
79
typedef struct scoreresult {
80
typedef struct scoreresult {
80
    unsigned short int num, pad;
81
    unsigned short int num, pad;
81
    float require, weight, score, mean, last, try, best, level;
82
    float require, weight, score, mean, last, try, best, level;
82
} scoreresult;
83
} scoreresult;
83
 
-
 
84
 
-
 
85
 
-
 
86
 
84
 
87
#endif
85
#endif