ImmGetCompositionString
[Now
Supported on Windows NT]
The ImmGetCompositionString
function retrieves information about the composition string.
LONG ImmGetCompositionString(
HIMC hIMC, |
|
DWORD dwIndex, |
|
LPVOID lpBuf, |
|
DWORD dwBufLen |
|
); |
|
Parameters
hIMC
Handle to the
input context.
dwIndex
Index of the
information to retrieve. This parameter can be one of the values given in the
IME Composition String Values table in Input Method Editor Constants
lpBuf
Pointer to
the buffer that receives the requested information.
dwBufLen
Size of the
buffer, in bytes. If zero, the ImmGetCompositionString function returns
the buffer size needed for the complete information.
Return Values
Returns the
number of bytes copied to the destination buffer or, if dwBufLen is
zero, the buffer size, in bytes, needed to receive all of the requested
information. On an error, the function returns one of the following negative
error values:
Value |
Meaning |
IMM_ERROR_NODATA |
Composition
data is not ready in the input context. |
IMM_ERROR_GENERAL |
General
error detected by IME. |
Remarks
An
application calls this function in response to the WM_IME_COMPOSITION or
WM_IME_STARTCOMPOSITION message. The IMM removes the information when an
application calls the ImmReleaseContext function.
See Also