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