home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
VRAC
/
SPLMATE1.ZIP
/
SPELL.PA$
/
spell.pas
Wrap
Pascal/Delphi Source File
|
1993-05-07
|
611b
|
26 lines
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.