feat: Added support for scanning binaries for UTF-8 strings

This commit is contained in:
WerWolv
2025-01-09 18:33:45 +01:00
parent f1d9642cf6
commit e2c302836f
3 changed files with 52 additions and 6 deletions

View File

@@ -1024,7 +1024,7 @@ namespace hex {
struct FindOccurrence {
Region region;
enum class DecodeType { ASCII, Binary, UTF16, Unsigned, Signed, Float, Double } decodeType;
enum class DecodeType { ASCII, UTF8, Binary, UTF16, Unsigned, Signed, Float, Double } decodeType;
std::endian endian = std::endian::native;
bool selected;
};