feat: Added decompressing support

This commit is contained in:
WerWolv
2023-12-24 13:14:51 +01:00
parent 9066891ce2
commit e2489151f3
17 changed files with 134 additions and 63 deletions

View File

@@ -0,0 +1,21 @@
#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();
}