1
0
forked from MeloNX/MeloNX

Add two error codes to SDB PDM (#1230)

* Add two error codes to SDB PDM

The error codes were taken from Switchbrew (https://switchbrew.org/wiki/Error_codes)

* Remove empty line
This commit is contained in:
VolcaEM 2020-05-09 10:57:19 +02:00 committed by GitHub
parent f29f9f55ea
commit 5f0e7d9f14

View File

@ -7,7 +7,9 @@
Success = 0,
InvalidUserID = (100 << ErrorCodeShift) | ModuleId,
UserNotFound = (101 << ErrorCodeShift) | ModuleId,
ServiceUnavailable = (150 << ErrorCodeShift) | ModuleId
ServiceUnavailable = (150 << ErrorCodeShift) | ModuleId,
FileStorageFailure = (200 << ErrorCodeShift) | ModuleId
}
}
}