mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-12 05:54:17 +00:00
16 lines
339 B
C#
16 lines
339 B
C#
using Ryujinx.Horizon.Sdk.Diag;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Lm
|
|
{
|
|
struct LogPacketHeader
|
|
{
|
|
public ulong ProcessId;
|
|
public ulong ThreadId;
|
|
public LogPacketFlags Flags;
|
|
public byte Padding;
|
|
public LogSeverity Severity;
|
|
public byte Verbosity;
|
|
public uint PayloadSize;
|
|
}
|
|
}
|