|
|
|
@ -12,14 +12,6 @@
|
|
|
|
|
|
|
|
|
|
// All the constants in this file come from http://switchbrew.org/index.php?title=Error_codes
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Detailed description of the error. Code 0 always means success.
|
|
|
|
|
*/
|
|
|
|
|
enum class ErrorDescription : u32 {
|
|
|
|
|
Success = 0,
|
|
|
|
|
RemoteProcessDead = 301,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Identifies the module which caused the error. Error codes can be propagated through a call
|
|
|
|
|
* chain, meaning that this doesn't always correspond to the module where the API call made is
|
|
|
|
@ -120,7 +112,7 @@ enum class ErrorModule : u32 {
|
|
|
|
|
ShopN = 811,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// Encapsulates a CTR-OS error code, allowing it to be separated into its constituent fields.
|
|
|
|
|
/// Encapsulates a Horizon OS error code, allowing it to be separated into its constituent fields.
|
|
|
|
|
union ResultCode {
|
|
|
|
|
u32 raw;
|
|
|
|
|
|
|
|
|
@ -133,17 +125,9 @@ union ResultCode {
|
|
|
|
|
|
|
|
|
|
constexpr explicit ResultCode(u32 raw) : raw(raw) {}
|
|
|
|
|
|
|
|
|
|
constexpr ResultCode(ErrorModule module, ErrorDescription description)
|
|
|
|
|
: ResultCode(module, static_cast<u32>(description)) {}
|
|
|
|
|
|
|
|
|
|
constexpr ResultCode(ErrorModule module_, u32 description_)
|
|
|
|
|
: raw(module.FormatValue(module_) | description.FormatValue(description_)) {}
|
|
|
|
|
|
|
|
|
|
constexpr ResultCode& operator=(const ResultCode& o) {
|
|
|
|
|
raw = o.raw;
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
constexpr bool IsSuccess() const {
|
|
|
|
|
return raw == 0;
|
|
|
|
|
}
|
|
|
|
|