htc: add RpcTaskQueue/RpcTaskIdFreeList

This commit is contained in:
Michael Scire 2021-02-10 00:59:46 -08:00 committed by SciresM
parent 82757cd1b4
commit 1867c31f63
7 changed files with 214 additions and 16 deletions

View file

@ -23,6 +23,11 @@ namespace ams::htc {
R_DEFINE_ERROR_RESULT(ConnectionFailure, 1);
R_DEFINE_ERROR_RESULT(NotFound, 2);
R_DEFINE_ERROR_RESULT(NotEnoughBuffer, 3);
R_DEFINE_ERROR_RESULT(Cancelled, 101);
R_DEFINE_ERROR_RESULT(Unknown, 1023);
R_DEFINE_ERROR_RESULT(OutOfRpcTask, 2102);
}