| 205 | #endif |
| 206 | |
| 207 | bool isProcRunning(pid_t procID) { |
| 208 | #ifdef Q_OS_WIN |
| 209 | return checkProc(static_cast<DWORD>(procID)); |
| 210 | #else |
| 211 | return checkProc(procID); |
| 212 | #endif |
| 213 | } |
| 214 | |
| 215 | QString randomString(const int length) { |
| 216 | const QString possibleCharacters(QStringLiteral("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789")); |