blob: 058622286c0a0b19c4ef8073190492a1cc8a7ab1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef LOADDEF_H
#define LOADDEF_H
#include <stdio.h>
#include "makemhr.h"
bool LoadDefInput(FILE *fp, const char *startbytes, size_t startbytecount, const char *filename,
const uint fftSize, const uint truncSize, const ChannelModeT chanMode, HrirDataT *hData);
#endif /* LOADDEF_H */
|