Use the right buffer size in SYSPARAMS_Load instead of some random
[wine] / include / imm.h
1 /*
2  * Declarations for IMM32
3  *
4  * Copyright (C) the Wine project
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifndef __WINE_IMM_H
22 #define __WINE_IMM_H
23
24 #include "windef.h"
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 typedef HANDLE HIMC;
31 typedef HANDLE HIMCC;
32
33
34 typedef int (CALLBACK *REGISTERWORDENUMPROCA)(LPCSTR, DWORD, LPCSTR, LPVOID);
35 typedef int (CALLBACK *REGISTERWORDENUMPROCW)(LPCWSTR, DWORD, LPCWSTR, LPVOID);
36
37 typedef struct tagCANDIDATEFORM
38 {
39                                 DWORD   dwIndex;
40                                 DWORD   dwStyle;
41                                 POINT ptCurrentPos;
42                                 RECT  rcArea;
43 } CANDIDATEFORM, *LPCANDIDATEFORM;
44
45 typedef struct tagCANDIDATELIST
46 {
47                                 DWORD dwSize;
48                                 DWORD dwStyle;
49                                 DWORD dwCount;
50                                 DWORD dwSelection;
51                                 DWORD dwPageStart;
52                                 DWORD dwPageSize;
53                                 DWORD dwOffset[1];
54 } CANDIDATELIST, *LPCANDIDATELIST;
55
56 typedef struct tagSTYLEBUFA
57 {
58                                 DWORD dwStyle;
59                                 CHAR  szDescription[32];
60 } STYLEBUFA, *LPSTYLEBUFA;
61
62 typedef struct tagSTYLEBUFW
63 {
64                                 DWORD dwStyle;
65                                 WCHAR  szDescription[32];
66 } STYLEBUFW, *LPSTYLEBUFW;
67
68 DECL_WINELIB_TYPE_AW(STYLEBUF)
69 DECL_WINELIB_TYPE_AW(LPSTYLEBUF)
70
71 #if     (WINVER >= 0x040A)
72
73 typedef struct tagRECONVERTSTRING
74 {
75         DWORD   dwSize;
76         DWORD   dwVersion;
77         DWORD   dwStrLen;
78         DWORD   dwStrOffset;
79         DWORD   dwCompStrLen;
80         DWORD   dwCompStrOffset;
81         DWORD   dwTargetStrLen;
82         DWORD   dwTargetStrOffset;
83 } RECONVERTSTRING, *LPRECONVERTSTRING;
84
85
86 #define IMEMENUITEM_STRING_SIZE 80
87
88 typedef struct tagIMEMENUITEMINFOA
89 {
90         UINT            cbSize;
91         UINT            fType;
92         UINT            fState;
93         UINT            wID;
94         HBITMAP         hbmpChecked;
95         HBITMAP         hbmpUnchecked;
96         DWORD           dwItemData;
97         CHAR            szString[IMEMENUITEM_STRING_SIZE];
98         HBITMAP         hbmpItem;
99 } IMEMENUITEMINFOA, *LPIMEMENUITEMINFOA;
100
101 typedef struct tagIMEMENUITEMINFOW
102 {
103         UINT            cbSize;
104         UINT            fType;
105         UINT            fState;
106         UINT            wID;
107         HBITMAP         hbmpChecked;
108         HBITMAP         hbmpUnchecked;
109         DWORD           dwItemData;
110         WCHAR           szString[IMEMENUITEM_STRING_SIZE];
111         HBITMAP         hbmpItem;
112 } IMEMENUITEMINFOW, *LPIMEMENUITEMINFOW;
113
114 DECL_WINELIB_TYPE_AW(IMEMENUITEMINFO)
115 DECL_WINELIB_TYPE_AW(LPIMEMENUITEMINFO)
116
117 #endif  /* WINVER >= 0x040A */
118
119
120 typedef struct _tagCOMPOSITIONFORM
121 {
122                                 DWORD   dwStyle;
123                                 POINT ptCurrentPos;
124                                 RECT  rcArea;
125 } COMPOSITIONFORM, *LPCOMPOSITIONFORM;
126
127 /* wParam for WM_IME_CONTROL */
128 #define IMC_GETCANDIDATEPOS             0x0007
129 #define IMC_SETCANDIDATEPOS             0x0008
130 #define IMC_GETCOMPOSITIONFONT          0x0009
131 #define IMC_SETCOMPOSITIONFONT          0x000A
132 #define IMC_GETCOMPOSITIONWINDOW        0x000B
133 #define IMC_SETCOMPOSITIONWINDOW        0x000C
134 #define IMC_GETSTATUSWINDOWPOS          0x000F
135 #define IMC_SETSTATUSWINDOWPOS          0x0010
136 #define IMC_CLOSESTATUSWINDOW           0x0021
137 #define IMC_OPENSTATUSWINDOW            0x0022
138
139 /*
140  * wParam for WM_IME_CONTROL to the soft keyboard
141  * dwAction for ImmNotifyIME
142  */
143 #define NI_OPENCANDIDATE                0x0010
144 #define NI_CLOSECANDIDATE               0x0011
145 #define NI_SELECTCANDIDATESTR           0x0012
146 #define NI_CHANGECANDIDATELIST          0x0013
147 #define NI_FINALIZECONVERSIONRESULT     0x0014
148 #define NI_COMPOSITIONSTR               0x0015
149 #define NI_SETCANDIDATE_PAGESTART       0x0016
150 #define NI_SETCANDIDATE_PAGESIZE        0x0017
151 #define NI_IMEMENUSELECTED              0x0018
152
153 /* lParam for WM_IME_SETCONTEXT */
154 #define ISC_SHOWUICANDIDATEWINDOW       0x00000001
155 #define ISC_SHOWUICOMPOSITIONWINDOW     0x80000000
156 #define ISC_SHOWUIGUIDELINE             0x40000000
157 #define ISC_SHOWUIALLCANDIDATEWINDOW    0x0000000F
158 #define ISC_SHOWUIALL                   0xC000000F
159
160
161 /* dwIndex for ImmNotifyIME/NI_COMPOSITIONSTR */
162 #define CPS_COMPLETE                    0x0001
163 #define CPS_CONVERT                     0x0002
164 #define CPS_REVERT                      0x0003
165 #define CPS_CANCEL                      0x0004
166
167
168 /* the modifiers of hot key */
169 #define MOD_ALT                         0x0001
170 #define MOD_CONTROL                     0x0002
171 #define MOD_SHIFT                       0x0004
172
173 #define MOD_LEFT                        0x8000
174 #define MOD_RIGHT                       0x4000
175
176 #define MOD_ON_KEYUP                    0x0800
177 #define MOD_IGNORE_ALL_MODIFIER         0x0400
178
179
180 /* Windows for Simplified Chinese Edition hot key ID from 0x10 - 0x2F */
181 #define IME_CHOTKEY_IME_NONIME_TOGGLE           0x10
182 #define IME_CHOTKEY_SHAPE_TOGGLE                0x11
183 #define IME_CHOTKEY_SYMBOL_TOGGLE               0x12
184
185 /* Windows for Japanese Edition hot key ID from 0x30 - 0x4F */
186 #define IME_JHOTKEY_CLOSE_OPEN                  0x30
187
188 /* Windows for Korean Edition hot key ID from 0x50 - 0x6F */
189 #define IME_KHOTKEY_SHAPE_TOGGLE                0x50
190 #define IME_KHOTKEY_HANJACONVERT                0x51
191 #define IME_KHOTKEY_ENGLISH                     0x52
192 /* Windows for Tranditional Chinese Edition hot key ID from 0x70 - 0x8F */
193 #define IME_THOTKEY_IME_NONIME_TOGGLE           0x70
194 #define IME_THOTKEY_SHAPE_TOGGLE                0x71
195 #define IME_THOTKEY_SYMBOL_TOGGLE               0x72
196
197 /* direct switch hot key ID from 0x100 - 0x11F */
198 #define IME_HOTKEY_DSWITCH_FIRST                0x100
199 #define IME_HOTKEY_DSWITCH_LAST                 0x11F
200
201 /* IME private hot key from 0x200 - 0x21F */
202 #define IME_HOTKEY_PRIVATE_FIRST                0x200
203 #define IME_ITHOTKEY_RESEND_RESULTSTR           0x200
204 #define IME_ITHOTKEY_PREVIOUS_COMPOSITION       0x201
205 #define IME_ITHOTKEY_UISTYLE_TOGGLE             0x202
206 #define IME_ITHOTKEY_RECONVERTSTRING            0x203
207 #define IME_HOTKEY_PRIVATE_LAST                 0x21F
208
209
210 /*
211  * dwSystemInfoFlags bits
212  * parameter of ImmGetCompositionString
213  */
214 #define GCS_COMPREADSTR                 0x0001
215 #define GCS_COMPREADATTR                0x0002
216 #define GCS_COMPREADCLAUSE              0x0004
217 #define GCS_COMPSTR                     0x0008
218 #define GCS_COMPATTR                    0x0010
219 #define GCS_COMPCLAUSE                  0x0020
220 #define GCS_CURSORPOS                   0x0080
221 #define GCS_DELTASTART                  0x0100
222 #define GCS_RESULTREADSTR               0x0200
223 #define GCS_RESULTREADCLAUSE            0x0400
224 #define GCS_RESULTSTR                   0x0800
225 #define GCS_RESULTCLAUSE                0x1000
226
227 /* style bit flags for WM_IME_COMPOSITION */
228 #define CS_INSERTCHAR                   0x2000
229 #define CS_NOMOVECARET                  0x4000
230
231
232 /*
233  * bits of fdwInit of INPUTCONTEXT
234  * IME version constants
235  */
236 #define IMEVER_0310                     0x0003000A
237 #define IMEVER_0400                     0x00040000
238
239
240 /* IME property bits */
241 #define IME_PROP_AT_CARET               0x00010000
242 #define IME_PROP_SPECIAL_UI             0x00020000
243 #define IME_PROP_CANDLIST_START_FROM_1  0x00040000
244 #define IME_PROP_UNICODE                0x00080000
245 #define IME_PROP_COMPLETE_ON_UNSELECT   0x00100000
246
247
248 /* IME UICapability bits */
249 #define UI_CAP_2700                     0x00000001
250 #define UI_CAP_ROT90                    0x00000002
251 #define UI_CAP_ROTANY                   0x00000004
252 /* ImmSetCompositionString Capability bits */
253 #define SCS_CAP_COMPSTR                 0x00000001
254 #define SCS_CAP_MAKEREAD                0x00000002
255 #define SCS_CAP_SETRECONVERTSTRING      0x00000004
256
257
258 /* IME WM_IME_SELECT inheritance Capability bits */
259 #define SELECT_CAP_CONVERSION           0x00000001
260 #define SELECT_CAP_SENTENCE             0x00000002
261
262
263 /* ID for deIndex of ImmGetGuideLine */
264 #define GGL_LEVEL                       0x00000001
265 #define GGL_INDEX                       0x00000002
266 #define GGL_STRING                      0x00000003
267 #define GGL_PRIVATE                     0x00000004
268
269 /* ID for dwLevel of GUIDELINE Structure */
270 #define GL_LEVEL_NOGUIDELINE            0x00000000
271 #define GL_LEVEL_FATAL                  0x00000001
272 #define GL_LEVEL_ERROR                  0x00000002
273 #define GL_LEVEL_WARNING                0x00000003
274 #define GL_LEVEL_INFORMATION            0x00000004
275
276 /* ID for dwIndex of GUIDELINE Structure */
277 #define GL_ID_UNKNOWN                   0x00000000
278 #define GL_ID_NOMODULE                  0x00000001
279 #define GL_ID_NODICTIONARY              0x00000010
280 #define GL_ID_CANNOTSAVE                0x00000011
281 #define GL_ID_NOCONVERT                 0x00000020
282 #define GL_ID_TYPINGERROR               0x00000021
283 #define GL_ID_TOOMANYSTROKE             0x00000022
284 #define GL_ID_READINGCONFLICT           0x00000023
285 #define GL_ID_INPUTREADING              0x00000024
286 #define GL_ID_INPUTRADICAL              0x00000025
287 #define GL_ID_INPUTCODE                 0x00000026
288 #define GL_ID_INPUTSYMBOL               0x00000027
289 #define GL_ID_CHOOSECANDIDATE           0x00000028
290 #define GL_ID_REVERSECONVERSION         0x00000029
291 #define GL_ID_PRIVATE_FIRST             0x00008000
292 #define GL_ID_PRIVATE_LAST              0x0000FFFF
293
294 /* ID for dwIndex of ImmGetProperty */
295 #define IGP_GETIMEVERSION               (DWORD)(-4)
296 #define IGP_PROPERTY                    0x00000004
297 #define IGP_CONVERSION                  0x00000008
298 #define IGP_SENTENCE                    0x0000000c
299 #define IGP_UI                          0x00000010
300 #define IGP_SETCOMPSTR                  0x00000014
301 #define IGP_SELECT                      0x00000018
302
303
304 /* dwIndex for ImmSetCompositionString API */
305 #define SCS_SETSTR          (GCS_COMPREADSTR|GCS_COMPSTR)
306 #define SCS_CHANGEATTR      (GCS_COMPREADATTR|GCS_COMPATTR)
307 #define SCS_CHANGECLAUSE    (GCS_COMPREADCLAUSE|GCS_COMPCLAUSE)
308 #define SCS_SETRECONVERTSTRING          0x00010000
309 #define SCS_QUERYRECONVERTSTRING        0x00020000
310
311 /* attribute for COMPOSITIONSTRING Structure */
312 #define ATTR_INPUT                      0x00
313 #define ATTR_TARGET_CONVERTED           0x01
314 #define ATTR_CONVERTED                  0x02
315 #define ATTR_TARGET_NOTCONVERTED        0x03
316 #define ATTR_INPUT_ERROR                0x04
317 #define ATTR_FIXEDCONVERTED             0x05
318
319
320 /* bit field for IMC_SETCOMPOSITIONWINDOW, IMC_SETCANDIDATEWINDOW */
321 #define CFS_DEFAULT                     0x0000
322 #define CFS_RECT                        0x0001
323 #define CFS_POINT                       0x0002
324 #define CFS_FORCE_POSITION              0x0020
325 #define CFS_CANDIDATEPOS                0x0040
326 #define CFS_EXCLUDE                     0x0080
327
328 /* conversion direction for ImmGetConversionList */
329 #define GCL_CONVERSION                  0x0001
330 #define GCL_REVERSECONVERSION           0x0002
331 #define GCL_REVERSE_LENGTH              0x0003
332
333
334 /* bit field for conversion mode */
335 #define IME_CMODE_ALPHANUMERIC          0x0000
336 #define IME_CMODE_NATIVE                0x0001
337 #define IME_CMODE_CHINESE               IME_CMODE_NATIVE
338 /* IME_CMODE_HANGEUL is old name of IME_CMODE_HANGUL. It will be gone eventually. */
339 #define IME_CMODE_HANGEUL               IME_CMODE_NATIVE
340 #define IME_CMODE_HANGUL                IME_CMODE_NATIVE
341 #define IME_CMODE_JAPANESE              IME_CMODE_NATIVE
342 #define IME_CMODE_KATAKANA              0x0002  /* only effect under IME_CMODE_NATIVE */
343 #define IME_CMODE_LANGUAGE              0x0003
344 #define IME_CMODE_FULLSHAPE             0x0008
345 #define IME_CMODE_ROMAN                 0x0010
346 #define IME_CMODE_CHARCODE              0x0020
347 #define IME_CMODE_HANJACONVERT          0x0040
348 #define IME_CMODE_SOFTKBD               0x0080
349 #define IME_CMODE_NOCONVERSION          0x0100
350 #define IME_CMODE_EUDC                  0x0200
351 #define IME_CMODE_SYMBOL                0x0400
352 #define IME_CMODE_FIXED                 0x0800
353
354
355 #define IME_SMODE_NONE                  0x0000
356 #define IME_SMODE_PLAURALCLAUSE         0x0001
357 #define IME_SMODE_SINGLECONVERT         0x0002
358 #define IME_SMODE_AUTOMATIC             0x0004
359 #define IME_SMODE_PHRASEPREDICT         0x0008
360 #define IME_SMODE_CONVERSATION          0x0010
361
362 /* style of candidate */
363 #define IME_CAND_UNKNOWN                0x0000
364 #define IME_CAND_READ                   0x0001
365 #define IME_CAND_CODE                   0x0002
366 #define IME_CAND_MEANING                0x0003
367 #define IME_CAND_RADICAL                0x0004
368 #define IME_CAND_STROKE                 0x0005
369
370
371 /* wParam of report message WM_IME_NOTIFY */
372 #define IMN_CLOSESTATUSWINDOW           0x0001
373 #define IMN_OPENSTATUSWINDOW            0x0002
374 #define IMN_CHANGECANDIDATE             0x0003
375 #define IMN_CLOSECANDIDATE              0x0004
376 #define IMN_OPENCANDIDATE               0x0005
377 #define IMN_SETCONVERSIONMODE           0x0006
378 #define IMN_SETSENTENCEMODE             0x0007
379 #define IMN_SETOPENSTATUS               0x0008
380 #define IMN_SETCANDIDATEPOS             0x0009
381 #define IMN_SETCOMPOSITIONFONT          0x000A
382 #define IMN_SETCOMPOSITIONWINDOW        0x000B
383 #define IMN_SETSTATUSWINDOWPOS          0x000C
384 #define IMN_GUIDELINE                   0x000D
385 #define IMN_PRIVATE                     0x000E
386
387
388 #if     (WINVER >= 0x040A)
389
390 /* wParam of report message WM_IME_REQUEST */
391 #define IMR_COMPOSITIONWINDOW           0x0001
392 #define IMR_CANDIDATEWINDOW             0x0002
393 #define IMR_COMPOSITIONFONT             0x0003
394 #define IMR_RECONVERTSTRING             0x0004
395 #define IMR_CONFIRMRECONVERTSTRING      0x0005
396
397 #endif  /* WINVER >= 0x040A */
398
399
400 /* error code of ImmGetCompositionString */
401 #define IMM_ERROR_NODATA                (-1)
402 #define IMM_ERROR_GENERAL               (-2)
403
404
405 /* dialog mode of ImmConfigureIME */
406 #define IME_CONFIG_GENERAL              1
407 #define IME_CONFIG_REGISTERWORD         2
408 #define IME_CONFIG_SELECTDICTIONARY     3
409
410 /* dialog mode of ImmEscape */
411 #define IME_ESC_QUERY_SUPPORT           0x0003
412 #define IME_ESC_RESERVED_FIRST          0x0004
413 #define IME_ESC_RESERVED_LAST           0x07FF
414 #define IME_ESC_PRIVATE_FIRST           0x0800
415 #define IME_ESC_PRIVATE_LAST            0x0FFF
416 #define IME_ESC_SEQUENCE_TO_INTERNAL    0x1001
417 #define IME_ESC_GET_EUDC_DICTIONARY     0x1003
418 #define IME_ESC_SET_EUDC_DICTIONARY     0x1004
419 #define IME_ESC_MAX_KEY                 0x1005
420 #define IME_ESC_IME_NAME                0x1006
421 #define IME_ESC_SYNC_HOTKEY             0x1007
422 #define IME_ESC_HANJA_MODE              0x1008
423 #define IME_ESC_AUTOMATA                0x1009
424 #define IME_ESC_PRIVATE_HOTKEY          0x100a
425 #define IME_ESC_GETHELPFILENAME         0x100b
426
427
428 /* style of word registration */
429 #define IME_REGWORD_STYLE_EUDC          0x00000001
430 #define IME_REGWORD_STYLE_USER_FIRST    0x80000000
431 #define IME_REGWORD_STYLE_USER_LAST     0xFFFFFFFF
432
433
434 #if     (WINVER >= 0x040A)
435
436 /* dwFlags for ImmAssociateContextEx */
437 #define IACE_CHILDREN                   0x0001
438 #define IACE_DEFAULT                    0x0010
439 #define IACE_IGNORENOCONTEXT            0x0020
440
441 /* dwFlags for ImmGetImeMenuItems */
442 #define IGIMIF_RIGHTMENU                0x0001
443
444 /* dwType for ImmGetImeMenuItems */
445 #define IGIMII_CMODE                    0x0001
446 #define IGIMII_SMODE                    0x0002
447 #define IGIMII_CONFIGURE                0x0004
448 #define IGIMII_TOOLS                    0x0008
449 #define IGIMII_HELP                     0x0010
450 #define IGIMII_OTHER                    0x0020
451 #define IGIMII_INPUTTOOLS               0x0040
452
453 /* fType of IMEMENUITEMINFO structure */
454 #define IMFT_RADIOCHECK                 0x00001
455 #define IMFT_SEPARATOR                  0x00002
456 #define IMFT_SUBMENU                    0x00004
457
458 /* fState of IMEMENUITEMINFO structure */
459 #define IMFS_GRAYED                     MFS_GRAYED
460 #define IMFS_DISABLED                   MFS_DISABLED
461 #define IMFS_CHECKED                    MFS_CHECKED
462 #define IMFS_HILITE                     MFS_HILITE
463 #define IMFS_ENABLED                    MFS_ENABLED
464 #define IMFS_UNCHECKED                  MFS_UNCHECKED
465 #define IMFS_UNHILITE                   MFS_UNHILITE
466 #define IMFS_DEFAULT                    MFS_DEFAULT
467
468 #endif  /* WINVER >= 0x040A */
469
470
471
472 /*
473  * type of soft keyboard
474  * for Windows Tranditional Chinese Edition
475  */
476 #define SOFTKEYBOARD_TYPE_T1            0x0001
477 /* for Windows Simplified Chinese Edition */
478 #define SOFTKEYBOARD_TYPE_C1            0x0002
479
480
481 HIMC   WINAPI ImmAssociateContext(HWND, HIMC);
482 BOOL   WINAPI ImmConfigureIMEA(HKL, HWND, DWORD, LPVOID);
483 BOOL   WINAPI ImmConfigureIMEW(HKL, HWND, DWORD, LPVOID);
484 #define  ImmConfigureIME WINELIB_NAME_AW(ImmConfigureIME)
485 HIMC   WINAPI ImmCreateContext();
486 BOOL   WINAPI ImmDestroyContext(HIMC hIMC);
487 BOOL   WINAPI ImmDisableIME(DWORD idThread);
488 UINT   WINAPI ImmEnumRegisterWordA(HKL, REGISTERWORDENUMPROCA, LPCSTR, DWORD, LPCSTR, LPVOID);
489 UINT   WINAPI ImmEnumRegisterWordW(HKL, REGISTERWORDENUMPROCW, LPCWSTR, DWORD, LPCWSTR, LPVOID);
490 #define  ImmEnumRegisterWord WINELIB_NAME_AW(ImmEnumRegisterWord)
491 LRESULT  WINAPI ImmEscapeA(HKL, HIMC, UINT, LPVOID);
492 LRESULT  WINAPI ImmEscapeW(HKL, HIMC, UINT, LPVOID);
493 #define  ImmEscape WINELIB_NAME_AW(ImmEscape)
494 DWORD    WINAPI ImmGetCandidateListA(HIMC, DWORD, LPCANDIDATELIST, DWORD);
495 DWORD    WINAPI ImmGetCandidateListW(HIMC, DWORD, LPCANDIDATELIST, DWORD);
496 #define  ImmGetCandidateList WINELIB_NAME_AW(ImmGetCandidateList)
497 DWORD    WINAPI ImmGetCandidateListCountA(HIMC, LPDWORD);
498 DWORD    WINAPI ImmGetCandidateListCountW(HIMC, LPDWORD);
499 #define  ImmGetCandidateListCount WINELIB_NAME_AW(ImmGetCandidateListCount)
500 BOOL   WINAPI ImmGetCandidateWindow(HIMC, DWORD, LPCANDIDATEFORM);
501 BOOL   WINAPI ImmGetCompositionFontA(HIMC, LPLOGFONTA);
502 BOOL   WINAPI ImmGetCompositionFontW(HIMC, LPLOGFONTW);
503 #define  ImmGetCompositionFont WINELIB_NAME_AW(ImmGetCompositionFont)
504 LONG     WINAPI ImmGetCompositionStringA(HIMC, DWORD, LPVOID, DWORD);
505 LONG     WINAPI ImmGetCompositionStringW(HIMC, DWORD, LPVOID, DWORD);
506 #define  ImmGetCompositionString WINELIB_NAME_AW(ImmGetCompositionString)
507 BOOL   WINAPI ImmGetCompositionWindow(HIMC, LPCOMPOSITIONFORM);
508 HIMC   WINAPI ImmGetContext(HWND);
509 DWORD    WINAPI ImmGetConversionListA(HKL, HIMC, LPCSTR, LPCANDIDATELIST, DWORD, UINT);
510 DWORD    WINAPI ImmGetConversionListW(HKL, HIMC, LPCWSTR, LPCANDIDATELIST, DWORD, UINT);
511 #define  ImmGetConversionList WINELIB_NAME_AW(ImmGetConversionList)
512 BOOL   WINAPI ImmGetConversionStatus(HIMC, LPDWORD, LPDWORD);
513 HWND   WINAPI ImmGetDefaultIMEWnd(HWND);
514 UINT   WINAPI ImmGetDescriptionA(HKL, LPSTR, UINT);
515 UINT   WINAPI ImmGetDescriptionW(HKL, LPWSTR, UINT);
516 #define  ImmGetDescription WINELIB_NAME_AW(ImmGetDescription)
517 DWORD    WINAPI ImmGetGuideLineA(HIMC, DWORD, LPSTR, DWORD);
518 DWORD    WINAPI ImmGetGuideLineW(HIMC, DWORD, LPWSTR, DWORD);
519 #define  ImmGetGuideLine WINELIB_NAME_AW(ImmGetGuideLine)
520 UINT   WINAPI ImmGetIMEFileNameA(HKL, LPSTR, UINT);
521 UINT   WINAPI ImmGetIMEFileNameW(HKL, LPWSTR, UINT);
522 #define  ImmGetIMEFileName WINELIB_NAME_AW(ImmGetIMEFileName)
523 BOOL   WINAPI ImmGetOpenStatus(HIMC);
524 DWORD    WINAPI ImmGetProperty(HKL, DWORD);
525 UINT   WINAPI ImmGetRegisterWordStyleA(HKL, UINT, LPSTYLEBUFA);
526 UINT   WINAPI ImmGetRegisterWordStyleW(HKL, UINT, LPSTYLEBUFW);
527 #define  ImmGetRegisterWordStyle WINELIB_NAME_AW(ImmGetRegisterWordStyle)
528 BOOL   WINAPI ImmGetStatusWindowPos(HIMC, LPPOINT);
529 UINT   WINAPI ImmGetVirtualKey(HWND);
530 HKL    WINAPI ImmInstallIMEA(LPCSTR, LPCSTR);
531 HKL    WINAPI ImmInstallIMEW(LPCWSTR, LPCWSTR);
532 #define  ImmInstallIME WINELIB_NAME_AW(ImmInstallIME)
533 BOOL   WINAPI ImmIsIME(HKL);
534 BOOL   WINAPI ImmIsUIMessageA(HWND, UINT, WPARAM, LPARAM);
535 BOOL   WINAPI ImmIsUIMessageW(HWND, UINT, WPARAM, LPARAM);
536 #define  ImmIsUIMessage WINELIB_NAME_AW(ImmIsUIMessage)
537 BOOL   WINAPI ImmNotifyIME(HIMC, DWORD, DWORD, DWORD);
538 BOOL   WINAPI ImmRegisterWordA(HKL, LPCSTR, DWORD, LPCSTR);
539 BOOL   WINAPI ImmRegisterWordW(HKL, LPCWSTR, DWORD, LPCWSTR);
540 #define  ImmRegisterWord WINELIB_NAME_AW(ImmRegisterWord)
541 BOOL   WINAPI ImmReleaseContext(HWND, HIMC);
542 BOOL   WINAPI ImmSetCandidateWindow(HIMC, LPCANDIDATEFORM);
543 BOOL   WINAPI ImmSetCompositionFontA(HIMC, LPLOGFONTA);
544 BOOL   WINAPI ImmSetCompositionFontW(HIMC, LPLOGFONTW);
545 #define  ImmSetCompositionFont WINELIB_NAME_AW(ImmSetCompositionFont)
546 BOOL   WINAPI ImmSetCompositionStringA(HIMC, DWORD, LPCVOID, DWORD, LPCVOID, DWORD);
547 BOOL   WINAPI ImmSetCompositionStringW(HIMC, DWORD, LPCVOID, DWORD, LPCVOID, DWORD);
548 #define  ImmSetCompositionString WINELIB_NAME_AW(ImmSetCompositionString)
549 BOOL   WINAPI ImmSetCompositionWindow(HIMC, LPCOMPOSITIONFORM);
550 BOOL   WINAPI ImmSetConversionStatus(HIMC, DWORD, DWORD);
551 BOOL   WINAPI ImmSetOpenStatus(HIMC, BOOL);
552 BOOL   WINAPI ImmSetStatusWindowPos(HIMC, LPPOINT);
553 BOOL   WINAPI ImmSimulateHotKey(HWND, DWORD);
554 BOOL   WINAPI ImmUnregisterWordA(HKL, LPCSTR, DWORD, LPCSTR);
555 BOOL   WINAPI ImmUnregisterWordW(HKL, LPCWSTR, DWORD, LPCWSTR);
556 #define  ImmUnregisterWord WINELIB_NAME_AW(ImmUnregisterWord)
557
558 #if     (WINVER >= 0x040A)
559
560 BOOL   WINAPI ImmAssociateContextEx(HWND, HIMC, DWORD);
561
562 #endif  /* WINVER >= 0x040A */
563
564
565 #ifdef __cplusplus
566 }
567 #endif
568
569 #endif  /* __WINE_IMM_H */