~ubuntu-branches/ubuntu/precise/ncbi-tools6/precise

« back to all changes in this revision

Viewing changes to tools/ncbisam.h

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-03-27 12:00:15 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050327120015-embhesp32nj73p9r
Tags: 6.1.20041020-3
* Fix FTBFS under GCC 4.0 caused by inconsistent use of "static" on
  functions.  (Closes: #295110.)
* Add a watch file, now that we can.  (Upstream's layout needs version=3.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: ncbisam.h,v 6.3 2000/07/18 19:29:27 shavirin Exp $
 
1
/* $Id: ncbisam.h,v 6.4 2003/04/14 19:52:31 camacho Exp $
2
2
* ===========================================================================
3
3
*
4
4
*                            PUBLIC DOMAIN NOTICE
29
29
*
30
30
* Initial Version Creation Date: 02/24/1997
31
31
*
32
 
* $Revision: 6.3 $
 
32
* $Revision: 6.4 $
33
33
*
34
34
* File Description:
35
35
*         External include file for ISAM library
36
36
*
37
37
* $Log: ncbisam.h,v $
 
38
* Revision 6.4  2003/04/14 19:52:31  camacho
 
39
* Added ISAMUninitSearch
 
40
*
38
41
* Revision 6.3  2000/07/18 19:29:27  shavirin
39
42
* Added new parameter test_non_unique to suppress check for non-unique
40
43
* strings ids in the database - default - TRUE.
149
152
  ------------------------------------------------------------------*/
150
153
void ISAMObjectFree(ISAMObjectPtr object);
151
154
 
 
155
/* ---------------------- ISAMUninitSearch --------------------------
 
156
   Purpose:     Uninitialize an ISAM search (free all allocated and used 
 
157
                buffers and unmap and close all mapped/opened files).
 
158
                Undoes what the ISAMInitSearch function does.
 
159
   Parameters:  ISAM object
 
160
   Returns:     ISAM Error Code
 
161
   NOTE:        None
 
162
  ------------------------------------------------------------------*/
 
163
ISAMErrorCode ISAMUninitSearch(ISAMObjectPtr object);
 
164
 
152
165
/* ------------------------ ISAMSearchTerm -------------------------
153
166
   Purpose:     Main search function of complete String ISAM
154
167