mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-02 17:40:47 -07: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);
|
|
}
|
|
} |