mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
280c8344cd
Preparation for merging with the wsjtx project repository.
20 lines
424 B
C++
20 lines
424 B
C++
// -*- Mode: C++ -*-
|
|
#ifndef GETFILE_H
|
|
#define GETFILE_H
|
|
#include <QString>
|
|
#include <QFile>
|
|
#include <QDebug>
|
|
|
|
void getfile(QString fname, int ntrperiod);
|
|
float gran();
|
|
//int ptt(int* nport, int* ntx, int* iptt);
|
|
int ptt(int nport, int ntx, int* iptt, int* nopen);
|
|
|
|
extern "C" {
|
|
int ptt_(int nport, int ntx, int* iptt, int* nopen);
|
|
void wav12_(short d2[], short d1[], int* nbytes, short* nbitsam2);
|
|
}
|
|
|
|
|
|
#endif // GETFILE_H
|