2020-12-27 15:39:06 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <glad/glad.h>
|
|
|
|
#include <imgui.h>
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
2021-01-20 20:16:24 +01:00
|
|
|
#include <hex/api/imhex_api.hpp>
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <hex/api/content_registry.hpp>
|
|
|
|
#include <hex/views/view.hpp>
|
|
|
|
#include <hex/providers/provider.hpp>
|
|
|
|
#include <hex/helpers/shared_data.hpp>
|
2021-01-30 22:39:06 +01:00
|
|
|
#include <hex/data_processor/node.hpp>
|
2020-12-27 15:39:06 +01:00
|
|
|
|
2021-01-13 01:24:27 +01:00
|
|
|
#define IMHEX_PLUGIN_SETUP namespace hex::plugin::internal { \
|
|
|
|
void initializePlugin(); \
|
|
|
|
} \
|
|
|
|
void hex::plugin::internal::initializePlugin()
|