Add OS thread ID info to the Resource Logger

This commit is contained in:
Exter-N 2025-07-04 19:41:31 +02:00
parent 62e9dc164d
commit 30e3cd1f38
3 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,7 @@
namespace Penumbra.Interop;
public static partial class ProcessThreadApi
{
[LibraryImport("kernel32.dll")]
public static partial uint GetCurrentThreadId();
}