mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 22:20:46 -07:00
14 lines
236 B
C#
14 lines
236 B
C#
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
|
{
|
|
internal enum NetDbError
|
|
{
|
|
Internal = -1,
|
|
Success,
|
|
HostNotFound,
|
|
TryAgain,
|
|
NoRecovery,
|
|
NoData,
|
|
NoAddress = NoData,
|
|
}
|
|
}
|