Files
harbour-core/harbour/examples/gfspell/spell.ch
Viktor Szakats 749ddef12f 2009-08-20 21:26 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
+ examples/gfspell
  + examples/gfspell/spell.ng
  + examples/gfspell/spellc.c
  + examples/gfspell/gfspell.hbp
  + examples/gfspell/spell.prg
  + examples/gfspell/gfspell.hbc
  + examples/gfspell/spell.ch
  + examples/gfspell/words.dbf
  + examples/gfspell/readme.txt
    + Added Grumpfish Speller library port for Harbour.
      With kind permission of author Joseph D. Booth.
      Many thanks to Les Hughes for contributing this port 
      to Harbour.
    + Some modifications, added hbmk2 make files, did a few
      other cleanup.
    ; TOFIX: 'const' fixes revealed a few HVM corruption
             problems in original source. These have yet to be
             fixed.
2009-08-20 19:30:06 +00:00

21 lines
640 B
Plaintext

/*
* $Id$
*/
#define COMMON_WORDS 1
#define CACHE_WORDS 2
#define DICTIONARY_PATH 3
#define DICTIONARY_NAME 4
#define AUXILIARY_DICTIONARY 5
#define EXTRA_CODE_BLOCK 6
#define ADD_SUFFIXES 7
#define ADD_PREFIXES 8
#define ADD_PLURALS 9
#define SORT_SUGGESTIONS 10
#define SUGGEST_PREFERENCE 11
#define MINIMUM_WORD_LENGTH 12
#define METAPHONE_SIZE 13
#define MAX_DIFFERENCE 14
#define THESAURUS_NAME 15
#define CHECK_FOR_RUNONS 16