Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

43 lines
1.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using Backtrace.Unity.Types;
using Cpp2IlInjected;
namespace Backtrace.Unity.Common
{
// Token: 0x0200004D RID: 77
[Token(Token = "0x2000038")]
internal static class MinidumpHelper
{
// Token: 0x06000232 RID: 562 RVA: 0x00002894 File Offset: 0x00000A94
[Token(Token = "0x60001D9")]
[Address(RVA = "0x2C20E00", Offset = "0x2C1FE00", VA = "0x182C20E00")]
private static bool IsMemoryDumpAvailable()
{
return default(bool);
}
// Token: 0x06000233 RID: 563
[Token(Token = "0x60001DA")]
[Address(RVA = "0x2C210B0", Offset = "0x2C200B0", VA = "0x182C210B0")]
internal static extern bool MiniDumpWriteDump(IntPtr hProcess, uint processId, SafeHandle hFile, uint dumpType, ref MiniDumpExceptionInformation expParam, IntPtr userStreamParam, IntPtr callbackParam);
// Token: 0x06000234 RID: 564
[Token(Token = "0x60001DB")]
[Address(RVA = "0x2C20F80", Offset = "0x2C1FF80", VA = "0x182C20F80")]
internal static extern bool MiniDumpWriteDump(IntPtr hProcess, uint processId, SafeHandle hFile, uint dumpType, IntPtr expParam, IntPtr userStreamParam, IntPtr callbackParam);
// Token: 0x06000235 RID: 565 RVA: 0x000028AC File Offset: 0x00000AAC
[Token(Token = "0x60001DC")]
[Address(RVA = "0x2C21220", Offset = "0x2C20220", VA = "0x182C21220")]
internal static bool Write(string filePath, MiniDumpType options = MiniDumpType.WithFullMemory, MinidumpException exceptionType = MinidumpException.None)
{
return default(bool);
}
// Token: 0x0400017A RID: 378
[Token(Token = "0x4000120")]
private static readonly string[] Libraries;
}
}