Retrieves the list of characters or words from one character or word. Unicode implementation.
Syntax
HRESULT GetConversionListW( HKL hKL, HIMC hIMC, LPWSTR pSrc, UINT uBufLen, UINT uFlag, CANDIDATELIST *pDst, UINT *puCopied );
Parameters
- hKL
- [in] Handle to the keyboard layout.
- hIMC
- [in] Handle to the input context.
- pSrc
- [in] Address of a string value containing a null-terminated character string.
- uBufLen
- [in] Unsigned integer value that contains the size of the destination buffer, in bytes.
- uFlag
- [in] Unsigned integer value that contains action flags.
- pDst
- [out] Address of the CANDIDATELIST structure that receives the conversion result.
- puCopied
- [out] Address of an unsigned integer value that receives the number of bytes copied to the specified buffer. If uBufLen is zero, puCopied receives the number of bytes needed to receive the list.
Return Value
Returns S_OK if successful, or an error code otherwise.
Remarks
This method maps to the ImmGetConversionList function documented in the Microsoft® Platform Software Development Kit(SDK).