Add function windowsSystemPath()

This commit is contained in:
Chocobo1 2016-07-23 13:19:26 +08:00
parent d3ece7417d
commit f448587271
3 changed files with 18 additions and 7 deletions

View file

@ -102,12 +102,16 @@ namespace Utils
QList<int> intListfromStringList(const QStringList &l);
QList<bool> boolListfromStringList(const QStringList &l);
void msleep(unsigned long msecs);
#ifndef DISABLE_GUI
void openPath(const QString& absolutePath);
void openFolderSelect(const QString& absolutePath);
#endif
void msleep(unsigned long msecs);
#ifdef Q_OS_WIN
QString windowsSystemPath();
#endif
}
}