2021-09-16 06:10:11 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2021-09-16 06:10:11 +00:00
|
|
|
*
|
|
|
|
* 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 <vapours/results/results_common.hpp>
|
|
|
|
|
2022-03-10 09:15:45 +00:00
|
|
|
R_DEFINE_NAMESPACE_RESULT_MODULE(ams::sprofile, 246);
|
2021-09-16 06:10:11 +00:00
|
|
|
|
2022-03-10 09:15:45 +00:00
|
|
|
namespace ams::sprofile {
|
2021-09-16 06:10:11 +00:00
|
|
|
|
2021-09-16 07:07:06 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(InvalidArgument, 100);
|
|
|
|
R_DEFINE_ERROR_RESULT(InvalidState, 101);
|
|
|
|
|
2021-09-16 23:14:26 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(NotPermitted, 303);
|
|
|
|
|
2021-09-16 06:10:11 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(AllocationFailed, 401);
|
|
|
|
|
2021-09-16 23:14:26 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(KeyNotFound, 600);
|
|
|
|
R_DEFINE_ERROR_RESULT(InvalidDataType, 601);
|
|
|
|
|
2021-09-16 06:10:11 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(MaxListeners, 620);
|
|
|
|
R_DEFINE_ERROR_RESULT(AlreadyListening, 621);
|
|
|
|
R_DEFINE_ERROR_RESULT(NotListening, 622);
|
|
|
|
R_DEFINE_ERROR_RESULT(MaxObservers, 623);
|
|
|
|
|
2021-09-16 07:07:06 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(InvalidMetadataVersion, 3210);
|
2021-10-26 07:51:44 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(InvalidMetadataHash, 3211);
|
2021-09-16 23:14:26 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(InvalidDataVersion, 3230);
|
2021-10-26 07:51:44 +00:00
|
|
|
R_DEFINE_ERROR_RESULT(InvalidDataHash, 3231);
|
2021-09-16 07:07:06 +00:00
|
|
|
|
2021-09-16 06:10:11 +00:00
|
|
|
}
|