diff options
Diffstat (limited to 'libalee/dictionary.hpp')
-rw-r--r-- | libalee/dictionary.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libalee/dictionary.hpp b/libalee/dictionary.hpp index 78bc19d..d465e60 100644 --- a/libalee/dictionary.hpp +++ b/libalee/dictionary.hpp @@ -75,6 +75,7 @@ public: constexpr static Cell Immediate = (1 << 5); constexpr static Cell DistancePos = 6; + /** Maximum "short" distance between two definitions. */ constexpr static Cell MaxDistance = (1 << (sizeof(Cell) * 8 - DistancePos)) - 1; @@ -157,6 +158,8 @@ public: */ void addDefinition(Word word) noexcept; + void addNativeWord(const char *s, void (*func)(State&)); + /** * Searches the dictionary for an entry for the given word. * @param word The dictionary-stored word to search for. |