bgtc: Update to 12.x and implement OpenTaskService

This commit is contained in:
Morph
2021-04-07 11:03:45 -04:00
parent 6af7bd02b2
commit 5ce0e127da
4 changed files with 36 additions and 1 deletions

View File

@@ -16,6 +16,14 @@ class BGTC_T final : public ServiceFramework<BGTC_T> {
public:
explicit BGTC_T(Core::System& system_);
~BGTC_T() override;
void OpenTaskService(Kernel::HLERequestContext& ctx);
};
class ITaskService final : public ServiceFramework<ITaskService> {
public:
explicit ITaskService(Core::System& system_);
~ITaskService() override;
};
class BGTC_SC final : public ServiceFramework<BGTC_SC> {