EnumRegisterWordProc

The EnumRegisterWordProc function is an application-defined callback function used with the ImmEnumRegisterWord function. It is used to process data of register strings. The REGISTERWORDENUMPROC type defines a pointer to this callback function. EnumRegisterWordProc is a placeholder for the application-defined function name.

UINT CALLBACK EnumRegisterWordProc(
  LPCTSTR lpReading,   
  DWORD dwStyle,       
  LPCTSTR lpszString,  
  LPVOID lpData        
);
 

Parameters

lpszReading
Pointer to a null-terminated string specifying the matched reading string.
dwStyle
Style of register string.
lpszString
Pointer to a null-terminated string specifying the matched register string.
lpData
Application-supplied data.

Return Values

Returns a nonzero value to continue enumeration; zero to stop enumeration.

Remarks

An application must register this function by passing its address to the ImmEnumRegisterWord function.

QuickInfo

  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Unsupported.
  Header: Declared in imm.h.
  Import Library: User-defined.

See Also

Input Method Editor Overview, Input Method Editor Functions, ImmEnumRegisterWord