2 * Copyright (C) 1994-1998, Index Data I/S
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.5 1998-03-05 08:39:26 adam
8 * Minor changes to zebramap data structures. Changed query
11 * Revision 1.4 1998/02/10 12:03:05 adam
14 * Revision 1.3 1997/11/18 10:05:08 adam
15 * Changed character map facility so that admin can specify character
16 * mapping files for each register type, w, p, etc.
18 * Revision 1.2 1997/10/29 12:02:47 adam
19 * Added missing prototype.
21 * Revision 1.1 1997/10/27 14:33:04 adam
22 * Moved towards generic character mapping depending on "structure"
23 * field in abstract syntax file. Fixed a few memory leaks. Fixed
24 * bug with negative integers when doing searches with relational
39 typedef struct zebra_maps *ZebraMaps;
40 ZebraMaps zebra_maps_open (Res res);
42 void zebra_maps_close (ZebraMaps zm);
44 const char **zebra_maps_input (ZebraMaps zms, unsigned reg_id,
45 const char **from, int len);
46 const char *zebra_maps_output(ZebraMaps, unsigned reg_id, const char **from);
48 int zebra_maps_attr (ZebraMaps zms, Z_AttributesPlusTerm *zapt,
49 unsigned *reg_id, char **search_type, char **rank_type,
52 int zebra_maps_sort (ZebraMaps zms, Z_SortAttributes *sortAttributes);
54 int zebra_maps_is_complete (ZebraMaps zms, unsigned reg_id);
55 int zebra_maps_is_sort (ZebraMaps zms, unsigned reg_id);