2020-12-27 14:39:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <imgui.h>
|
2021-08-28 16:15:20 +00:00
|
|
|
#define IMGUI_DEFINE_MATH_OPERATORS
|
2021-08-20 22:52:11 +00:00
|
|
|
#include <imgui_internal.h>
|
2020-12-27 14:39:06 +00:00
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2022-02-02 16:19:50 +00:00
|
|
|
#define IMHEX_PLUGIN_SETUP(name, author, description) IMHEX_PLUGIN_SETUP_IMPL(name, author, description)
|
2021-02-07 12:40:47 +00:00
|
|
|
|
2022-02-02 16:19:50 +00:00
|
|
|
#define IMHEX_PLUGIN_SETUP_IMPL(name, author, description) \
|
2022-01-24 19:53:17 +00:00
|
|
|
extern "C" [[gnu::visibility("default")]] const char *getPluginName() { return name; } \
|
|
|
|
extern "C" [[gnu::visibility("default")]] const char *getPluginAuthor() { return author; } \
|
|
|
|
extern "C" [[gnu::visibility("default")]] const char *getPluginDescription() { return description; } \
|
|
|
|
extern "C" [[gnu::visibility("default")]] const char *getCompatibleVersion() { return IMHEX_VERSION; } \
|
|
|
|
extern "C" [[gnu::visibility("default")]] void setImGuiContext(ImGuiContext *ctx) { \
|
|
|
|
ImGui::SetCurrentContext(ctx); \
|
|
|
|
GImGui = ctx; \
|
|
|
|
} \
|
2022-01-23 22:28:56 +00:00
|
|
|
extern "C" [[gnu::visibility("default")]] void initializePlugin()
|