X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fidzebra%2Fisamc.h;h=7b7aebaf8b3a4a16f9b1d1226fd2590694221fc5;hb=9eebf93dc2525854867cbc43920ea8ba4a199ab5;hp=62061139a155a0b9e6224ce024b13f1943038cfd;hpb=0e56fa84bb4a5985c19a21926e86862c08d84689;p=idzebra-moved-to-github.git diff --git a/include/idzebra/isamc.h b/include/idzebra/isamc.h index 6206113..7b7aeba 100644 --- a/include/idzebra/isamc.h +++ b/include/idzebra/isamc.h @@ -1,6 +1,6 @@ -/* $Id: isamc.h,v 1.1 2004-12-08 14:02:36 adam Exp $ - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 - Index Data Aps +/* $Id: isamc.h,v 1.4 2005-04-15 10:47:48 adam Exp $ + Copyright (C) 1995-2005 + Index Data ApS This file is part of the Zebra server. @@ -28,8 +28,9 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA YAZ_BEGIN_CDECL +typedef zint ISAM_P; + typedef struct ISAMC_s *ISAMC; -typedef zint ISAMC_P; typedef struct ISAMC_PP_s *ISAMC_PP; typedef struct ISAMC_filecat_s { @@ -56,23 +57,41 @@ typedef struct ISAMC_I_s { void *clientData; } ISAMC_I; -void isc_getmethod (ISAMC_M *m); +YAZ_EXPORT +void isamc_getmethod (ISAMC_M *m); + +YAZ_EXPORT +ISAMC isamc_open (BFiles bfs, const char *name, int writeflag, + ISAMC_M *method); +YAZ_EXPORT +int isamc_close (ISAMC is); + +YAZ_EXPORT +void isamc_merge (ISAMC is, ISAM_P *pos, ISAMC_I *data); + +YAZ_EXPORT +ISAMC_PP isamc_pp_open (ISAMC is, ISAM_P pos); + +YAZ_EXPORT +void isamc_pp_close (ISAMC_PP pp); + +YAZ_EXPORT +int isamc_read_item (ISAMC_PP pp, char **dst); + +YAZ_EXPORT +int isamc_pp_read (ISAMC_PP pp, void *buf); -ISAMC isc_open (BFiles bfs, const char *name, int writeflag, ISAMC_M *method); -int isc_close (ISAMC is); -ISAMC_P isc_merge (ISAMC is, ISAMC_P pos, ISAMC_I *data); +YAZ_EXPORT +zint isamc_pp_num (ISAMC_PP pp); -ISAMC_PP isc_pp_open (ISAMC is, ISAMC_P pos); -void isc_pp_close (ISAMC_PP pp); -int isc_read_item (ISAMC_PP pp, char **dst); -int isc_pp_read (ISAMC_PP pp, void *buf); -zint isc_pp_num (ISAMC_PP pp); +YAZ_EXPORT +zint isamc_block_used (ISAMC is, int type); -zint isc_block_used (ISAMC is, int type); -int isc_block_size (ISAMC is, int type); +YAZ_EXPORT +int isamc_block_size (ISAMC is, int type); -#define isc_type(x) ((x) & 7) -#define isc_block(x) ((x) >> 3) +#define isamc_type(x) ((x) & 7) +#define isamc_block(x) ((x) >> 3) YAZ_END_CDECL