2023-10-04 12:00:32 +02:00
|
|
|
#include <hex/helpers/logger.hpp>
|
|
|
|
|
|
|
|
extern "C" void forceLinkPlugin_@IMHEX_PLUGIN_NAME@();
|
|
|
|
|
2024-01-06 22:13:35 +01:00
|
|
|
namespace {
|
2023-10-04 12:00:32 +02:00
|
|
|
struct StaticLoad {
|
|
|
|
StaticLoad() {
|
|
|
|
forceLinkPlugin_@IMHEX_PLUGIN_NAME@();
|
|
|
|
}
|
|
|
|
};
|
2024-01-06 22:13:35 +01:00
|
|
|
}
|
2023-10-04 12:00:32 +02:00
|
|
|
|
2024-01-06 22:13:35 +01:00
|
|
|
static StaticLoad staticLoad;
|