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
);
Returns a nonzero value to continue enumeration; zero to stop enumeration.
An application must register this function by passing its address to the ImmEnumRegisterWord function.
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.
Input Method Editor Overview, Input Method Editor Functions, ImmEnumRegisterWord