mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
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; |