1
0
mirror of synced 2024-12-01 02:37:18 +01:00
ImHex/main/gui/include/stacktrace.hpp

20 lines
278 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();
std::vector<StackFrame> getStackTrace();
}