17 lines
339 B
C#
17 lines
339 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Zodiacon.DebugHelp
|
|
{
|
|
// Token: 0x02000011 RID: 17
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
public struct SOURCEFILE
|
|
{
|
|
// Token: 0x04000057 RID: 87
|
|
public ulong ModuleBase;
|
|
|
|
// Token: 0x04000058 RID: 88
|
|
public unsafe char* FileName;
|
|
}
|
|
}
|