/* * Copyright (c) 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 . */ #pragma once #include namespace ams::pm { class DebugMonitorService { public: /* Actual command implementations. */ Result GetModuleIdList(sf::Out out_count, const sf::OutBuffer &out_buf, u64 unused); Result GetExceptionProcessIdList(sf::Out out_count, const sf::OutArray &out_process_ids); Result StartProcess(os::ProcessId process_id); Result GetProcessId(sf::Out out, ncm::ProgramId program_id); Result HookToCreateProcess(sf::OutCopyHandle out_hook, ncm::ProgramId program_id); Result GetApplicationProcessId(sf::Out out); Result HookToCreateApplicationProcess(sf::OutCopyHandle out_hook); Result ClearHook(u32 which); Result GetProgramId(sf::Out out, os::ProcessId process_id); /* Atmosphere extension commands. */ Result AtmosphereGetProcessInfo(sf::OutCopyHandle out_process_handle, sf::Out out_loc, sf::Out out_status, os::ProcessId process_id); Result AtmosphereGetCurrentLimitInfo(sf::Out out_cur_val, sf::Out out_lim_val, u32 group, u32 resource); }; static_assert(pm::impl::IsIDebugMonitorInterface); }