feat: Added binary pattern search to find view

This commit is contained in:
WerWolv
2022-08-03 10:19:34 +02:00
parent 1d9e8dbda7
commit 0ac8fcd1eb
11 changed files with 136 additions and 8 deletions

View File

@@ -326,6 +326,8 @@ namespace hex {
return remainder != 0 ? value + (alignment - remainder) : value;
}
std::optional<u8> hexCharToValue(char c);
bool isProcessElevated();
std::optional<std::string> getEnvironmentVariable(const std::string &env);