mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-03-11 22:15:34 +00:00
* Start refactoring IPC objects (started with IFile and IFileSystem) * End refactoring IPC objects (#8) * End refactoring IPC objects * End refactoring IPC objects corrections
10 lines
No EOL
210 B
C#
10 lines
No EOL
210 B
C#
using Ryujinx.OsHle.Ipc;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.OsHle.Objects
|
|
{
|
|
interface IIpcInterface
|
|
{
|
|
IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
|
|
}
|
|
} |