11 lines
216 B
C++
11 lines
216 B
C++
|
#include <hex/helpers/logger.hpp>
|
||
|
|
||
|
extern "C" void forceLinkPlugin_@IMHEX_PLUGIN_NAME@();
|
||
|
|
||
|
struct StaticLoad {
|
||
|
StaticLoad() {
|
||
|
forceLinkPlugin_@IMHEX_PLUGIN_NAME@();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
static StaticLoad staticLoad;
|