mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 12:11:43 +00:00
49 lines
1.9 KiB
C++
49 lines
1.9 KiB
C++
|
/*
|
||
|
* Copyright (c) 2018-2019 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/>.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
#include <switch.h>
|
||
|
#include <stratosphere.hpp>
|
||
|
#include <stratosphere/ro.hpp>
|
||
|
|
||
|
namespace sts::ro::impl {
|
||
|
|
||
|
/* Definitions. */
|
||
|
constexpr size_t InvalidContextId = static_cast<size_t>(-1);
|
||
|
|
||
|
/* Access utilities. */
|
||
|
void SetDevelopmentHardware(bool is_development_hardware);
|
||
|
void SetDevelopmentFunctionEnabled(bool is_development_function_enabled);
|
||
|
bool IsDevelopmentHardware();
|
||
|
bool IsDevelopmentFunctionEnabled();
|
||
|
bool ShouldEaseNroRestriction();
|
||
|
|
||
|
/* Context utilities. */
|
||
|
Result RegisterProcess(size_t *out_context_id, Handle process_handle, u64 process_id);
|
||
|
Result ValidateProcess(size_t context_id, u64 process_id);
|
||
|
void UnregisterProcess(size_t context_id);
|
||
|
|
||
|
/* Service implementations. */
|
||
|
Result LoadNrr(size_t context_id, Handle process_h, u64 nrr_address, u64 nrr_size, ModuleType expected_type, bool enforce_type);
|
||
|
Result UnloadNrr(size_t context_id, u64 nrr_address);
|
||
|
Result LoadNro(u64 *out_address, size_t context_id, u64 nro_address, u64 nro_size, u64 bss_address, u64 bss_size);
|
||
|
Result UnloadNro(size_t context_id, u64 nro_address);
|
||
|
|
||
|
/* Debug service implementations. */
|
||
|
Result GetProcessModuleInfo(u32 *out_count, LoaderModuleInfo *out_infos, size_t max_out_count, u64 process_id);
|
||
|
|
||
|
}
|