feat: Add ignore case and UTF16 search options to sequence searching

This commit is contained in:
WerWolv
2023-12-19 14:34:35 +01:00
parent c7ab4a4569
commit 96db2074c6
6 changed files with 150 additions and 9 deletions

View File

@@ -63,6 +63,9 @@ namespace hex::plugin::builtin {
struct Sequence {
std::string sequence;
StringType type = StringType::ASCII;
bool ignoreCase = false;
} bytes;
struct Regex {