rsyncui/tools.h

24 lines
437 B
C
Raw Normal View History

2023-01-07 12:44:45 +01:00
#ifndef TOOLS_H
#define TOOLS_H
#include <string>
#include <vector>
2023-01-18 23:12:21 +01:00
#include <array>
2023-02-10 21:32:20 +01:00
#include <QString>
#include <QMap>
#include <QTranslator>
#include <QProcess>
2023-03-04 19:12:13 +01:00
#include <QMimeDatabase>
#include <QMimeType>
2023-01-07 12:44:45 +01:00
using namespace std;
FILE * popen2(array<string,8> argv, string type, int & pid);
2023-01-18 23:12:21 +01:00
2023-01-07 12:44:45 +01:00
int pclose2(FILE * fp, pid_t pid);
bool testRsyncReturn(MainWindow *, QProcess *);
2023-03-04 19:12:13 +01:00
QString getFileType(QString finename);
2023-02-10 21:32:20 +01:00
2023-01-07 12:44:45 +01:00
#endif // TOOLS_H