(cos_release_symbol): Add check for builtin symbols.
[chise/concord.git] / concord-bdb.h
1 /* Copyright (C) 2003,2004,2005,2006 MORIOKA Tomohiko
2    This file is part of the CONCORD Library.
3
4    The CONCORD Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The CONCORD Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the CONCORD Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #ifndef _CONCORD_BDB_H
20 #define _CONCORD_BDB_H
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 #include <db.h>
27 #include <errno.h>
28
29 DB* CONCORD_BDB_open (const char* db_dir,
30                       const char* genre,
31                       const char* key_type,
32                       const char* name,
33                       DBTYPE real_subtype,
34                       u_int32_t accessmask, int modemask);
35
36 int CONCORD_BDB_close (DB* db);
37
38 int CONCORD_BDB_get (DB* db, const char* key, DBT* valdatum);
39
40 int CONCORD_BDB_put (DB* db, const char* key, unsigned char* value);
41
42
43 #ifdef __cplusplus
44 }
45 #endif
46
47 #endif /* !_CONCORD_BDB_H */