IMEWRD structure (msime.h)

Contains data about a word in the Word data of the Microsoft IME dictionary.

Syntax

typedef struct _IMEWRD {
  WCHAR  *pwchReading;
  WCHAR  *pwchDisplay;
  union {
    ULONG ulPos;
    struct {
      WORD nPos1;
      WORD nPos2;
    };
  };
  ULONG  rgulAttrs[2];
  INT    cbComment;
  IMEUCT uct;
  VOID   *pvComment;
} IMEWRD, *PIMEWRD;

Members

pwchReading

The reading string.

pwchDisplay

The display string.

ulPos

POS (Part of Speech), defined as JPOS_***.

nPos1

Not used.

nPos2

Not used.

rgulAttrs[2]

Reserved.

cbComment

Size of the comment, in bytes, of pvComment.

uct

Type of comment. This must be one of the values of the IMEUCT enumeration.

pvComment

Comment string.

Requirements

Requirement Value
Header msime.h

See also

IFEDictionary::ExistWord

IFEDictionary::GetWords

IFEDictionary::NextWords

IFEDictionary::RegisterWord

IMEUCT