EnumRegisterWordProc (Windows CE 5.0)

Send Feedback

This 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 that is provided by a caller to the ImmEnumRegisterWord function.

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

Parameters

  • lpszReading
    [in] Long pointer to a null-terminated string specifying the matched reading string.
  • dwStyle
    [in] Style of register string.
  • lpszString
    [in] Long pointer to a null-terminated string specifying the matched register string.
  • lpData
    [in] Long pointer to application-supplied data.

Return Values

Nonzero continues enumeration. Zero stops enumeration.

Remarks

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

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Imm.h.
Link Library: No link library required. EnumRegisterWordProc is a placeholder for the application-defined function name that is provided by a caller to the ImmEnumRegisterWord function.

See Also

ImmEnumRegisterWord

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.