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