X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=recctrl%2Fsgmlread.c;h=4fa978083e10a32664ce5fc541dc0968376bbd63;hb=ef696645cc3b7e0f4027008d1dc589c0f0f90c1f;hp=d80bc0c2fb2cd7d28c555f28e272cb46d238022f;hpb=3c5f6226f97612c0d6ac40591f600587c5ffa858;p=idzebra-moved-to-github.git diff --git a/recctrl/sgmlread.c b/recctrl/sgmlread.c index d80bc0c..4fa9780 100644 --- a/recctrl/sgmlread.c +++ b/recctrl/sgmlread.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: sgmlread.c,v $ - * Revision 1.5 1999-02-02 14:51:31 adam + * Revision 1.7 1999-05-21 12:00:17 adam + * Better diagnostics for extraction process. + * + * Revision 1.6 1999/05/20 12:57:18 adam + * Implemented TCL filter. Updated recctrl system. + * + * Revision 1.5 1999/02/02 14:51:31 adam * Updated WIN32 code specific sections. Changed header. * * Revision 1.4 1997/09/17 12:19:22 adam @@ -26,7 +32,26 @@ #include "grsread.h" -data1_node *grs_read_sgml (struct grs_read_info *p) +static data1_node *grs_read_sgml (struct grs_read_info *p) { return data1_read_record (p->dh, p->readf, p->fh, p->mem); } + +static void *grs_init_sgml() +{ + return 0; +} + +static void grs_destroy_sgml(void *clientData) +{ +} + +static struct recTypeGrs sgml_type = { + "sgml", + grs_init_sgml, + grs_destroy_sgml, + grs_read_sgml +}; + +RecTypeGrs recTypeGrs_sgml = &sgml_type; +