mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
0039bb6394
* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
17 lines
352 B
C#
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;
|
|
}
|
|
}
|
|
} |