Condividi tramite


Struttura IMEWRD (msime.h)

Contiene dati relativi a una parola nel Word dati del dizionario Microsoft IME.

Sintassi

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

Stringa di lettura.

pwchDisplay

Stringa di visualizzazione.

ulPos

POS (parte della voce), definito come JPOS_**.

nPos1

Non usato.

nPos2

Non usato.

rgulAttrs[2]

Riservato.

cbComment

Dimensioni del commento, in byte, di pvComment.

uct

Tipo di commento. Questo deve essere uno dei valori dell'enumerazione IMEUCT .

pvComment

Stringa di commento.

Requisiti

Requisito Valore
Intestazione msime.h

Vedi anche

IFEDictionary::ExistWord

IFEDictionary::GetWords

IFEDictionary::NextWords

IFEDictionary::RegisterWord

IMEUCT