14 lines
227 B
C#
14 lines
227 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
|||
|
{
|
|||
|
enum NetDBError
|
|||
|
{
|
|||
|
Internal = -1,
|
|||
|
Success,
|
|||
|
HostNotFound,
|
|||
|
TryAgain,
|
|||
|
NoRecovery,
|
|||
|
NoData,
|
|||
|
NoAddress = NoData,
|
|||
|
}
|
|||
|
}
|