7 lines
347 B
C#
7 lines
347 B
C#
namespace ImeSharp
|
|
{
|
|
public delegate void TextInputCallback(char character);
|
|
public delegate void TextCompositionCallback(IMEString compositionText, int cursorPosition, IMEString[] candidateList, int candidatePageStart, int candidatePageSize, int candidateSelection);
|
|
public delegate void CommitTextCompositionCallback(string text);
|
|
}
|