ImmGetConversionList (Windows CE 5.0)

Send Feedback

This function retrieves the list of characters or words from one character or word.

UINT ImmGetConversionList(HKLhKL,HIMChIMC,LPCTSTRlpSrc,LPCANDIDATELISTlpDst,DWORDdwBufLen,UINTuFlag);

Parameters

  • hKL
    [in] Ignored; set to NULL. Windows CE does not support true keyboard layouts.
  • hIMC
    [in] Handle to the input context.
  • lpSrc
    [in] Long pointer to a null-terminated character string.
  • lpDst
    [out] Long pointer to the CANDIDATELIST structure that receives the conversion result.
  • dwBufLen
    [in] Size of the destination buffer, in bytes. If zero, the function returns the buffer size needed for the complete conversion result.
  • uFlag
    [in] Action flag. The following table shows the values this parameter can take.
    Value Description
    GCL_CONVERSION Source string is the reading string. The function copies the result string to the destination buffer.
    GCL_REVERSECONVERSION Source string is the result string. The function copies the reading string to the destination buffer.
    GCL_REVERSE_LENGTH Source string is the result string. The function returns the size in bytes of the reading string that would be created if GCL_REVERSECONVERSION were specified.

Return Values

The number of bytes copied to the specified buffer or, if dwBufLen is zero, the buffer size needed to receive the list indicate success.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Imm.h.
Link Library: Coreimm.lib.

See Also

CANDIDATELIST

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.