X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=tclmain.c;h=3168bc6ab442818f73ee9721429587dc855773db;hb=cf71e5f27e91fe8525d5cd7354d2cf6d17b4f4c1;hp=214ce9abc5beb51bc804c97f5faf7e05ba1b1db1;hpb=b7bac2322e7a6855f60d167509108eff3d21bd65;p=ir-tcl-moved-to-github.git diff --git a/tclmain.c b/tclmain.c index 214ce9a..3168bc6 100644 --- a/tclmain.c +++ b/tclmain.c @@ -5,7 +5,17 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: tclmain.c,v $ - * Revision 1.10 1995-06-30 12:39:28 adam + * Revision 1.13 1995-08-28 12:21:22 adam + * Removed lines and list as synonyms of list in MARC extractron. + * Configure searches also for tk4.0 / tcl7.4. + * + * Revision 1.12 1995/08/28 11:07:16 adam + * Minor changes. + * + * Revision 1.11 1995/08/03 13:23:02 adam + * Request queue. + * + * Revision 1.10 1995/06/30 12:39:28 adam * Bug fix: loadFile didn't set record type. * The MARC routines are a little less strict in the interpretation. * Script display.tcl replaces the old marc.tcl. @@ -42,16 +52,16 @@ #include #include - +#include #include "ir-tcl.h" static char *fileName = NULL; /* select(2) callbacks */ struct callback { - void (*r_handle)(void *p); - void (*w_handle)(void *p); - void (*x_handle)(void *p); + void (*r_handle)(ClientData); + void (*w_handle)(ClientData); + void (*x_handle)(ClientData); void *obj; }; #define MAX_CALLBACK 200