1
0
mirror of synced 2024-11-19 05:17:12 +01:00
ImHex/include/views/highlight.hpp

25 lines
469 B
C++

#pragma once
#include <hex.hpp>
#include <string>
namespace hex {
struct VariableType {
size_t size;
enum class Kind { Unsigned, Signed, FloatingPoint } kind;
};
struct Highlight {
Highlight(u64 offset, VariableType type, u32 color, std::string name)
: offset(offset), type(type), color(color), name(name) {
}
u64 offset;
VariableType type;
u32 color;
std::string name;
};
}