mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
b56dd13add
No more C source files, no more necessity to use C-linkage. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
10 lines
219 B
C++
10 lines
219 B
C++
// SPDX-License-Identifier: LGPL-2.1+
|
|
#include "subsurfacesysinfo.h"
|
|
#include <QSysInfo>
|
|
|
|
#ifdef Q_OS_WIN
|
|
bool isWin7Or8()
|
|
{
|
|
return (QSysInfo::WindowsVersion & QSysInfo::WV_NT_based) >= QSysInfo::WV_WINDOWS7;
|
|
}
|
|
#endif
|