mirror of
https://github.com/js8call/js8call.git
synced 2025-12-22 09:17:08 +00:00
15 lines
218 B
C
15 lines
218 B
C
#ifndef FILEUTILS_H
|
|
#define FILEUTILS_H
|
|
|
|
#include <QFile>
|
|
#ifdef Q_OS_WIN
|
|
# include <windows.h>
|
|
#else
|
|
# include <unistd.h>
|
|
# include <sys/stat.h>
|
|
#endif
|
|
|
|
void flushFileBuffer(const QFile &f);
|
|
|
|
#endif // FILEUTILS_H
|