regtest.h 1.3 KB

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