Platform SDK: International Features

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 lpszReading, 
  DWORD dwStyle,       
  LPCTSTR lpszString,  
  LPVOID lpData        
);

Parameters

lpszReading
[in] Pointer to a null-terminated string specifying the matched reading string.
dwStyle
[in] Specifies the style of register string.
lpszString
[in] Pointer to a null-terminated string specifying the matched register string.
lpData
[in] 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.

Requirements

  Windows NT/2000: Requires Windows NT 3.1 or later.
  Windows 95/98: Requires Windows 95 or later.
  Header: Declared in Imm.h.

See Also

Input Method Editor Overview, Input Method Editor Functions, ImmEnumRegisterWord