mirror of
https://gitlab.com/suyu-emu/suyu.git
synced 2024-03-15 23:15:44 +00:00
24 lines
459 B
C++
24 lines
459 B
C++
// SPDX-FileCopyrightText: Copyright 2021 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 ECTX_AW final : public ServiceFramework<ECTX_AW> {
|
|
public:
|
|
explicit ECTX_AW(Core::System& system_);
|
|
~ECTX_AW() override;
|
|
|
|
private:
|
|
void CreateContextRegistrar(HLERequestContext& ctx);
|
|
};
|
|
|
|
} // namespace Service::Glue
|