mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-31 14:58:22 -04:00
htc: implement socket driver (socket api not really impl'd yet)
This commit is contained in:
parent
b5ab491603
commit
1c974a387c
31 changed files with 1389 additions and 35 deletions
|
@ -19,10 +19,21 @@
|
|||
namespace ams::socket {
|
||||
|
||||
enum class Errno : u32 {
|
||||
ESuccess = 0,
|
||||
ESuccess = 0,
|
||||
/* ... */
|
||||
ENoSpc = 28,
|
||||
EAgain = 11,
|
||||
ENoMem = 12,
|
||||
/* ... */
|
||||
EFault = 14,
|
||||
/* ... */
|
||||
EInval = 22,
|
||||
/* ... */
|
||||
ENoSpc = 28,
|
||||
/* ... */
|
||||
EL3Hlt = 46,
|
||||
/* ... */
|
||||
EOpNotSupp = 95,
|
||||
ENotSup = EOpNotSupp,
|
||||
};
|
||||
|
||||
enum class HErrno : s32 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue