mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-14 22:15:15 +01:00
935bcdbd20
* Convert ACT to the new service framework * Fix clang-format * le updates to fix stuff * Fixed one last thing. * Well, I fucked up. * Quick hotfix
29 lines
607 B
C++
29 lines
607 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service {
|
|
namespace ACT {
|
|
|
|
/// Initializes all ACT services
|
|
class Module final {
|
|
public:
|
|
class Interface : public ServiceFramework<Interface> {
|
|
public:
|
|
Interface(std::shared_ptr<Module> act, const char* name);
|
|
~Interface();
|
|
|
|
private:
|
|
std::shared_ptr<Module> act;
|
|
};
|
|
};
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
} // namespace ACT
|
|
} // namespace Service
|