1 /* 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 19 typedef struct REG_DB_tag REG_DB ; 20 21 /* In database.c */ 22 REG_DB * db_open (const char * db_name) ; 23 24 int db_create (const char * dbname) ; 25 26 int db_close (REG_DB * db_handle) ; 27 28 int db_file_exists (REG_DB * db_handle, const char * filename) ; 29 int db_add_file (REG_DB * db_handle, const char * filename) ; 30 int db_check_file (REG_DB * db_handle, const char * filename) ; 31 32 int db_list_all (REG_DB * db_handle) ; 33 int db_check_all (REG_DB * db_handle) ; 34 int db_del_entry (REG_DB * db_handle, const char * entry) ; 35 36 /* In checksum.c */ 37 int calc_checksum (SNDFILE * file, const SF_INFO * info) ; 38 39