Added copy programming language array to hex editor

This commit is contained in:
WerWolv
2020-11-20 11:57:14 +01:00
parent 34b8f481e1
commit e4879f7546
2 changed files with 126 additions and 6 deletions

View File

@@ -50,8 +50,11 @@ namespace hex {
void drawGotoPopup();
void openFile(std::string path);
enum class Language { C, Cpp, CSharp, Rust, Python, Java, JavaScript };
void copyBytes();
void copyString();
void copyLanguageArray(Language language);
};