annotate src/glbl_ime.h @ 23442:f00d6ff51046 v8.2.2264

patch 8.2.2264: Vim9: no error for mismatched :endfunc or :enddef Commit: https://github.com/vim/vim/commit/5178b1b02fc96f42d62199a4be9184c2aea8a49a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 1 18:43:51 2021 +0100 patch 8.2.2264: Vim9: no error for mismatched :endfunc or :enddef Problem: Vim9: no error for mismatched :endfunc or :enddef. Solution: Check for the mismatch. (issue https://github.com/vim/vim/issues/7582)
author Bram Moolenaar <Bram@vim.org>
date Fri, 01 Jan 2021 18:45:03 +0100
parents 6e3dc2d630c2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 378
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 #ifdef GLOBAL_IME
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
10 # ifndef _INC_GLOBAL_IME
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
11 # define _INC_GLOBAL_IME
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
13 # ifdef __cplusplus
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 extern "C" {
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
15 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 void global_ime_init(ATOM, HWND);
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 7
diff changeset
17 void global_ime_end(void);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 LRESULT WINAPI global_ime_DefWindowProc(HWND, UINT, WPARAM, LPARAM);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 BOOL WINAPI global_ime_TranslateMessage(CONST MSG *);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 void WINAPI global_ime_set_position(POINT*);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21 void WINAPI global_ime_set_font(LOGFONT*);
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
22 # if 0
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 7
diff changeset
23 void WINAPI global_ime_status_evacuate(void);
7033303ea0c0 updated for version 7.0089
vimboss
parents: 7
diff changeset
24 void WINAPI global_ime_status_restore(void);
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
25 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 void WINAPI global_ime_set_status(int status);
344
7033303ea0c0 updated for version 7.0089
vimboss
parents: 7
diff changeset
27 int WINAPI global_ime_get_status(void);
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
28 # ifdef __cplusplus
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 }
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
30 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31
18753
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
32 # endif // _INC_GLOBAL_IME
6e3dc2d630c2 patch 8.1.2366: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 10042
diff changeset
33 #endif // GLOBAL_IME