blob: 567d97be2807eedc32c35366826123561b4cf945 [file] [log] [blame]
Alexandre Lision7c6f4a62013-09-05 13:27:01 -04001/*
2** Copyright (C) 2005-2011 Erik de Castro Lopo
3**
4** This program is free software; you can redistribute it and/or modify
5** it under the terms of the GNU General Public License as published by
6** the Free Software Foundation; either version 2 of the License, or
7** (at your option) any later version.
8**
9** This program 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
12** GNU General Public License for more details.
13**
14** You should have received a copy of the GNU General Public License
15** along with this program; if not, write to the Free Software
16** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17*/
18
19typedef struct REG_DB_tag REG_DB ;
20
21/* In database.c */
22REG_DB * db_open (const char * db_name) ;
23
24int db_create (const char * dbname) ;
25
26int db_close (REG_DB * db_handle) ;
27
28int db_file_exists (REG_DB * db_handle, const char * filename) ;
29int db_add_file (REG_DB * db_handle, const char * filename) ;
30int db_check_file (REG_DB * db_handle, const char * filename) ;
31
32int db_list_all (REG_DB * db_handle) ;
33int db_check_all (REG_DB * db_handle) ;
34int db_del_entry (REG_DB * db_handle, const char * entry) ;
35
36/* In checksum.c */
37int calc_checksum (SNDFILE * file, const SF_INFO * info) ;
38