mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
d747d76762
This used to be a copy of QSysInfo. However, once the requirement was raised to Qt5.4, this was replaced by a subclass of the original QSysInfo - which made the whole file mostly obsolete. Just use QSysInfo directly where needed. Only for windows.c, which can't call directly into Qt, keep the isWin7Or8() helper function. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
14 lines
188 B
C
14 lines
188 B
C
#ifndef SUBSURFACESYSINFO_H
|
|
#define SUBSURFACESYSINFO_H
|
|
|
|
#include <QtGlobal>
|
|
|
|
#ifdef Q_OS_WIN
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
|
|
bool isWin7Or8();
|
|
#endif
|
|
|
|
#endif // SUBSURFACESYSINFO_H
|