Implement IResolver (#442)

* Implement IResolver

- GetAddrInfo & GetNameInfo still need to be implemented.

* Address comments

* Use MakeError
This commit is contained in:
Thomas Guillemard 2018-10-10 01:15:07 +02:00 committed by Ac_K
parent d5c0de8362
commit b2063be597
3 changed files with 414 additions and 1 deletions

View file

@ -0,0 +1,22 @@
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
{
enum GaiError
{
Success,
AddressFamily,
Again,
BadFlags,
Fail,
Family,
Memory,
NoData,
NoName,
Service,
SocketType,
System,
BadHints,
Protocol,
Overflow,
Max,
}
}