X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=include%2Fsortidx.h;h=d660d19b4102c23d4bb2948d1e0c4d7a597862ba;hp=54aec5454cbadcbd3a6b77e2f847003e0a8dca66;hb=ba0720e26f508ba3396e232d2f82037c0e701698;hpb=af102b1fb451ba27bfa7343528c4240b3ab3a80b diff --git a/include/sortidx.h b/include/sortidx.h index 54aec54..d660d19 100644 --- a/include/sortidx.h +++ b/include/sortidx.h @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1995-2008 Index Data + Copyright (C) 1994-2011 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -64,27 +64,30 @@ void zebra_sort_sysno(zebra_sort_index_t si, zint sysno); /** \brief adds multi-map content to sort file \param si sort index handle + \param section_id section of key \param w one or more 0-terminted strings (thus an array) zebra_sort_type and zebra_sort_sysno must be called prior to this */ -void zebra_sort_add(zebra_sort_index_t si, WRBUF w); +void zebra_sort_add(zebra_sort_index_t si, zint section_id, WRBUF w); /** \brief delete sort entry \param si sort index handle + \param section_id section of sort key to be deleted zebra_sort_type and zebra_sort_sysno must be called prior to this */ -void zebra_sort_delete(zebra_sort_index_t si); +void zebra_sort_delete(zebra_sort_index_t si, zint section_id); /** \brief reads sort entry \param si sort index handle - \param buf resulting buffer + \param section_id output section ID (may be NULL and it will not be set) + \param w resulting buffer \retval 0 could not be read \retval 1 could be read (found) */ -int zebra_sort_read(zebra_sort_index_t si, WRBUF w); +int zebra_sort_read(zebra_sort_index_t si, zint *section_id, WRBUF w); YAZ_END_CDECL @@ -92,6 +95,7 @@ YAZ_END_CDECL /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab