File:  [LON-CAPA] / capa / capa51 / GUITools / quizzer.h
Revision 1.2: download - view: text, annotated - select for diffs
Fri Jul 7 18:25:12 2000 UTC (23 years, 10 months ago) by albertel
Branches: MAIN
CVS tags: version5-1-2-first_release, HEAD
- GPL notices

    1: /* quizzer functions
    2:    Copyright (C) 1992-2000 Michigan State University
    3: 
    4:    The CAPA system is free software; you can redistribute it and/or
    5:    modify it under the terms of the GNU Library General Public License as
    6:    published by the Free Software Foundation; either version 2 of the
    7:    License, or (at your option) any later version.
    8: 
    9:    The CAPA system is distributed in the hope that it will be useful,
   10:    but WITHOUT ANY WARRANTY; without even the implied warranty of
   11:    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   12:    Library General Public License for more details.
   13: 
   14:    You should have received a copy of the GNU Library General Public
   15:    License along with the CAPA system; see the file COPYING.  If not,
   16:    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   17:    Boston, MA 02111-1307, USA.
   18: 
   19:    As a special exception, you have permission to link this program
   20:    with the TtH/TtM library and distribute executables, as long as you
   21:    follow the requirements of the GNU GPL in regard to all of the
   22:    software in the executable aside from TtH/TtM.
   23: */
   24: 
   25: /*
   26:  * quizzer.h
   27:  * Guy Albertelli II 1996
   28:  */
   29: #ifndef _QUIZZER_H_
   30: #define _QUIZZER_H_
   31: 
   32: int capaTclParse (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   33: int capaGetStudent (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   34: int capaRunLatex (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   35: int capaGetParseErrors (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   36: int capaGetHeaderInfo (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   37: int capaUpdateHeader (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   38: int capaCheckHeader (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   39: int capaGetStudentNumbers (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   40: int capaStopParser (ClientData clientdata, Tcl_Interp *interp, int argc, char *argv[]);
   41: void signalHandler(int sigNum);
   42: void alarmHandler(int sigNum);
   43: 
   44: int gFasterParsing;
   45: 
   46: #define Q_PROBLEM            '0'
   47: #define Q_PROBLEM_AND_ANSWER '1'
   48: #define Q_ANSWER      '2'
   49: #define BUFFER_SIZE   2048
   50: 
   51: #endif /* _QUIZZER_H_ */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>