1 /* Playing of a sound file - Header
2 
3  * Copyright (C) 1998 J.A. Bezemer
4  *
5  * Licensed under the terms of the GNU General Public License.
6  * ABSOLUTELY NO WARRANTY.
7  * See the file `COPYING' in this directory.
8  */
9 
10 #ifndef HAVE_PLAYWAV_H
11 #define HAVE_PLAYWAV_H
12 
13 
14 #define PLAYWAV_HEADERTEXT "Play a sound file"
15 
16 int playwav_select_file (char *startdir, char *selectedfile,
17 			 int *usebeginendtime, double *begintime,
18 			 double *endtime);
19 /* Returns 0: canceled, 1: OK */
20 
21 void playwav_main (char *startdir);
22 
23 
24 #endif /* HAVE_PLAYWAV_H */
25