Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / C++
Article

Using the Microsoft Common Spell API

Rate me:
Please Sign up or sign in to vote.
4.09/5 (7 votes)
14 Jun 20011 min read 196.7K   2.8K   32   40
An introduction to using the Microsoft CSAPI.

Introduction

Searching around in MSDN trying to find how to use the MS Office spell checker, I found a "fantastic" OLE solution:

  1. Run Word
  2. Push the word to be checked into Word
  3. Get the result.

Thanks very much :(

Then I found this. Through them, I got the Microsoft Common Spell API (CSAPI).

CSAPI

To ensure I respect copyright, I cut the smallest possible example using the default dictionary only, and ignored possible error states or exceptions. You will probably need to modify it for your language and paths (I'm not reading paths from registry).

Below is some sample code that illustrates how to use the SDK.

#include "windows.h"
#include "csapi.h" //with typedef unsigned char CHAR; removed

typedef WORD (*SpellInit_fn) (SPLID FAR *lpSid,
                              WSC FAR  *lpWsc);

typedef WORD (*SpellOpenMdr_fn)(SPLID    splid,
                                LPSPATH  lpspathMain,
                                LPSPATH  lpspathExc,
                                BOOL     fCreateUdrExc,
                                BOOL     fCache,
                                LID      lidExpected,
                                LPMDRS   lpMdrs);

typedef WORD (*SpellCheck_fn)(SPLID    splid,
                              SCCC     iScc,
                              LPSIB    lpSib,
                              LPSRB    lpSrb);

typedef WORD (*SpellCloseMdr_fn)(SPLID    splid,
                                 LPMDRS   lpMdrs);

typedef WORD (*SpellTerminate_fn)(SPLID    splid,
                                  BOOL     fForce);

void main(void)
{
    int Language = 1051; //slovak

    //to be more general search thru registry:
    //Dll functional interface:
    //  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\
    //           Proofing Tools\Spelling\1051\Normal\Engine
    //Mdr main directory:
    //  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\
    //           Proofing Tools\Spelling\1051\Normal\Dictionary
    //Under any user directory:
    //  HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\
    //           Proofing Tools\Custom Dictionaries\1

    char DllName[] = 
     "C:\\Program Files\\Common Files\\Microsoft Shared\\Proof\\MSPSK32.DLL";
    char MdrName[] = 
     "C:\\Program Files\\Common Files\\Microsoft Shared\\Proof\\MSSP_SK.LEX";

    HMODULE SpellInstance = LoadLibrary(DllName);

    SpellInit_fn SpellInit = 
      (SpellInit_fn)GetProcAddress(SpellInstance, 
      "SpellInit");
    SpellOpenMdr_fn SpellOpenMdr = 
      (SpellOpenMdr_fn)GetProcAddress(SpellInstance, 
      "SpellOpenMdr");
    SpellCheck_fn SpellCheck = 
      (SpellCheck_fn)GetProcAddress(SpellInstance, 
      "SpellCheck");
    SpellCloseMdr_fn SpellCloseMdr = 
      (SpellCloseMdr_fn)GetProcAddress(SpellInstance, 
      "SpellCloseMdr");
    SpellTerminate_fn SpellTerminate = 
      (SpellTerminate_fn)GetProcAddress(SpellInstance, 
      "SpellTerminate");

    SPLID Handle;
    WSC SpecChars;
    SpecChars.bIgnore = 0;
    SpecChars.bHyphenHard = 45;
    SpecChars.bHyphenSoft = 31;
    SpecChars.bHyphenNonBreaking = 30;
    SpecChars.bEmDash = 151;
    SpecChars.bEnDash = 150;
    SpecChars.bEllipsis = 133;
    SpecChars.rgLineBreak[0] = 11;
    SpecChars.rgLineBreak[1] = 10;
    SpecChars.rgParaBreak[0] = 13;
    SpecChars.rgParaBreak[1] = 10;

    SpellInit(&Handle, &SpecChars);

    MDRS Mdrs;
    SpellOpenMdr(Handle, MdrName, NULL, FALSE, TRUE, Language, &Mdrs);

    SIB InputBuffer;
    InputBuffer.cMdr = 1;
    InputBuffer.lrgMdr = &Mdrs.mdr;
    InputBuffer.cUdr = 0;
    InputBuffer.lrgUdr = NULL;

    SRB ResultBuffer;
    ResultBuffer.cch = 1024;
    ResultBuffer.lrgsz = (char*)malloc(ResultBuffer.cch);
    ResultBuffer.cbRate = 255;
    ResultBuffer.lrgbRating = (unsigned char*)malloc(ResultBuffer.cbRate);

    InputBuffer.lrgch = "slovo"; //tested word
    InputBuffer.cch = strlen(InputBuffer.lrgch);
    InputBuffer.wSpellState = fssStartsSentence;
    SpellCheck(Handle, sccVerifyWord, &InputBuffer, &ResultBuffer);

    int Result = ResultBuffer.scrs; //scrsNoErrors

    free(ResultBuffer.lrgsz);
    free(ResultBuffer.lrgbRating);
    SpellCloseMdr(Handle, &Mdrs);
    SpellTerminate(Handle, TRUE);
    FreeLibrary(SpellInstance);
}

I have tried the above code with Office 95 and Office 97. Installing Office 2000 with English, Slovak and German languages creates a registry Spelling\1051 (slovak) and Grammar\1031 (german) entries.

BTW: My search for a similar WIN API for string comparison failed. It seems Windows knows how to use the actual language only (resp. see .NET Framework Reference, String.Compare Method (String, String, Boolean, CultureInfo)), and there is no way to hook between your application and the system to correct the MS bugs for "small markets" like my country (where exceptional vocabulary or similar solution are necessary for proper string evaluation). If you know more about this, do not hesitate to publish it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Slovakia Slovakia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralProblem running the code... Pin
deepblue129-May-04 3:44
deepblue129-May-04 3:44 
GeneralRe: Problem running the code... Pin
Tibor Blazko6-Jun-04 19:59
Tibor Blazko6-Jun-04 19:59 
GeneralRe: Problem running the code... Pin
alfonso.gonzalez14-Jul-05 5:55
alfonso.gonzalez14-Jul-05 5:55 
GeneralRe: Problem running the code... Pin
Tibor Blazko15-Jul-05 5:59
Tibor Blazko15-Jul-05 5:59 
GeneralCSAPI 3 Dcoumentation Pin
schler6-Jan-03 0:49
schler6-Jan-03 0:49 
QuestionCSAPI for Office 2000 and XP? Pin
19-Apr-02 8:10
suss19-Apr-02 8:10 
AnswerRe: CSAPI for Office 2000 and XP? Pin
Tibor Blazko7-May-02 1:39
Tibor Blazko7-May-02 1:39 
GeneralRe: CSAPI for Office 2000 and XP? Pin
15-May-02 3:49
suss15-May-02 3:49 
Unfortunately, the vc ole discussion article mentions only using MSWord automation for spell checking. It does not use the spell check engine (dll) directly. This is much to much overhead!
The CSAPI information above allows to use the dll directly (Word not required). Unfortunately, this works only for MSOffice 95/97 and for some few languages with MSOffice 2000.

Generalspell checking problem Pin
13-Mar-02 1:22
suss13-Mar-02 1:22 
GeneralRe: spell checking problem Pin
13-Mar-02 3:14
suss13-Mar-02 3:14 
GeneralAddUdr solution Pin
Tibor Blazko18-Mar-02 22:56
Tibor Blazko18-Mar-02 22:56 
Generaland another msdn spell reference Pin
29-May-01 22:36
suss29-May-01 22:36 
GeneralNOTE : Third parties not licensed to use MS CSAPI. Pin
Rob Pitt25-May-01 2:44
Rob Pitt25-May-01 2:44 
GeneralRe: NOTE : Third parties not licensed to use MS CSAPI. Pin
4-Jun-01 9:12
suss4-Jun-01 9:12 
GeneralRe: NOTE : Third parties not licensed to use MS CSAPI. Pin
11-Jun-01 0:30
suss11-Jun-01 0:30 
GeneralRe: NOTE : Third parties not licensed to use MS CSAPI. Pin
Chris Maunder15-Jun-01 11:27
cofounderChris Maunder15-Jun-01 11:27 
GeneralRe: NOTE : Third parties not licensed to use MS CSAPI. Pin
Mak Thorpe23-Jul-02 19:26
Mak Thorpe23-Jul-02 19:26 
GeneralRe: NOTE : Third parties not licensed to use MS CSAPI. Pin
Rob Pitt23-Jul-02 22:11
Rob Pitt23-Jul-02 22:11 
GeneralRe: NOTE : Third parties not licensed to use MS CSAPI. Pin
TeaShirt1-Jul-03 3:43
TeaShirt1-Jul-03 3:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.