mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:48:36 +00:00
24 lines
756 B
C#
24 lines
756 B
C#
|
using Ryujinx.Horizon.Sdk.OsTypes;
|
|||
|
using Ryujinx.Horizon.Sdk.Sf.Cmif;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Sdk.Sf.Hipc
|
|||
|
{
|
|||
|
class ServerSession : MultiWaitHolderOfHandle
|
|||
|
{
|
|||
|
public ServiceObjectHolder ServiceObjectHolder { get; set; }
|
|||
|
public PointerAndSize PointerBuffer { get; set; }
|
|||
|
public PointerAndSize SavedMessage { get; set; }
|
|||
|
public int SessionIndex { get; }
|
|||
|
public int SessionHandle { get; }
|
|||
|
public bool IsClosed { get; set; }
|
|||
|
public bool HasReceived { get; set; }
|
|||
|
|
|||
|
public ServerSession(int index, int handle, ServiceObjectHolder obj) : base(handle)
|
|||
|
{
|
|||
|
ServiceObjectHolder = obj;
|
|||
|
SessionIndex = index;
|
|||
|
SessionHandle = handle;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|