1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-23 10:27:05 +00:00
Ryujinx/Ryujinx.HLE/HOS/Services/Sfdnsres/NetDBError.cs
2018-12-01 14:03:56 -06:00

13 lines
227 B
C#

namespace Ryujinx.HLE.HOS.Services.Sfdnsres
{
enum NetDbError
{
Internal = -1,
Success,
HostNotFound,
TryAgain,
NoRecovery,
NoData,
NoAddress = NoData,
}
}