mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 22:46:39 +00:00
0039bb6394
* 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;
|
|
}
|
|
}
|
|
} |