home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Direkt 1995 #1
/
Image.iso
/
cdd
/
winanw2
/
spelmate
/
spelmate.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-13
|
797b
|
28 lines
/* spelmate.h */
/* interface to Spelmate.dll */
/* (c), 1993 Stewart McSporran for Aciran Software */
#ifndef __SPELMATE_H
#define __SPELMATE_H
#include <windows.h> /* <windows.h> must be included for types*/
#ifdef __cplusplus
extern "C" { /* Assume C declarations for C++ */
#endif
/* Function prototypes from SpelMate.DLL */
int far _export PASCAL SpelmateInit(void);
BOOL far _export PASCAL SpellCheck(LPSTR pWord);
void far _export PASCAL AddWord(LPSTR pWord);
void far _export PASCAL IgnoreWord(LPSTR pWord);
LPSTR far _export PASCAL SuggestWord(LPSTR pWord);
void far _export PASCAL SuggestVBWord(LPSTR pWord);
void far _export PASCAL DisplayAtTop();
#ifdef __cplusplus
} /* End of extern "C" { */
#endif
#endif