Ryujinx/Ryujinx.HLE/HOS/Kernel/Process/KHandleEntry.cs
gdkchan 0039bb6394
Refactor SVC handler (#540)
* Refactor SVC handler

* Get rid of KernelErr

* Split kernel code files into multiple folders
2018-12-18 03:33:36 -02:00

17 lines
352 B
C#

namespace Ryujinx.HLE.HOS.Kernel.Process
{
class KHandleEntry
{
public KHandleEntry Next { get; set; }
public int Index { get; private set; }
public ushort HandleId { get; set; }
public object Obj { get; set; }
public KHandleEntry(int index)
{
Index = index;
}
}
}