2014-04-03 19:29:13 +00:00
|
|
|
// -*- Mode: C++ -*-
|
2012-05-22 17:09:48 +00:00
|
|
|
#ifndef GETFILE_H
|
|
|
|
#define GETFILE_H
|
|
|
|
#include <QString>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QDebug>
|
|
|
|
|
2012-09-26 15:20:43 +00:00
|
|
|
void getfile(QString fname, int ntrperiod);
|
2012-05-22 17:09:48 +00:00
|
|
|
float gran();
|
2013-03-24 14:13:37 +00:00
|
|
|
//int ptt(int* nport, int* ntx, int* iptt);
|
2013-05-20 18:33:06 +00:00
|
|
|
int ptt(int nport, int ntx, int* iptt, int* nopen);
|
2013-03-24 14:13:37 +00:00
|
|
|
|
2013-07-08 23:32:20 +00:00
|
|
|
extern "C" {
|
|
|
|
int ptt_(int nport, int ntx, int* iptt, int* nopen);
|
2015-04-22 17:48:03 +00:00
|
|
|
void wav12_(short d2[], short d1[], int* nbytes, short* nbitsam2);
|
2013-07-08 23:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-22 17:09:48 +00:00
|
|
|
#endif // GETFILE_H
|