ImHex/include/views/highlight.hpp

20 lines
336 B
C++
Raw Normal View History

2020-11-10 20:31:04 +00:00
#pragma once
#include <hex.hpp>
#include <string>
namespace hex {
struct Highlight {
Highlight(u64 offset, size_t size, u32 color, std::string name)
: offset(offset), size(size), color(color), name(name) {
}
u64 offset;
size_t size;
u32 color;
std::string name;
};
}