1 /* $Id: isamb.h,v 1.7 2006-08-14 10:40:14 adam Exp $
2 Copyright (C) 1995-2006
5 This file is part of the Zebra server.
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 #include <idzebra/bfile.h>
27 #include <idzebra/isamc.h>
31 typedef struct ISAMB_s *ISAMB;
32 typedef struct ISAMB_PP_s *ISAMB_PP;
35 ISAMB isamb_open(BFiles bfs, const char *name, int writeflag, ISAMC_M *method,
39 void isamb_close(ISAMB isamb);
42 void isamb_merge(ISAMB b, ISAM_P *pos, ISAMC_I *data);
45 ISAMB_PP isamb_pp_open(ISAMB isamb, ISAM_P pos, int scope);
48 int isamb_pp_read(ISAMB_PP pp, void *buf);
51 int isamb_pp_forward(ISAMB_PP pp, void *buf, const void *untilbuf);
53 int isamb_pp_forward2(ISAMB_PP pp, void *buf, const void *untilbuf);
56 void isamb_pp_pos(ISAMB_PP pp, double *current, double *total);
59 void isamb_pp_close(ISAMB_PP pp);
62 int isamb_unlink(ISAMB b, ISAM_P pos);
65 ISAMB_PP isamb_pp_open_x(ISAMB isamb, ISAM_P pos, int *level, int scope);
67 void isamb_pp_close_x(ISAMB_PP pp, zint *size, zint *blocks);
70 int isamb_block_info(ISAMB isamb, int cat);
73 void isamb_dump(ISAMB b, ISAM_P pos, void (*pr)(const char *str));
81 * indent-tabs-mode: nil
83 * vim: shiftwidth=4 tabstop=8 expandtab