File: signpr_main.h

package info (click to toggle)
gramofile 1.6-8
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 852 kB
  • ctags: 553
  • sloc: ansic: 10,238; makefile: 55
file content (37 lines) | stat: -rw-r--r-- 874 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Signal Processing Main - Header

 * Copyright (C) 1998 J.A. Bezemer
 *
 * Licensed under the terms of the GNU General Public License.
 * ABSOLUTELY NO WARRANTY.
 * See the file `COPYING' in this directory.
 */

#ifndef HAVE_SIGNPROC_MAIN_H
#define HAVE_SIGNPROC_MAIN_H


#include "scrollmenu.h"

#define SIGNPR_PROCESSING_HEADERTEXT "Signal Processing"

typedef struct
  {
    long begin;
    long end;
  }
beginendsample_t;

int signproc_get_options (char *startdir, char *infilename, char *outfilename,
			  scrollmenu_t * filtlist, int *filtnumbers,
			  char **helptexts, scrollmenu_t * selectedfilts,
			  int *usetracktimes, int *usebeginendtime,
			  double *begintime, double *endtime);

int load_track_times (char *filename, beginendsample_t * tracktimes,
		      int *number_of_tracks);

void signproc_main (char *startdir);


#endif /* HAVE_SIGNPROC_MAIN_H */