IFEDictionary::GetPosTable Method

This method obtains the public POS (Part of Speech) table. Since this table is language and IME dependent, clients must include an appropriate header for a particular language. For Japanese, the header is named "msime.h" and includes the following data structure.

Syntax

//POS table data structure
typedef struct _POSTBL {
    WORD nPos; //pos number
    BYTE *szName; //name of pos
} POSTBL;

Parameters

Parameter Description

POSTBL **prgPosTbl

(OUT) pointer to the array of POSTBL.

int *pcPosTbl

(OUT) pointer to the count of part of speech in POSTBL; can be NULL.

Return Values


Return Values

HRESULT

S_OK
E_FAIL