-
Notifications
You must be signed in to change notification settings - Fork 17
/
qrouternullg.c
50 lines (39 loc) · 1.48 KB
/
qrouternullg.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*----------------------------------------------------------------------*/
/* qrouternullg.c */
/*----------------------------------------------------------------------*/
#include <stdio.h>
#include <tcl.h>
/*----------------------------------------------------------------------*/
/* Application initiation. This is exactly like the AppInit routine */
/* for "tclsh", minus the cruft, but with "tcl_rcFileName" set to */
/* "qrouter.tcl" instead of "~/.tclshrc". */
/*----------------------------------------------------------------------*/
int
qrouter_AppInit(interp)
Tcl_Interp *interp;
{
if (Tcl_Init(interp) == TCL_ERROR) {
return TCL_ERROR;
}
Tcl_StaticPackage(interp, "Tcl", Tcl_Init, Tcl_Init);
/* This is where we replace the home ".wishrc" file with */
/* qrouter's startup script. */
Tcl_SetVar(interp, "tcl_rcFileName", QROUTER_PATH "/qrouter.tcl",
TCL_GLOBAL_ONLY);
/* Additional variable can be used to tell if qrouter is in non- */
/* graphics mode. */
Tcl_SetVar(interp, "no_graphics_mode", "true", TCL_GLOBAL_ONLY);
return TCL_OK;
}
/*----------------------------------------------------------------------*/
/* The main procedure; replacement for "tclsh". */
/*----------------------------------------------------------------------*/
int
main(argc, argv)
int argc;
char **argv;
{
Tcl_Main(argc, argv, qrouter_AppInit);
return 0;
}
/*----------------------------------------------------------------------*/