comparison src/glbl_ime.h @ 7:3fc0f57ecb91 v7.0001

updated for version 7.0001
author vimboss
date Sun, 13 Jun 2004 20:20:40 +0000
parents
children 7033303ea0c0
comparison
equal deleted inserted replaced
6:c2daee826b8f 7:3fc0f57ecb91
1 /* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9 #ifdef GLOBAL_IME
10 #ifndef _INC_GLOBAL_IME
11 #define _INC_GLOBAL_IME
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif /* __cplusplus */
16 void global_ime_init(ATOM, HWND);
17 void global_ime_end();
18 LRESULT WINAPI global_ime_DefWindowProc(HWND, UINT, WPARAM, LPARAM);
19 BOOL WINAPI global_ime_TranslateMessage(CONST MSG *);
20 void WINAPI global_ime_set_position(POINT*);
21 void WINAPI global_ime_set_font(LOGFONT*);
22 void WINAPI global_ime_status_evacuate();
23 void WINAPI global_ime_status_restore();
24 void WINAPI global_ime_set_status(int status);
25 int WINAPI global_ime_get_status();
26 #ifdef __cplusplus
27 }
28 #endif /* __cplusplus */
29
30 #endif /* _INC_GLOBAL_IME */
31 #endif /* GLOBAL_IME */