mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2217135336
* Correct stopEnableAttemptsTimer thread affinity * Restart correctly, if running as service * Add instance# in API response * Qt6 updates * Update fallthrough guide * Update Compile warning
12 lines
194 B
C++
12 lines
194 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
|
|
namespace Process {
|
|
|
|
void restartHyperion(int exitCode = 0);
|
|
QByteArray command_exec(const QString& cmd, const QByteArray& data = {});
|
|
|
|
}
|