mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
608 B
C++
25 lines
608 B
C++
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Common::Linux {
|
|
|
|
/**
|
|
* Start the (Feral Interactive) Linux gamemode if it is installed and it is activated
|
|
*/
|
|
void StartGamemode();
|
|
|
|
/**
|
|
* Stop the (Feral Interactive) Linux gamemode if it is installed and it is activated
|
|
*/
|
|
void StopGamemode();
|
|
|
|
/**
|
|
* Start or stop the (Feral Interactive) Linux gamemode if it is installed and it is activated
|
|
* @param state The new state the gamemode should have
|
|
*/
|
|
void SetGamemodeState(bool state);
|
|
|
|
} // namespace Common::Linux
|