mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
12 lines
177 B
C
12 lines
177 B
C
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0)
|
|
|
|
inline QString qEnvironmentVariable(const char *varName) {
|
|
return qgetenv(varName);
|
|
}
|
|
|
|
#endif
|