~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to lib-src/libsndfile/regtest/regtest.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
**      Copyright (C) 2005 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
 
/*
40
 
** Do not edit or modify anything in this comment block.
41
 
** The following line is a file identity tag for the GNU Arch
42
 
** revision control system.
43
 
**
44
 
** arch-tag: 80138e38-f373-48d3-8152-7f7882a62cd7
45
 
*/