12 lines
266 B
C#
12 lines
266 B
C#
|
using Ryujinx.Horizon.Common;
|
|||
|
using Ryujinx.Horizon.Sdk.Sf;
|
|||
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Sdk.Lm
|
|||
|
{
|
|||
|
interface ILmLogger : IServiceObject
|
|||
|
{
|
|||
|
Result Log(Span<byte> message);
|
|||
|
Result SetDestination(LogDestination destination);
|
|||
|
}
|
|||
|
}
|