1 #ifndef LIBRARIES_SPELLCHECKER_H 2 #define LIBRARIES_SPELLCHECKER_H 3 4 /* 5 spellchecker.library include 6 7 Copyright © 2013 Antoine Dubourg 8 */ 9 10 11 #ifndef UTILITY_TAGITEM_H 12 #include <utility/tagitem.h> 13 #endif 14 15 #define SPELLCHECKER_NAME "spellchecker.library" 16 #define SPELLCHECKER_VERSION 51 17 18 #define SCA_Dummy TAG_USER 19 20 /* DEPRECATED */ 21 #define SCA_Levenshtein_Distance (SCA_Dummy + 1) 22 23 #define SCA_UTF8 (SCA_Dummy + 2) 24 #define SCA_Name (SCA_Dummy + 3) 25 #define SCA_Default (SCA_Dummy + 4) 26 #define SCA_WaitOpen (SCA_Dummy + 5) 27 28 #endif /* LIBRARIES_SPELLCHECKER_H */ 29