mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-19 13:25:54 +01:00
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);
|
|||
|
}
|
|||
|
}
|