home *** CD-ROM | disk | FTP | other *** search
- Unit Spell;
-
- interface
- uses WinTypes,
- WinProcs,
- WinDos,
- Strings,
- Objects,
- OWindows,
- ODialogs,
- OStdDlgs;
-
- function SpelMateInit:integer;
- function Spellcheck(Word:PChar):Boolean;
- procedure AddWord(Word:PChar);
- procedure IgnoreWord(Word:PChar);
- function SuggestWord(Word:PChar):Pchar;
-
- implementation
-
- function SpelmateInit;external 'SpelMate' index 1;
- function SpellCheck; external 'Spelmate' index 2;
- procedure AddWord;external 'spelmate' index 3;
- procedure IgnoreWord;external 'spelmate' index 4;
- function SuggestWord;external 'spelmate' index 5;
- end.