mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 10:05:25 +00:00
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,
|
|
}
|
|
}
|