■ ImmReleaseContext API 함수를 선언하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
using System; using System.Runtime.InteropServices; #region IMM 컨텍스트 해제하기 - ImmReleaseContext(windowHandle, imcHandle) /// <summary> /// IMM 컨텍스트 해제하기 /// </summary> /// <param name="windowHandle">윈도우 핸들</param> /// <param name="imcHandle">IMC 핸들</param> /// <returns>처리 결과</returns> [DllImport("imm32")] private static extern bool ImmReleaseContext(IntPtr windowHandle, IntPtr imcHandle); #endregion |
■ ImmGetConversionStatus API 함수를 선언하는 방법을 보여준다. ▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
using System; using System.Runtime.InteropServices; #region IMM 변환 상태 구하기 - ImmGetConversionStatus(imcHandle, conversion, sentence) /// <summary> /// IMM 변환 상태 구하기 /// </summary> /// <param name="imcHandle">IMC 핸들</param> /// <param name="conversion">변환</param> /// <param name="sentence">문장</param> /// <returns>처리 결과</returns> [DllImport("imm32")] private static extern bool ImmGetConversionStatus(IntPtr imcHandle, ref int conversion, ref int sentence); #endregion |
■ ImmGetContext API 함수를 선언하는 방법을 보여준다. ▶ 예제 코드 (C#)
|
using System; using System.Runtime.InteropServices; #region IMM 컨텍스트 구하기 - ImmGetContext(windowHandle) /// <summary> /// IMM 컨텍스트 구하기 /// </summary> /// <param name="windowHandle">윈도우 핸들</param> /// <returns>IMC 컨텍스트 핸들</returns> [DllImport("imm32")] private static extern IntPtr ImmGetContext(IntPtr windowHandle); #endregion |
■ ImmGetDefaultIMEWnd API 함수를 선언하는 방법을 보여준다. ▶ 예제 코드 (C#)
|
using System; using System.Runtime.InteropServices; #region 디폴트 IME 윈도우 구하기 - ImmGetDefaultIMEWnd(windowHandle) /// <summary> /// 디폴트 IME 윈도우 구하기 /// </summary> /// <param name="windowHandle">윈도우</param> /// <returns>디폴트 IME 윈도우 핸들</returns> [DllImport("imm32")] private static extern IntPtr ImmGetDefaultIMEWnd(IntPtr windowHandle); #endregion |