diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:18:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:18:03 +0000 |
commit | afce081b90c1e2c50c3507758c7558a0dfa1f33e (patch) | |
tree | 3fb840f0bd9de41b463443ddf17131a0ad77f226 /src/glbl_ime.h | |
parent | Initial commit. (diff) | |
download | vim-upstream.tar.xz vim-upstream.zip |
Adding upstream version 2:8.2.2434.upstream/2%8.2.2434upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/glbl_ime.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/glbl_ime.h b/src/glbl_ime.h new file mode 100644 index 0000000..bce9c73 --- /dev/null +++ b/src/glbl_ime.h @@ -0,0 +1,33 @@ +/* vi:set ts=8 sts=4 sw=4 noet: + * + * VIM - Vi IMproved by Bram Moolenaar + * + * Do ":help uganda" in Vim to read copying and usage conditions. + * Do ":help credits" in Vim to see a list of people who contributed. + */ + +#ifdef GLOBAL_IME +# ifndef _INC_GLOBAL_IME +# define _INC_GLOBAL_IME + +# ifdef __cplusplus +extern "C" { +# endif + void global_ime_init(ATOM, HWND); + void global_ime_end(void); + LRESULT WINAPI global_ime_DefWindowProc(HWND, UINT, WPARAM, LPARAM); + BOOL WINAPI global_ime_TranslateMessage(CONST MSG *); + void WINAPI global_ime_set_position(POINT*); + void WINAPI global_ime_set_font(LOGFONT*); +# if 0 + void WINAPI global_ime_status_evacuate(void); + void WINAPI global_ime_status_restore(void); +# endif + void WINAPI global_ime_set_status(int status); + int WINAPI global_ime_get_status(void); +# ifdef __cplusplus +} +# endif + +# endif // _INC_GLOBAL_IME +#endif // GLOBAL_IME |