Added hex editor and basic pattern parsing/highlighting

This commit is contained in:
WerWolv
2020-11-10 15:26:38 +01:00
parent 83331429b7
commit cbe302a004
41 changed files with 56013 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
#include "result.hpp"
namespace hex::lang {
constexpr Result ResultSuccess(0, 0);
constexpr Result ResultLexicalError(1, 1);
constexpr Result ResultParseError(2, 1);
}