Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This function is an application-defined callback function used with the ImmEnumRegisterWordfunction. It is used to process data of register strings. The REGISTERWORDENUMPROCtype defines a pointer to this callback function. EnumRegisterWordProcis a placeholder for the application-defined function name that is provided by a caller to the ImmEnumRegisterWordfunction.

Syntax

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 Value

Nonzero continues enumeration. Zero stops enumeration.

Remarks

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

Note:
EnumRegisterWordProcis a placeholder for the application-defined function name that is provided by a caller to the ImmEnumRegisterWordfunction.

Requirements

Header imm.h
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later
Note 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