25 lines
576 B
C
25 lines
576 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace il2cpp
|
||
|
{
|
||
|
namespace utils
|
||
|
{
|
||
|
struct SourceLocation
|
||
|
{
|
||
|
const char* filePath;
|
||
|
uint32_t lineNumber;
|
||
|
};
|
||
|
|
||
|
class DebugSymbolReader
|
||
|
{
|
||
|
public:
|
||
|
static bool LoadDebugSymbols();
|
||
|
static bool GetSourceLocation(void* nativeInstructionPointer, SourceLocation& sourceLocation);
|
||
|
static bool AddStackFrames(void* nativeInstructionPointer, std::vector<Il2CppStackFrameInfo>* stackFrames);
|
||
|
static bool DebugSymbolsAvailable();
|
||
|
};
|
||
|
} /* namespace utils */
|
||
|
} /* namespace il2cpp */
|