X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2Fwhtml.c;h=b590af83c43cc43da015b2bce270f342e423f93a;hb=373495ef158d123d95ab44465d4249e65847492b;hp=e111ee533ae3795a7f631ca996bffce1bd485cb8;hpb=5414eafed41a60ef3625cfc6770184b36016186e;p=egate.git diff --git a/www/whtml.c b/www/whtml.c index e111ee5..b590af8 100644 --- a/www/whtml.c +++ b/www/whtml.c @@ -41,7 +41,15 @@ * USE OR PERFORMANCE OF THIS SOFTWARE. * * $Log: whtml.c,v $ - * Revision 1.2 1995/10/23 16:55:37 adam + * Revision 1.4 1996/02/29 15:35:20 adam + * Missing 'extern' in declaration of Winterp types. + * + * Revision 1.3 1995/10/27 15:12:06 adam + * IrTcl incorporated in the gateway. + * Better separation of script types. + * Z39.50 gateway scripts entered. + * + * Revision 1.2 1995/10/23 16:55:37 adam * A lot of changes - really. * * Revision 1.1 1995/10/20 14:02:41 adam @@ -55,8 +63,7 @@ #include #include -#include "wproto.h" -#include "winterp.h" +#include "whtml.h" static void *do_create (WCLIENT wcl, void *args); static int do_exec (const char *fname, char *parms, void *mydata); @@ -64,7 +71,9 @@ static int do_exec (const char *fname, char *parms, void *mydata); static struct w_interp_type w_interp_t = { "html", do_create, - do_exec + do_exec, + NULL, + NULL }; W_Interp_Type w_interp_html = &w_interp_t;