diff options
Diffstat (limited to 'trivmix.h')
-rw-r--r-- | trivmix.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/trivmix.h b/trivmix.h deleted file mode 100644 index 03b5860..0000000 --- a/trivmix.h +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | typedef struct mixState { | ||
2 | char *input; | ||
3 | char *output; | ||
4 | char *name; | ||
5 | float dBGain; | ||
6 | } mixState; | ||
7 | |||
8 | typedef enum bool { | ||
9 | false, | ||
10 | true | ||
11 | } bool; | ||
12 | |||
13 | void parseArgs(int argc, char *argv[]); | ||
14 | void setWorkdir(); | ||
15 | void syncState(); | ||
16 | void readState(); | ||
17 | void writeState(); | ||
18 | int openSyncFile(FILE **file, char *fileName, char *fileMode, bool errOK); | ||
19 | |||
20 | void cleanExit(int r); | ||
21 | void errMsg(int r, int *errno, char *head, char *detail); | ||