X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Flivcode.c;h=ba86b2ec31b44cfe24d6c0134a27d513f7dfcb22;hb=73bedd5ba9152c9c107b502fae65723b551aff09;hp=cd85e34e06dc1dc25bf219f157fd6aab1e638d33;hpb=863d336f803da454e03f39ee2225719fed05021e;p=idzebra-moved-to-github.git diff --git a/index/livcode.c b/index/livcode.c index cd85e34..ba86b2e 100644 --- a/index/livcode.c +++ b/index/livcode.c @@ -11,10 +11,12 @@ rights reserved. Licensed under the Academic Free License version 1.1. http://opensource.org/licenses/academic.php -$Id: livcode.c,v 1.3 2004-08-20 14:44:46 heikki Exp $ +$Id: livcode.c,v 1.4 2004-10-26 15:32:11 heikki Exp $ */ +#ifdef SKIPTHIS /* Need to fix the interface - FIXME */ + #include #include #ifdef WIN32 @@ -538,6 +540,7 @@ struct rank_set_info { int last_pos; int no_entries; int no_rank_entries; + NMEM nmem; struct rank_term_info *entries; }; @@ -584,7 +587,8 @@ static void destroy (struct zebra_register *reg, void *class_handle) * each result set. The returned handle is a "set handle" and * will be used in each of the handlers below. */ -static void *begin (struct zebra_register *reg, void *class_handle, RSET rset) +static void *begin (struct zebra_register *reg, void *class_handle, + RSET rset, NMEM nmem) { struct rank_set_info *si = (struct rank_set_info *) xmalloc (sizeof(*si)); int i; @@ -594,6 +598,7 @@ static void *begin (struct zebra_register *reg, void *class_handle, RSET rset) /* do about this ??? */ si->no_entries = 0; /* rset->no_rset_terms; */ /* FIXME ??? */ si->no_rank_entries = 0; + si->nmem=nmem; si->entries = (struct rank_term_info *) xmalloc (sizeof(*si->entries)*si->no_entries); for (i = 0; i < si->no_entries; i++) @@ -706,3 +711,5 @@ static struct rank_control rank_control = { }; struct rank_control *rankliv_class = &rank_control; +#endif +