2018-09-07 16:00:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-04-22 04:17:57 +01:00
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
2018-10-30 00:28:37 +00:00
|
|
|
#include <stratosphere.hpp>
|
2018-11-30 10:42:48 +00:00
|
|
|
#include "sm_types.hpp"
|
2018-04-22 04:17:57 +01:00
|
|
|
|
|
|
|
enum ManagerServiceCmd {
|
|
|
|
Manager_Cmd_RegisterProcess = 0,
|
2018-10-18 00:26:36 +01:00
|
|
|
Manager_Cmd_UnregisterProcess = 1,
|
|
|
|
|
|
|
|
Manager_Cmd_AtmosphereEndInitDefers = 65000,
|
2018-11-30 10:42:48 +00:00
|
|
|
Manager_Cmd_AtmosphereHasMitm = 65001,
|
2018-04-22 04:17:57 +01:00
|
|
|
};
|
|
|
|
|
2018-06-12 23:00:09 +01:00
|
|
|
class ManagerService final : public IServiceObject {
|
2018-04-22 04:17:57 +01:00
|
|
|
private:
|
|
|
|
/* Actual commands. */
|
2018-10-30 00:28:37 +00:00
|
|
|
virtual Result RegisterProcess(u64 pid, InBuffer<u8> acid_sac, InBuffer<u8> aci0_sac);
|
|
|
|
virtual Result UnregisterProcess(u64 pid);
|
|
|
|
virtual void AtmosphereEndInitDefers();
|
2018-11-30 10:42:48 +00:00
|
|
|
virtual void AtmosphereHasMitm(Out<bool> out, SmServiceName service);
|
2018-10-30 00:28:37 +00:00
|
|
|
public:
|
|
|
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
|
|
|
MakeServiceCommandMeta<Manager_Cmd_RegisterProcess, &ManagerService::RegisterProcess>(),
|
|
|
|
MakeServiceCommandMeta<Manager_Cmd_UnregisterProcess, &ManagerService::UnregisterProcess>(),
|
|
|
|
|
|
|
|
MakeServiceCommandMeta<Manager_Cmd_AtmosphereEndInitDefers, &ManagerService::AtmosphereEndInitDefers>(),
|
2018-11-30 10:42:48 +00:00
|
|
|
MakeServiceCommandMeta<Manager_Cmd_AtmosphereHasMitm, &ManagerService::AtmosphereHasMitm>(),
|
2018-10-30 00:28:37 +00:00
|
|
|
};
|
2018-06-03 06:46:27 +01:00
|
|
|
};
|