73 lines
1.9 KiB
C++
73 lines
1.9 KiB
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 Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::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();
|
|
|
|
protected:
|
|
std::shared_ptr<Module> act;
|
|
|
|
/**
|
|
* ACT::Initialize service function.
|
|
* Inputs:
|
|
* 1 : SDK version
|
|
* 2 : Shared Memory Size
|
|
* 3 : PID Translation Header (0x20)
|
|
* 4 : Caller PID
|
|
* 5 : Handle Translation Header (0x0)
|
|
* 6 : Shared Memory Handle
|
|
* Outputs:
|
|
* 1 : Result of function, 0 on success, otherwise error code
|
|
*/
|
|
void Initialize(Kernel::HLERequestContext& ctx);
|
|
|
|
/**
|
|
* ACT::GetErrorCode service function.
|
|
* Inputs:
|
|
* 1 : Result code
|
|
* Outputs:
|
|
* 1 : Result of function, 0 on success, otherwise error code
|
|
* 2 : Error code
|
|
*/
|
|
void GetErrorCode(Kernel::HLERequestContext& ctx);
|
|
|
|
/**
|
|
* ACT::GetAccountInfo service function.
|
|
* Inputs:
|
|
* 1 : Account slot
|
|
* 2 : Size
|
|
* 3 : Block ID
|
|
* 4 : Output Buffer Mapping Translation Header ((Size << 4) | 0xC)
|
|
* 5 : Output Buffer Pointer
|
|
* Outputs:
|
|
* 1 : Result of function, 0 on success, otherwise error code
|
|
*/
|
|
void GetAccountInfo(Kernel::HLERequestContext& ctx);
|
|
};
|
|
|
|
private:
|
|
template <class Archive>
|
|
void serialize(Archive& ar, const unsigned int file_version) {}
|
|
friend class boost::serialization::access;
|
|
};
|
|
|
|
void InstallInterfaces(Core::System& system);
|
|
|
|
} // namespace Service::ACT
|