mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-05 09:17:43 +02:00

* Refactor SVC handler * Get rid of KernelErr * Split kernel code files into multiple folders
17 lines
No EOL
352 B
C#
17 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |