Home
last modified time | relevance | path

Searched refs:hWnd (Results 1 – 7 of 7) sorted by relevance

/vim-8.2.3635/src/
H A Ddimm.idl200 HWND hWnd;
328 HRESULT GetContext([in] HWND hWnd, [out] HIMC *phIMC);
332 HRESULT GetDefaultIMEWnd([in] HWND hWnd, [out] HWND *phDefWnd);
344 HRESULT GetVirtualKey([in] HWND hWnd, [out] UINT *puVirtualKey);
353 HRESULT ReleaseContext([in] HWND hWnd, [in] HIMC hIMC);
363 HRESULT SimulateHotKey([in] HWND hWnd, [in] DWORD dwHotKeyID);
411 HRESULT GetContext([in] HWND hWnd, [out] HIMC *phIMC);
415 HRESULT GetDefaultIMEWnd([in] HWND hWnd, [out] HWND *phDefWnd);
427 HRESULT GetVirtualKey([in] HWND hWnd, [out] UINT *puVirtualKey);
436 HRESULT ReleaseContext([in] HWND hWnd, [in] HIMC hIMC);
[all …]
H A Dglbl_ime.cpp57 global_ime_init(ATOM atom, HWND hWnd) in global_ime_init() argument
97 s_hWnd = hWnd; in global_ime_init()
130 global_ime_DefWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam) in global_ime_DefWindowProc() argument
134 if (pIApp == NULL || pIApp->OnDefWindowProc(hWnd, Msg, in global_ime_DefWindowProc()
136 lResult = DefWindowProcW(hWnd, Msg, wParam, lParam); in global_ime_DefWindowProc()
H A Dos_win32.c2711 HWND hWnd, in GetConsoleIcon() argument
2715 if (hWnd == NULL) in GetConsoleIcon()
2719 *phIconSmall = (HICON)SendMessage(hWnd, WM_GETICON, in GetConsoleIcon()
2722 *phIcon = (HICON)SendMessage(hWnd, WM_GETICON, in GetConsoleIcon()
2737 HWND hWnd, in SetConsoleIcon() argument
2741 if (hWnd == NULL) in SetConsoleIcon()
2745 SendMessage(hWnd, WM_SETICON, in SetConsoleIcon()
2748 SendMessage(hWnd, WM_SETICON, in SetConsoleIcon()
H A Dclientserver.c441 ni.hWnd = message_window; in cmdsrv_main()
H A Dgui_w32.c511 static LRESULT _OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData);
5661 _OnImeNotify(HWND hWnd, DWORD dwCommand, DWORD dwData UNUSED) in _OnImeNotify() argument
5666 if (!pImmGetContext || (hImc = pImmGetContext(hWnd)) == (HIMC)0) in _OnImeNotify()
5706 pImmReleaseContext(hWnd, hImc); in _OnImeNotify()
8085 HWND hWnd, in GetTabFromPoint() argument
8095 if (s_tabhwnd == hWnd) in GetTabFromPoint()
/vim-8.2.3635/src/GvimExt/
H A Dgvimext.cpp797 HWND hWnd = m_hWnd[idHWnd]; in PushToWindow() local
800 if (IsIconic(hWnd) != 0) in PushToWindow()
801 ShowWindow(hWnd, SW_RESTORE); in PushToWindow()
803 ShowWindow(hWnd, SW_SHOW); in PushToWindow()
804 SetForegroundWindow(hWnd); in PushToWindow()
807 PostMessage(hWnd, WM_DROPFILES, (WPARAM)medium.hGlobal, 0); in PushToWindow()
824 BOOL CALLBACK CShellExt::EnumWindowsProc(HWND hWnd, LPARAM lParam) in EnumWindowsProc() argument
830 if (!IsWindowVisible(hWnd)) return TRUE; in EnumWindowsProc()
834 if (GetClassName(hWnd, temp, sizeof(temp)) == 0) in EnumWindowsProc()
843 cs->m_hWnd[cs->m_cntOfHWnd] = hWnd; in EnumWindowsProc()
H A Dgvimext.h123 static BOOL CALLBACK EnumWindowsProc(HWND hWnd, LPARAM lParam);