응용 프로그램 특정 창에 대 한 IME 해제 하려면 아래와 같이 ImmAssociateContext() API 호출할 수 있습니다.
HIMC hIMC;
hIMC = ImmAssociateContext(hWnd, NULL); // It makes IME disable for
// hWnd window.
// Then you can do whatever you want without IME.
ImmAssociateContext(hWnd, hIMC); // If you want to enable
// IME again, then you can
// use the previous stored IME
// context(hIMC)
// to restore IME.
http://support.microsoft.com/kb/171154/ko
'예전 > API' 카테고리의 다른 글
[API] _splitpath (디렉토리 분리 함수) (0) | 2013.01.23 |
---|---|
[API] 프로세스 (0) | 2012.10.22 |
[API] LRESULT 와 HRESULT (0) | 2012.06.28 |
[API] Message Deadlocks ( 메시지 데드락 ) (0) | 2012.06.27 |
[API] 모달 과 모달리스의 차이 (modal modeless) (0) | 2012.06.27 |