X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tclmain.c;h=70d0db1662a7124ecea6267e1751d4ef76700c15;hb=b018d91ad37afe044cfb7a32874ea54bf4c4b7f2;hp=203d8aa2923e8d0186860abfa1cb0a79bdc5e125;hpb=075ab693cfc579ae9dbefd78d32d852e7b18d306;p=ir-tcl-moved-to-github.git diff --git a/tclmain.c b/tclmain.c index 203d8aa..70d0db1 100644 --- a/tclmain.c +++ b/tclmain.c @@ -2,15 +2,24 @@ * IR toolkit for tcl/tk * (c) Index Data 1995 * - * $Id: tclmain.c,v 1.1 1995-03-06 17:05:34 adam Exp $ + * $Id: tclmain.c,v 1.2 1995-03-08 07:28:37 adam Exp $ */ +#include +#include +#include +#include + #include #include "ir-tcl.h" static char *fileName = NULL; +static fd_set fdset_tcl; + +void tcl_mainloop (Tcl_Interp *interp); + int Tcl_AppInit (Tcl_Interp *interp) { if (Tcl_Init(interp) == TCL_ERROR) @@ -40,12 +49,81 @@ int main (int argc, char **argv) } if (Tcl_AppInit(interp) != TCL_OK) { fprintf(stderr, "Tcl_AppInit failed: %s\n", interp->result); - } + } code = Tcl_EvalFile (interp, fileName); if (*interp->result != 0) printf ("%s\n", interp->result); if (code != TCL_OK) exit (1); + tcl_mainloop (interp); exit (0); } +struct callback { + void (*handle)(void *p); + void *obj; +}; + +#define MAX_CALLBACK 20 + +struct callback callback_table[MAX_CALLBACK]; + +void tcl_mainloop (Tcl_Interp *interp) +{ + int i; + int res; + int count; + char input_buf[256]; + Tcl_DString command; + + for (i=0; iresult); + printf ("[TCL]"); fflush (stdout); + } + } + } +} + +void ir_select_add (int fd, void *obj) +{ + callback_table[fd].obj = obj; + callback_table[fd].handle = ir_select_proc; +} + +void ir_select_remove (int fd, void *obj) +{ + callback_table[fd].handle = NULL; +}