Annotation of capa/capa51/GUITools/manager.init.c, revision 1.4
1.4 ! albertel 1: /* initialization routines for manager
! 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:
1.1 albertel 25: /*
1.4 ! albertel 26: * manager.init.c
! 27: * Guy Albertelli II 1996
1.1 albertel 28: */
29: #include <stdio.h>
30: #include <sys/file.h>
31: #include <tk.h>
32: #include <stdlib.h>
33: #include <Capa/capaCommon.h>
34: #include <signal.h>
35: #include "manager.h"
36: #include <common.h>
37:
38:
39: Tcl_Interp * gInterp;
40:
41: int Manager_Init(Tcl_Interp *interp)
42: {
43: char buf[BUFFER_SIZE],*argv;
44:
45: signal(SIGSEGV,signalHandler);
46: signal(SIGILL,signalHandler);
47: signal(SIGFPE,signalHandler);
48: signal(SIGBUS,signalHandler);
49:
50: gInterp=interp;
51:
52: /*Tcl_CreateCommand( interp, "name", cname,
53: (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL); */
1.2 albertel 54: Tcl_CreateCommand(interp, "CTcreateSummary", capaCTcreateSummary,
55: (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL);
1.1 albertel 56: Tcl_CreateCommand(interp, "getExistingSections", capaGetExistingSections,
57: (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL);
1.3 albertel 58: Tcl_CreateCommand( interp, "getSpecificCapaId", capaGetSpecifiCapaId,
59: (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL);
60: Tcl_CreateCommand( interp, "isSetOpen", capaIsSetOpen,
61: (ClientData)NULL, (Tcl_CmdDeleteProc *)NULL);
1.1 albertel 62: sprintf(buf,"%s.%s",MAJORVER,MANAGERMINORVER);
63: Tcl_SetVar(interp,"gVer",buf,TCL_GLOBAL_ONLY);
64: sprintf(buf,"Compiled on %s",COMPILE_DATE);
65: Tcl_SetVar(interp,"gCompileDate",buf,TCL_GLOBAL_ONLY);
66:
67: argv=Tcl_GetVar(interp,"argv", TCL_GLOBAL_ONLY);
68: if (argv!=NULL && strlen(argv) > 9 &&
69: argv[0]=='-' &&
70: argv[1]=='c' &&
71: argv[2]=='o' &&
72: argv[3]=='p' &&
73: argv[4]=='y' &&
74: argv[5]=='r' &&
75: argv[6]=='i' &&
76: argv[7]=='g' &&
77: argv[8]=='h' &&
78: argv[9]=='t' ) message();
79:
80: Scorer_Init(interp);
81: return TCL_OK;
82: }
83:
84: int Manager_InitStandAlone(Tcl_Interp *interp)
85: {
86: return Manager_Init(interp);
87: }
88:
89: int Manager_SafeInit(Tcl_Interp *interp)
90: {
91: return Manager_Init(interp);
92: }
93:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>