X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsupport%2FAppleSpeller.h;h=5910fba142bebd05535d9b427cb6c8d7425e3af4;hb=19024f725533b3dcdeddc318119e1379eb2c6837;hp=647471a52bf193ba18db0f4044e348b29229409f;hpb=fa3c8d68945027151f41a3ea751a06ec88eeda14;p=lyx.git diff --git a/src/support/AppleSpeller.h b/src/support/AppleSpeller.h index 647471a52b..5910fba142 100644 --- a/src/support/AppleSpeller.h +++ b/src/support/AppleSpeller.h @@ -28,15 +28,15 @@ typedef struct AppleSpellerRec * AppleSpeller ; AppleSpeller newAppleSpeller(void); void freeAppleSpeller(AppleSpeller speller); -SpellCheckResult checkAppleSpeller(AppleSpeller speller, const char * word, const char * lang); -void ignoreAppleSpeller(AppleSpeller speller, const char * word); -size_t makeSuggestionAppleSpeller(AppleSpeller speller, const char * word, const char * lang); -const char * getSuggestionAppleSpeller(AppleSpeller speller, size_t pos); -void learnAppleSpeller(AppleSpeller speller, const char * word); -void unlearnAppleSpeller(AppleSpeller speller, const char * word); -int hasLanguageAppleSpeller(AppleSpeller speller, const char * lang); -int numMisspelledWordsAppleSpeller(AppleSpeller speller); -void misspelledWordAppleSpeller(AppleSpeller speller, int const position, int * start, int * length); +SpellCheckResult AppleSpeller_check(AppleSpeller speller, const char * word, const char * lang); +void AppleSpeller_ignore(AppleSpeller speller, const char * word); +size_t AppleSpeller_makeSuggestion(AppleSpeller speller, const char * word, const char * lang); +const char * AppleSpeller_getSuggestion(AppleSpeller speller, size_t pos); +void AppleSpeller_learn(AppleSpeller speller, const char * word); +void AppleSpeller_unlearn(AppleSpeller speller, const char * word); +int AppleSpeller_hasLanguage(AppleSpeller speller, const char * lang); +int AppleSpeller_numMisspelledWords(AppleSpeller speller); +void AppleSpeller_misspelledWord(AppleSpeller speller, int index, int * start, int * length); #ifdef __cplusplus } // extern "C"