mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-03 20:02:45 -05:00
12 lines
250 B
C#
12 lines
250 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);
|
|
}
|
|
}
|