Subversion Repositories wimsdev

Rev

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

Rev 16133 Rev 18421
Line 71... Line 71...
71
    unsigned short int start, indstart, exocnt, techcnt, techval, techoffset;
71
    unsigned short int start, indstart, exocnt, techcnt, techval, techoffset;
72
} sheetdata; /* General information of a sheet. Size: xx bytes. */
72
} sheetdata; /* General information of a sheet. Size: xx bytes. */
73
 
73
 
74
extern struct classdata {
74
extern struct classdata {
75
    char name[MAX_CLASSLEN+1];
75
    char name[MAX_CLASSLEN+1];
-
 
76
    char sclass[MAX_CLASSLEN+1];
76
    char techs[MAX_LINELEN];
77
    char techs[MAX_LINELEN];
77
    time_t start, last, modif;
78
    time_t start, last, modif;
78
    int sheetcnt, exocnt, examcnt, examstart, access;
79
    int sheetcnt, exocnt, examcnt, examstart, access;
79
    struct exodata exos[MAX_CLASSEXOS];
80
    struct exodata exos[MAX_CLASSEXOS];
80
    char ctbuf[CTBUFLEN];
81
    char ctbuf[CTBUFLEN];
Line 161... Line 162...
161
extern char *textptr;
162
extern char *textptr;
162
void wlogdaccessfile(char *content, char *type, char *s,...);
163
void wlogdaccessfile(char *content, char *type, char *s,...);
163
int call_ssh(int wait,char *s,...);
164
int call_ssh(int wait,char *s,...);
164
int call_sh(int wait,char *s,...);
165
int call_sh(int wait,char *s,...);
165
extern int exec_wait;
166
extern int exec_wait;
-
 
167
void getdef(char *fname, char *name, char value[]);