mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-26 11:41:29 +01:00
8 lines
158 B
C#
8 lines
158 B
C#
|
namespace Ryujinx.Core.OsHle.Services.Bsd
|
||
|
{
|
||
|
//bsd_errno == (SocketException.ErrorCode - 10000)
|
||
|
public enum BsdError
|
||
|
{
|
||
|
Timeout = 60
|
||
|
}
|
||
|
}
|