123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- type
- PAspellCanHaveError = Pointer;
- PAspellConfig = Pointer;
- PAspellDictInfoEnumeration = Pointer;
- PAspellDictInfoList = Pointer;
- PAspellDocumentChecker = Pointer;
- PAspellFilter = Pointer;
- PAspellKeyInfoEnumeration = Pointer;
- PAspellModuleInfoEnumeration = Pointer;
- PAspellModuleInfoList = Pointer;
- PAspellMutableContainer = Pointer;
- PAspellSpeller = Pointer;
- PAspellStringEnumeration = Pointer;
- PAspellStringList = Pointer;
- PAspellStringMap = Pointer;
- PAspellStringPairEnumeration = Pointer;
- PAspellWordList = Pointer;
- {****************************** type id ****************************** }
- type
- PAspellTypeId = ^AspellTypeId;
- AspellTypeId = record
- case longint of
- 0 : ( num : cuint );
- 1 : ( str : array[0..3] of char );
- end;
- {****************************** key info ****************************** }
- PAspellKeyInfoType = ^AspellKeyInfoType;
- AspellKeyInfoType = (AspellKeyInfoString,AspellKeyInfoInt,
- AspellKeyInfoBool,AspellKeyInfoList
- );
- { A brief description of the key or NULL if internal value. }
- PAspellKeyInfo = ^AspellKeyInfo;
- AspellKeyInfo = record
- name : pchar;
- _type : AspellKeyInfoType;
- def : pchar;
- desc : pchar;
- flags : cint;
- other_data : cint;
- end;
- {****************************** error ****************************** }
- PAspellErrorInfo = ^AspellErrorInfo;
- AspellErrorInfo = record
- isa : PAspellErrorInfo;
- mesg : pchar;
- num_parms : cuint;
- parms : array[0..2] of pchar;
- end;
- PAspellError = ^AspellError;
- AspellError = record
- mesg : pchar;
- err : PAspellErrorInfo;
- end;
- {****************************** token ****************************** }
- PAspellToken = ^AspellToken;
- AspellToken = record
- offset : cuint;
- len : cuint;
- end;
- {*************************** module/dict *************************** }
- PAspellModuleInfo = ^AspellModuleInfo;
- AspellModuleInfo = record
- name : pchar;
- order_num : double;
- lib_dir : pchar;
- dict_dirs : PAspellStringList;
- dict_exts : PAspellStringList;
- end;
- { The Name to identify this dictionary by. }
- { The language code to identify this dictionary.
- * A two letter UPPER-CASE ISO 639 language code
- * and an optional two letter ISO 3166 country
- * code after a dash or underscore. }
- { Any extra information to distinguish this
- * variety of dictionary from other dictionaries
- * which may have the same language and size. }
- { A two char digit code describing the size of
- * the dictionary: 10=tiny, 20=really small,
- * 30=small, 40=med-small, 50=med, 60=med-large,
- * 70=large, 80=huge, 90=insane. Please check
- * the README in aspell-lang-200?????.tar.bz2 or
- * see SCOWL (http://wordlist.sourceforge.net)
- * for an example of how these sizes are used. }
- PAspellDictInfo = ^AspellDictInfo;
- AspellDictInfo = record
- name : pchar;
- code : pchar;
- jargon : pchar;
- size : cint;
- size_str : pchar;
- module : PAspellModuleInfo;
- end;
- {**************************** string pair **************************** }
- PAspellStringPair = ^AspellStringPair;
- AspellStringPair = record
- first : pchar;
- second : pchar;
- end;
|