mirror of
				https://github.com/Atmosphere-NX/Atmosphere.git
				synced 2025-10-31 03:05:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.7 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 "results_common.hpp"
 | |
| 
 | |
| namespace ams::ldr {
 | |
| 
 | |
|     R_DEFINE_NAMESPACE_RESULT_MODULE(9);
 | |
| 
 | |
|     R_DEFINE_ERROR_RESULT(TooLongArgument,       1);
 | |
|     R_DEFINE_ERROR_RESULT(TooManyArguments,      2);
 | |
|     R_DEFINE_ERROR_RESULT(TooLargeMeta,          3);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidMeta,           4);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidNso,            5);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidPath,           6);
 | |
|     R_DEFINE_ERROR_RESULT(TooManyProcesses,      7);
 | |
|     R_DEFINE_ERROR_RESULT(NotPinned,             8);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidProgramId,      9);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidVersion,        10);
 | |
| 
 | |
|     R_DEFINE_ERROR_RESULT(InsufficientAddressSpace,     51);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidNro,                   52);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidNrr,                   53);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidSignature,             54);
 | |
|     R_DEFINE_ERROR_RESULT(InsufficientNroRegistrations, 55);
 | |
|     R_DEFINE_ERROR_RESULT(InsufficientNrrRegistrations, 56);
 | |
|     R_DEFINE_ERROR_RESULT(NroAlreadyLoaded,             57);
 | |
| 
 | |
|     R_DEFINE_ERROR_RESULT(InvalidAddress,        81);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidSize,           82);
 | |
|     R_DEFINE_ERROR_RESULT(NotLoaded,             84);
 | |
|     R_DEFINE_ERROR_RESULT(NotRegistered,         85);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidSession,        86);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidProcess,        87);
 | |
| 
 | |
|     R_DEFINE_ERROR_RESULT(UnknownCapability,                100);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityKernelFlags,     103);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilitySyscallMask,     104);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityMapRange,        106);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityMapPage,         107);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityInterruptPair,   111);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityApplicationType, 113);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityKernelVersion,   114);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityHandleTable,     115);
 | |
|     R_DEFINE_ERROR_RESULT(InvalidCapabilityDebugFlags,      116);
 | |
| 
 | |
|     R_DEFINE_ERROR_RESULT(InternalError, 200);
 | |
| 
 | |
| }
 |