The EnumRegisterWordProc function is an application-defined callback function that process data of register string from the ImmEnumRegisterWord function.
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.
See Also