mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
12 lines
201 B
C++
12 lines
201 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
|
|
namespace Process {
|
|
|
|
void restartHyperion(bool asNewProcess=false);
|
|
QByteArray command_exec(const QString& cmd, const QByteArray& data = {});
|
|
|
|
}
|