mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 05:34:17 +00:00
14 lines
304 B
C++
14 lines
304 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#define THROW_BAD_ALLOC_IF_NULL(x) \
|
|
if ((x) == nullptr) throw std::bad_alloc()
|
|
|
|
namespace WMUtils {
|
|
bool isRunningX11();
|
|
bool isRunningWayland();
|
|
bool isRunningWindowManager();
|
|
bool isRunningDesktopEnvironment();
|
|
QString getDrmCardOverride();
|
|
}
|