mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 22:20:46 -07:00
13 lines
222 B
C#
13 lines
222 B
C#
using System.Net.Sockets;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bsd
|
|
{
|
|
internal class BsdSocket
|
|
{
|
|
public int Family;
|
|
public int Type;
|
|
public int Protocol;
|
|
|
|
public Socket Handle;
|
|
}
|
|
} |