X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Frset.h;h=bf8f87b08e9ff917bddeb9602e656de77845e04e;hb=7a2d0f25682890bde5d8f2883d6020df2ed0b365;hp=7fc3c95e251ebd17f838e5b408f179349aadf59f;hpb=2cd05dfd682c368fd3bd73912144344d2954325f;p=idzebra-moved-to-github.git diff --git a/include/rset.h b/include/rset.h index 7fc3c95..bf8f87b 100644 --- a/include/rset.h +++ b/include/rset.h @@ -1,4 +1,4 @@ -/* $Id: rset.h,v 1.54 2005-06-06 21:31:08 adam Exp $ +/* $Id: rset.h,v 1.56 2005-06-07 14:53:38 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -40,6 +40,10 @@ struct ord_list { struct ord_list *next; }; +struct ord_list *ord_list_create(NMEM nmem); +struct ord_list *ord_list_append(NMEM nmem, struct ord_list *list, int ord); +struct ord_list *ord_list_dup(NMEM nmem, struct ord_list *list); + /** * rset_term is all we need to know of a term to do ranking etc. * As far as the rsets are concerned, it is just a dummy pointer to @@ -54,6 +58,7 @@ struct rset_term { This info is used to return encoded term back for search-result-1 . */ + int reg_type; /** register type */ RSET rset; /** the rset corresponding to this term */ void *rankpriv;/** private stuff for the ranking algorithm */ struct ord_list *ol; @@ -61,7 +66,8 @@ struct rset_term { typedef struct rset_term *TERMID; TERMID rset_term_create (const char *name, int length, const char *flags, - int type, NMEM nmem, struct ord_list *ol); + int type, NMEM nmem, struct ord_list *ol, + int reg_type); /** rsfd is a "file descriptor" for reading from a rset */ struct rsfd { /* the stuff common to all rsfd's. */