1
0
mirror of synced 2024-11-15 11:33:23 +01:00
ImHex/plugins/libimhex/include/hex/api/imhex_api.hpp

32 lines
715 B
C++
Raw Normal View History

2021-01-20 20:16:24 +01:00
#pragma once
#include <hex.hpp>
#include <hex/helpers/utils.hpp>
#include <list>
namespace hex {
struct ImHexApi {
ImHexApi() = delete;
struct Bookmarks {
Bookmarks() = delete;
struct Entry {
Region region;
std::vector<char> name;
std::vector<char> comment;
u32 color;
};
static void add(Region region, std::string_view name, std::string_view comment, u32 color = 0x00000000);
static void add(u64 addr, size_t size, std::string_view name, std::string_view comment, u32 color = 0x00000000);
static std::list<Entry>& getEntries();
};
};
}