Files
harbour-core/harbour/extras/gfspell/spell.ch
Viktor Szakats 221518f8d5 2012-11-11 12:51 UTC+0100 Viktor Szakats (harbour syenar.net)
* utils/hbmk2/hbmk2.prg
    ! fixed to automatically create target directory
      for import library, if any.

  * extras/hbusb/hbusb.hbp
    * making options more uniform
    ; TODO: apply these to other 'extras' libs

  * extras/gfspell/spellc.c
    ! fixed compilation errors in spellc.c.
    ! fixed non-ANSI C comments.
    ! fixed warnings.
    * removed excessive parenthesis

  + extras/gfspell/gfspell.hbx
  * extras/gfspell/gfspell.hbp
    + added .hbx file
    + added option to build dynamic lib

  * extras/gfspell/spell.ch
  * extras/gfspell/spell.prg
    ! fixed to use lower-case filenames
    ! fixed '=' operators
    ! fixed BIT() calls to have the 1st param passed by ref
    ! fixed some formatting errors left by hbformat (notably: "{|xx|")
    ! disabled permanently enabled debug screen messages
    ! fixed to not leave temporary index on disk
    + some changes to make code more unicode compatible (incomplete)
    * Use F_ERROR
    * hbformatted using new .hbx
    % use hb_FileExists()
    ; NOTE: Strangely all this is not enough to make this
      work, because crucial files are missing from this packages,
      f.e. dict.dic and thes.dic. Anybody has these?

  * extras/gfspell/words.dbf
    ! fixed field name to be WORD (not W_ORD). I'm not even
      sure how this can go wrong, byt anyways.

  * contrib/hbnf/menuto.prg
    * minor
2012-11-11 11:52:20 +00:00

21 lines
647 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