1
0
mirror of synced 2024-11-28 17:40:51 +01:00
ImHex/main/gui/include/stacktrace.hpp

25 lines
394 B
C++

#pragma once
#include <hex.hpp>
#include <string>
#include <vector>
namespace hex::stacktrace {
struct StackFrame {
std::string file;
std::string function;
u32 line;
};
void initialize();
struct StackTraceResult {
std::vector<StackFrame> stackFrames;
std::string implementationName;
};
StackTraceResult getStackTrace();
}