mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-12-03 15:34:15 +01:00
35 lines
737 B
C++
35 lines
737 B
C++
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::Glue {
|
|
|
|
class BGTC_T final : public ServiceFramework<BGTC_T> {
|
|
public:
|
|
explicit BGTC_T(Core::System& system_);
|
|
~BGTC_T() override;
|
|
|
|
void OpenTaskService(HLERequestContext& ctx);
|
|
};
|
|
|
|
class ITaskService final : public ServiceFramework<ITaskService> {
|
|
public:
|
|
explicit ITaskService(Core::System& system_);
|
|
~ITaskService() override;
|
|
};
|
|
|
|
class BGTC_SC final : public ServiceFramework<BGTC_SC> {
|
|
public:
|
|
explicit BGTC_SC(Core::System& system_);
|
|
~BGTC_SC() override;
|
|
};
|
|
|
|
} // namespace Service::Glue
|