1
0
mirror of synced 2024-12-13 16:31:07 +01:00
ImHex/plugins/decompress/source/plugin_decompress.cpp

22 lines
462 B
C++
Raw Normal View History

2023-12-24 13:14:51 +01:00
#include <hex/plugin.hpp>
#include <hex/api/content_registry.hpp>
#include <hex/helpers/logger.hpp>
#include <romfs/romfs.hpp>
namespace hex::plugin::decompress {
void registerPatternLanguageFunctions();
}
using namespace hex;
using namespace hex::plugin::decompress;
IMHEX_PLUGIN_SETUP("Decompressing", "WerWolv", "Support for decompressing data") {
hex::log::debug("Using romfs: '{}'", romfs::name());
registerPatternLanguageFunctions();
}