mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 17:38:32 +00:00
11 lines
252 B
C#
11 lines
252 B
C#
|
using Ryujinx.Horizon.Common;
|
|||
|
using Ryujinx.Horizon.LogManager.Ipc;
|
|||
|
using Ryujinx.Horizon.Sdk.Sf;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Sdk.Lm
|
|||
|
{
|
|||
|
interface ILogService : IServiceObject
|
|||
|
{
|
|||
|
Result OpenLogger(out LmLogger logger, ulong pid);
|
|||
|
}
|
|||
|
}
|