1
0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-22 09:51:57 -08:00

8 lines
148 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Bsd
{
//bsd_errno == (SocketException.ErrorCode - 10000)
enum BsdError
{
Timeout = 60
}
}