user: Added fast 32->16 mapping for the listbox and combobox messages.
[wine] / dlls / user / winproc.c
1 /*
2  * Window procedure callbacks
3  *
4  * Copyright 1995 Martin von Loewis
5  * Copyright 1996 Alexandre Julliard
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <stdarg.h>
27 #include <string.h>
28
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "wownt32.h"
33 #include "wine/winbase16.h"
34 #include "wine/winuser16.h"
35 #include "controls.h"
36 #include "win.h"
37 #include "winproc.h"
38 #include "user_private.h"
39 #include "dde.h"
40 #include "winternl.h"
41 #include "wine/unicode.h"
42 #include "wine/debug.h"
43
44 WINE_DECLARE_DEBUG_CHANNEL(msg);
45 WINE_DECLARE_DEBUG_CHANNEL(relay);
46 WINE_DEFAULT_DEBUG_CHANNEL(win);
47
48 typedef struct tagWINDOWPROC
49 {
50     WNDPROC16      proc16;   /* 16-bit window proc */
51     WNDPROC        procA;    /* ASCII window proc */
52     WNDPROC        procW;    /* Unicode window proc */
53 } WINDOWPROC;
54
55 #define WINPROC_HANDLE (~0UL >> 16)
56 #define MAX_WINPROCS  8192
57
58 static WINDOWPROC winproc_array[MAX_WINPROCS];
59 static UINT winproc_used;
60
61 static CRITICAL_SECTION winproc_cs;
62 static CRITICAL_SECTION_DEBUG critsect_debug =
63 {
64     0, 0, &winproc_cs,
65     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
66       0, 0, { (DWORD_PTR)(__FILE__ ": winproc_cs") }
67 };
68 static CRITICAL_SECTION winproc_cs = { &critsect_debug, -1, 0, 0, 0, 0 };
69
70 static inline void *get_buffer( void *static_buffer, size_t size, size_t need )
71 {
72     if (size >= need) return static_buffer;
73     return HeapAlloc( GetProcessHeap(), 0, need );
74 }
75
76 static inline void free_buffer( void *static_buffer, void *buffer )
77 {
78     if (buffer != static_buffer) HeapFree( GetProcessHeap(), 0, buffer );
79 }
80
81 /* find an existing winproc for a given 16-bit function and type */
82 /* FIXME: probably should do something more clever than a linear search */
83 static inline WINDOWPROC *find_winproc16( WNDPROC16 func )
84 {
85     unsigned int i;
86
87     for (i = 0; i < winproc_used; i++)
88     {
89         if (winproc_array[i].proc16 == func) return &winproc_array[i];
90     }
91     return NULL;
92 }
93
94 /* find an existing winproc for a given function and type */
95 /* FIXME: probably should do something more clever than a linear search */
96 static inline WINDOWPROC *find_winproc( WNDPROC funcA, WNDPROC funcW )
97 {
98     unsigned int i;
99
100     for (i = 0; i < winproc_used; i++)
101     {
102         if (funcA && winproc_array[i].procA != funcA) continue;
103         if (funcW && winproc_array[i].procW != funcW) continue;
104         return &winproc_array[i];
105     }
106     return NULL;
107 }
108
109 /* return the window proc for a given handle, or NULL for an invalid handle */
110 static inline WINDOWPROC *handle_to_proc( WNDPROC handle )
111 {
112     UINT index = LOWORD(handle);
113     if ((ULONG_PTR)handle >> 16 != WINPROC_HANDLE) return NULL;
114     if (index >= winproc_used) return NULL;
115     return &winproc_array[index];
116 }
117
118 /* create a handle for a given window proc */
119 static inline WNDPROC proc_to_handle( WINDOWPROC *proc )
120 {
121     return (WNDPROC)(ULONG_PTR)((proc - winproc_array) | (WINPROC_HANDLE << 16));
122 }
123
124 /* allocate and initialize a new winproc */
125 static inline WINDOWPROC *alloc_winproc( WNDPROC funcA, WNDPROC funcW )
126 {
127     WINDOWPROC *proc;
128
129     /* check if the function is already a win proc */
130     if (funcA && (proc = handle_to_proc( funcA ))) return proc;
131     if (funcW && (proc = handle_to_proc( funcW ))) return proc;
132     if (!funcA && !funcW) return NULL;
133
134     EnterCriticalSection( &winproc_cs );
135
136     /* check if we already have a winproc for that function */
137     if (!(proc = find_winproc( funcA, funcW )))
138     {
139         if (winproc_used < MAX_WINPROCS)
140         {
141             proc = &winproc_array[winproc_used++];
142             proc->procA = funcA;
143             proc->procW = funcW;
144             TRACE( "allocated %p for %p/%p (%d/%d used)\n",
145                    proc_to_handle(proc), funcA, funcW, winproc_used, MAX_WINPROCS );
146         }
147         else FIXME( "too many winprocs, cannot allocate one for %p/%p\n", funcA, funcW );
148     }
149     else TRACE( "reusing %p for %p/%p\n", proc_to_handle(proc), funcA, funcW );
150
151     LeaveCriticalSection( &winproc_cs );
152     return proc;
153 }
154
155
156 #ifdef __i386__
157
158 #include "pshpack1.h"
159
160 /* Window procedure 16-to-32-bit thunk */
161 typedef struct
162 {
163     BYTE        popl_eax;        /* popl  %eax (return address) */
164     BYTE        pushl_func;      /* pushl $proc */
165     WINDOWPROC *proc;
166     BYTE        pushl_eax;       /* pushl %eax */
167     BYTE        ljmp;            /* ljmp relay*/
168     DWORD       relay_offset;    /* __wine_call_wndproc */
169     WORD        relay_sel;
170 } WINPROC_THUNK;
171
172 #include "poppack.h"
173
174 #define MAX_THUNKS  (0x10000 / sizeof(WINPROC_THUNK))
175
176 static WINPROC_THUNK *thunk_array;
177 static UINT thunk_selector;
178 static UINT thunk_used;
179
180 /* return the window proc for a given handle, or NULL for an invalid handle */
181 static inline WINDOWPROC *handle16_to_proc( WNDPROC16 handle )
182 {
183     if (HIWORD(handle) == thunk_selector)
184     {
185         UINT index = LOWORD(handle) / sizeof(WINPROC_THUNK);
186         /* check alignment */
187         if (index * sizeof(WINPROC_THUNK) != LOWORD(handle)) return NULL;
188         /* check array limits */
189         if (index >= thunk_used) return NULL;
190         return thunk_array[index].proc;
191     }
192     return handle_to_proc( (WNDPROC)handle );
193 }
194
195 /* allocate a 16-bit thunk for an existing window proc */
196 static WNDPROC16 alloc_win16_thunk( WINDOWPROC *proc )
197 {
198     static FARPROC16 relay;
199     UINT i;
200
201     if (proc->proc16) return proc->proc16;
202
203     EnterCriticalSection( &winproc_cs );
204
205     if (!thunk_array)  /* allocate the array and its selector */
206     {
207         LDT_ENTRY entry;
208
209         if (!(thunk_selector = wine_ldt_alloc_entries(1))) goto done;
210         if (!(thunk_array = VirtualAlloc( NULL, MAX_THUNKS * sizeof(WINPROC_THUNK), MEM_COMMIT,
211                                           PAGE_EXECUTE_READWRITE ))) goto done;
212         wine_ldt_set_base( &entry, thunk_array );
213         wine_ldt_set_limit( &entry, MAX_THUNKS * sizeof(WINPROC_THUNK) - 1 );
214         wine_ldt_set_flags( &entry, WINE_LDT_FLAGS_CODE | WINE_LDT_FLAGS_32BIT );
215         wine_ldt_set_entry( thunk_selector, &entry );
216         relay = GetProcAddress16( GetModuleHandle16("user"), "__wine_call_wndproc" );
217     }
218
219     /* check if it already exists */
220     for (i = 0; i < thunk_used; i++) if (thunk_array[i].proc == proc) break;
221
222     if (i == thunk_used)  /* create a new one */
223     {
224         WINPROC_THUNK *thunk;
225
226         if (thunk_used >= MAX_THUNKS) goto done;
227         thunk = &thunk_array[thunk_used++];
228         thunk->popl_eax     = 0x58;   /* popl  %eax */
229         thunk->pushl_func   = 0x68;   /* pushl $proc */
230         thunk->proc         = proc;
231         thunk->pushl_eax    = 0x50;   /* pushl %eax */
232         thunk->ljmp         = 0xea;   /* ljmp   relay*/
233         thunk->relay_offset = OFFSETOF(relay);
234         thunk->relay_sel    = SELECTOROF(relay);
235     }
236     proc->proc16 = (WNDPROC16)MAKESEGPTR( thunk_selector, i * sizeof(WINPROC_THUNK) );
237 done:
238     LeaveCriticalSection( &winproc_cs );
239     return proc->proc16;
240 }
241
242 #else  /* __i386__ */
243
244 static inline WINDOWPROC *handle16_to_proc( WNDPROC16 handle )
245 {
246     return handle_to_proc( (WNDPROC)handle );
247 }
248
249 static inline WNDPROC16 alloc_win16_thunk( WINDOWPROC *proc )
250 {
251     return 0;
252 }
253
254 #endif  /* __i386__ */
255
256
257 #ifdef __i386__
258 /* Some window procedures modify register they shouldn't, or are not
259  * properly declared stdcall; so we need a small assembly wrapper to
260  * call them. */
261 extern LRESULT WINPROC_wrapper( WNDPROC proc, HWND hwnd, UINT msg,
262                                 WPARAM wParam, LPARAM lParam );
263 __ASM_GLOBAL_FUNC( WINPROC_wrapper,
264                    "pushl %ebp\n\t"
265                    "movl %esp,%ebp\n\t"
266                    "pushl %edi\n\t"
267                    "pushl %esi\n\t"
268                    "pushl %ebx\n\t"
269                    "subl $12,%esp\n\t"
270                    "pushl 24(%ebp)\n\t"
271                    "pushl 20(%ebp)\n\t"
272                    "pushl 16(%ebp)\n\t"
273                    "pushl 12(%ebp)\n\t"
274                    "movl 8(%ebp),%eax\n\t"
275                    "call *%eax\n\t"
276                    "leal -12(%ebp),%esp\n\t"
277                    "popl %ebx\n\t"
278                    "popl %esi\n\t"
279                    "popl %edi\n\t"
280                    "leave\n\t"
281                    "ret" );
282 #else
283 static inline LRESULT WINPROC_wrapper( WNDPROC proc, HWND hwnd, UINT msg,
284                                        WPARAM wParam, LPARAM lParam )
285 {
286     return proc( hwnd, msg, wParam, lParam );
287 }
288 #endif  /* __i386__ */
289
290 static void RECT16to32( const RECT16 *from, RECT *to )
291 {
292     to->left   = from->left;
293     to->top    = from->top;
294     to->right  = from->right;
295     to->bottom = from->bottom;
296 }
297
298 static void RECT32to16( const RECT *from, RECT16 *to )
299 {
300     to->left   = from->left;
301     to->top    = from->top;
302     to->right  = from->right;
303     to->bottom = from->bottom;
304 }
305
306 static void MINMAXINFO32to16( const MINMAXINFO *from, MINMAXINFO16 *to )
307 {
308     to->ptReserved.x     = from->ptReserved.x;
309     to->ptReserved.y     = from->ptReserved.y;
310     to->ptMaxSize.x      = from->ptMaxSize.x;
311     to->ptMaxSize.y      = from->ptMaxSize.y;
312     to->ptMaxPosition.x  = from->ptMaxPosition.x;
313     to->ptMaxPosition.y  = from->ptMaxPosition.y;
314     to->ptMinTrackSize.x = from->ptMinTrackSize.x;
315     to->ptMinTrackSize.y = from->ptMinTrackSize.y;
316     to->ptMaxTrackSize.x = from->ptMaxTrackSize.x;
317     to->ptMaxTrackSize.y = from->ptMaxTrackSize.y;
318 }
319
320 static void MINMAXINFO16to32( const MINMAXINFO16 *from, MINMAXINFO *to )
321 {
322     to->ptReserved.x     = from->ptReserved.x;
323     to->ptReserved.y     = from->ptReserved.y;
324     to->ptMaxSize.x      = from->ptMaxSize.x;
325     to->ptMaxSize.y      = from->ptMaxSize.y;
326     to->ptMaxPosition.x  = from->ptMaxPosition.x;
327     to->ptMaxPosition.y  = from->ptMaxPosition.y;
328     to->ptMinTrackSize.x = from->ptMinTrackSize.x;
329     to->ptMinTrackSize.y = from->ptMinTrackSize.y;
330     to->ptMaxTrackSize.x = from->ptMaxTrackSize.x;
331     to->ptMaxTrackSize.y = from->ptMaxTrackSize.y;
332 }
333
334 static void WINDOWPOS32to16( const WINDOWPOS* from, WINDOWPOS16* to )
335 {
336     to->hwnd            = HWND_16(from->hwnd);
337     to->hwndInsertAfter = HWND_16(from->hwndInsertAfter);
338     to->x               = from->x;
339     to->y               = from->y;
340     to->cx              = from->cx;
341     to->cy              = from->cy;
342     to->flags           = from->flags;
343 }
344
345 static void WINDOWPOS16to32( const WINDOWPOS16* from, WINDOWPOS* to )
346 {
347     to->hwnd            = WIN_Handle32(from->hwnd);
348     to->hwndInsertAfter = (from->hwndInsertAfter == (HWND16)-1) ?
349                            HWND_TOPMOST : WIN_Handle32(from->hwndInsertAfter);
350     to->x               = from->x;
351     to->y               = from->y;
352     to->cx              = from->cx;
353     to->cy              = from->cy;
354     to->flags           = from->flags;
355 }
356
357 /* The strings are not copied */
358 static void CREATESTRUCT32Ato16( const CREATESTRUCTA* from, CREATESTRUCT16* to )
359 {
360     to->lpCreateParams = (SEGPTR)from->lpCreateParams;
361     to->hInstance      = HINSTANCE_16(from->hInstance);
362     to->hMenu          = HMENU_16(from->hMenu);
363     to->hwndParent     = HWND_16(from->hwndParent);
364     to->cy             = from->cy;
365     to->cx             = from->cx;
366     to->y              = from->y;
367     to->x              = from->x;
368     to->style          = from->style;
369     to->dwExStyle      = from->dwExStyle;
370 }
371
372 static void CREATESTRUCT16to32A( const CREATESTRUCT16* from, CREATESTRUCTA *to )
373
374 {
375     to->lpCreateParams = (LPVOID)from->lpCreateParams;
376     to->hInstance      = HINSTANCE_32(from->hInstance);
377     to->hMenu          = HMENU_32(from->hMenu);
378     to->hwndParent     = WIN_Handle32(from->hwndParent);
379     to->cy             = from->cy;
380     to->cx             = from->cx;
381     to->y              = from->y;
382     to->x              = from->x;
383     to->style          = from->style;
384     to->dwExStyle      = from->dwExStyle;
385     to->lpszName       = MapSL(from->lpszName);
386     to->lpszClass      = MapSL(from->lpszClass);
387 }
388
389 /* The strings are not copied */
390 static void MDICREATESTRUCT32Ato16( const MDICREATESTRUCTA* from, MDICREATESTRUCT16* to )
391 {
392     to->hOwner = HINSTANCE_16(from->hOwner);
393     to->x      = from->x;
394     to->y      = from->y;
395     to->cx     = from->cx;
396     to->cy     = from->cy;
397     to->style  = from->style;
398     to->lParam = from->lParam;
399 }
400
401 static void MDICREATESTRUCT16to32A( const MDICREATESTRUCT16* from, MDICREATESTRUCTA *to )
402 {
403     to->hOwner = HINSTANCE_32(from->hOwner);
404     to->x      = from->x;
405     to->y      = from->y;
406     to->cx     = from->cx;
407     to->cy     = from->cy;
408     to->style  = from->style;
409     to->lParam = from->lParam;
410     to->szTitle = MapSL(from->szTitle);
411     to->szClass = MapSL(from->szClass);
412 }
413
414 static WPARAM map_wparam_char_AtoW( WPARAM wParam, DWORD len )
415 {
416     CHAR ch[2];
417     WCHAR wch;
418
419     ch[0] = (wParam >> 8);
420     ch[1] = wParam & 0xff;
421     if (len > 1 && ch[0])
422         RtlMultiByteToUnicodeN( &wch, sizeof(wch), NULL, ch, 2 );
423     else
424         RtlMultiByteToUnicodeN( &wch, sizeof(wch), NULL, ch + 1, 1 );
425     return MAKEWPARAM( wch, HIWORD(wParam) );
426 }
427
428 static WPARAM map_wparam_char_WtoA( WPARAM wParam, DWORD len )
429 {
430     WCHAR wch = wParam;
431     BYTE ch[2];
432
433     RtlUnicodeToMultiByteN( (LPSTR)ch, len, &len, &wch, sizeof(wch) );
434     if (len == 2)
435         return MAKEWPARAM( (ch[0] << 8) | ch[1], HIWORD(wParam) );
436     else
437         return MAKEWPARAM( ch[0], HIWORD(wParam) );
438 }
439
440 /* call a 32-bit window procedure */
441 static LRESULT call_window_proc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT *result, void *arg )
442 {
443     WNDPROC proc = arg;
444
445     USER_CheckNotLock();
446
447     hwnd = WIN_GetFullHandle( hwnd );
448     if (TRACE_ON(relay))
449         DPRINTF( "%04lx:Call window proc %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
450                  GetCurrentThreadId(), proc, hwnd, SPY_GetMsgName(msg, hwnd), wp, lp );
451
452     *result = WINPROC_wrapper( proc, hwnd, msg, wp, lp );
453
454     if (TRACE_ON(relay))
455         DPRINTF( "%04lx:Ret  window proc %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx) retval=%08lx\n",
456                  GetCurrentThreadId(), proc, hwnd, SPY_GetMsgName(msg, hwnd), wp, lp, *result );
457     return *result;
458 }
459
460 /* call a 32-bit dialog procedure */
461 static LRESULT call_dialog_proc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp, LRESULT *result, void *arg )
462 {
463     WNDPROC proc = arg;
464     LRESULT ret;
465
466     USER_CheckNotLock();
467
468     hwnd = WIN_GetFullHandle( hwnd );
469     if (TRACE_ON(relay))
470         DPRINTF( "%04lx:Call dialog proc %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
471                  GetCurrentThreadId(), proc, hwnd, SPY_GetMsgName(msg, hwnd), wp, lp );
472
473     ret = WINPROC_wrapper( proc, hwnd, msg, wp, lp );
474     *result = GetWindowLongPtrW( hwnd, DWLP_MSGRESULT );
475
476     if (TRACE_ON(relay))
477         DPRINTF( "%04lx:Ret  dialog proc %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx) retval=%08lx result=%08lx\n",
478                  GetCurrentThreadId(), proc, hwnd, SPY_GetMsgName(msg, hwnd), wp, lp, ret, *result );
479     return ret;
480 }
481
482 /* call a 16-bit window procedure */
483 static LRESULT call_window_proc16( HWND16 hwnd, UINT16 msg, WPARAM16 wParam, LPARAM lParam,
484                                    LRESULT *result, void *arg )
485 {
486     WNDPROC16 proc = arg;
487     CONTEXT86 context;
488     size_t size = 0;
489     struct
490     {
491         WORD params[5];
492         union
493         {
494             CREATESTRUCT16 cs16;
495             DRAWITEMSTRUCT16 dis16;
496             COMPAREITEMSTRUCT16 cis16;
497         } u;
498     } args;
499
500     USER_CheckNotLock();
501
502     /* Window procedures want ax = hInstance, ds = es = ss */
503
504     memset(&context, 0, sizeof(context));
505     context.SegDs = context.SegEs = SELECTOROF(NtCurrentTeb()->WOW32Reserved);
506     context.SegFs = wine_get_fs();
507     context.SegGs = wine_get_gs();
508     if (!(context.Eax = GetWindowWord( HWND_32(hwnd), GWLP_HINSTANCE ))) context.Eax = context.SegDs;
509     context.SegCs = SELECTOROF(proc);
510     context.Eip   = OFFSETOF(proc);
511     context.Ebp   = OFFSETOF(NtCurrentTeb()->WOW32Reserved) + (WORD)&((STACK16FRAME*)0)->bp;
512
513     if (lParam)
514     {
515         /* Some programs (eg. the "Undocumented Windows" examples, JWP) only
516            work if structures passed in lParam are placed in the stack/data
517            segment. Programmers easily make the mistake of converting lParam
518            to a near rather than a far pointer, since Windows apparently
519            allows this. We copy the structures to the 16 bit stack; this is
520            ugly but makes these programs work. */
521         switch (msg)
522         {
523           case WM_CREATE:
524           case WM_NCCREATE:
525             size = sizeof(CREATESTRUCT16); break;
526           case WM_DRAWITEM:
527             size = sizeof(DRAWITEMSTRUCT16); break;
528           case WM_COMPAREITEM:
529             size = sizeof(COMPAREITEMSTRUCT16); break;
530         }
531         if (size)
532         {
533             memcpy( &args.u, MapSL(lParam), size );
534             lParam = (SEGPTR)NtCurrentTeb()->WOW32Reserved - size;
535         }
536     }
537
538     args.params[4] = hwnd;
539     args.params[3] = msg;
540     args.params[2] = wParam;
541     args.params[1] = HIWORD(lParam);
542     args.params[0] = LOWORD(lParam);
543     WOWCallback16Ex( 0, WCB16_REGS, sizeof(args.params) + size, &args, (DWORD *)&context );
544     *result = MAKELONG( LOWORD(context.Eax), LOWORD(context.Edx) );
545     return *result;
546 }
547
548 /* call a 16-bit dialog procedure */
549 static LRESULT call_dialog_proc16( HWND16 hwnd, UINT16 msg, WPARAM16 wp, LPARAM lp,
550                                    LRESULT *result, void *arg )
551 {
552     LRESULT ret = call_window_proc16( hwnd, msg, wp, lp, result, arg );
553     *result = GetWindowLongPtrW( WIN_Handle32(hwnd), DWLP_MSGRESULT );
554     return LOWORD(ret);
555 }
556
557 /* helper callback for 32W->16 conversion */
558 static LRESULT call_window_proc_Ato16( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
559                                        LRESULT *result, void *arg )
560 {
561     return WINPROC_CallProc32ATo16( call_window_proc16, hwnd, msg, wp, lp, result, arg );
562 }
563
564 /* helper callback for 32W->16 conversion */
565 static LRESULT call_dialog_proc_Ato16( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
566                                        LRESULT *result, void *arg )
567 {
568     return WINPROC_CallProc32ATo16( call_dialog_proc16, hwnd, msg, wp, lp, result, arg );
569 }
570
571 /* helper callback for 16->32W conversion */
572 static LRESULT call_window_proc_AtoW( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
573                                       LRESULT *result, void *arg )
574 {
575     return WINPROC_CallProcAtoW( call_window_proc, hwnd, msg, wp, lp, result, arg );
576 }
577
578 /* helper callback for 16->32W conversion */
579 static LRESULT call_dialog_proc_AtoW( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
580                                       LRESULT *result, void *arg )
581 {
582     return WINPROC_CallProcAtoW( call_dialog_proc, hwnd, msg, wp, lp, result, arg );
583 }
584
585
586 /**********************************************************************
587  *           WINPROC_GetProc16
588  *
589  * Get a window procedure pointer that can be passed to the Windows program.
590  */
591 WNDPROC16 WINPROC_GetProc16( WNDPROC proc, BOOL unicode )
592 {
593     WINDOWPROC *ptr;
594
595     if (unicode) ptr = alloc_winproc( NULL, proc );
596     else ptr = alloc_winproc( proc, NULL );
597
598     if (!ptr) return 0;
599     return alloc_win16_thunk( ptr );
600 }
601
602
603 /**********************************************************************
604  *           WINPROC_GetProc
605  *
606  * Get a window procedure pointer that can be passed to the Windows program.
607  */
608 WNDPROC WINPROC_GetProc( WNDPROC proc, BOOL unicode )
609 {
610     WINDOWPROC *ptr = handle_to_proc( proc );
611
612     if (!ptr) return proc;
613     if (unicode)
614     {
615         if (ptr->procW) return ptr->procW;
616         return proc;
617     }
618     else
619     {
620         if (ptr->procA) return ptr->procA;
621         return proc;
622     }
623 }
624
625
626 /**********************************************************************
627  *           WINPROC_AllocProc16
628  *
629  * Allocate a window procedure for a window or class.
630  *
631  * Note that allocated winprocs are never freed; the idea is that even if an app creates a
632  * lot of windows, it will usually only have a limited number of window procedures, so the
633  * array won't grow too large, and this way we avoid the need to track allocations per window.
634  */
635 WNDPROC WINPROC_AllocProc16( WNDPROC16 func )
636 {
637     WINDOWPROC *proc;
638
639     if (!func) return NULL;
640
641     /* check if the function is already a win proc */
642     if (!(proc = handle16_to_proc( func )))
643     {
644         EnterCriticalSection( &winproc_cs );
645
646         /* then check if we already have a winproc for that function */
647         if (!(proc = find_winproc16( func )))
648         {
649             if (winproc_used < MAX_WINPROCS)
650             {
651                 proc = &winproc_array[winproc_used++];
652                 proc->proc16 = func;
653                 TRACE( "allocated %p for %p/16-bit (%d/%d used)\n",
654                        proc_to_handle(proc), func, winproc_used, MAX_WINPROCS );
655             }
656             else FIXME( "too many winprocs, cannot allocate one for 16-bit %p\n", func );
657         }
658         else TRACE( "reusing %p for %p/16-bit\n", proc_to_handle(proc), func );
659
660         LeaveCriticalSection( &winproc_cs );
661     }
662     return proc_to_handle( proc );
663 }
664
665
666 /**********************************************************************
667  *           WINPROC_AllocProc
668  *
669  * Allocate a window procedure for a window or class.
670  *
671  * Note that allocated winprocs are never freed; the idea is that even if an app creates a
672  * lot of windows, it will usually only have a limited number of window procedures, so the
673  * array won't grow too large, and this way we avoid the need to track allocations per window.
674  */
675 WNDPROC WINPROC_AllocProc( WNDPROC funcA, WNDPROC funcW )
676 {
677     WINDOWPROC *proc;
678
679     if (!(proc = alloc_winproc( funcA, funcW ))) return NULL;
680     return proc_to_handle( proc );
681 }
682
683
684 /**********************************************************************
685  *           WINPROC_IsUnicode
686  *
687  * Return the window procedure type, or the default value if not a winproc handle.
688  */
689 BOOL WINPROC_IsUnicode( WNDPROC proc, BOOL def_val )
690 {
691     WINDOWPROC *ptr = handle_to_proc( proc );
692
693     if (!ptr) return def_val;
694     if (ptr->procA && ptr->procW) return def_val;  /* can be both */
695     return (ptr->procW != NULL);
696 }
697
698
699 /**********************************************************************
700  *           WINPROC_TestLBForStr
701  *
702  * Return TRUE if the lparam is a string
703  */
704 inline static BOOL WINPROC_TestLBForStr( HWND hwnd, UINT msg )
705 {
706     DWORD style = GetWindowLongA( hwnd, GWL_STYLE );
707     if (msg <= CB_MSGMAX)
708         return (!(style & (CBS_OWNERDRAWFIXED | CBS_OWNERDRAWVARIABLE)) || (style & CBS_HASSTRINGS));
709     else
710         return (!(style & (LBS_OWNERDRAWFIXED | LBS_OWNERDRAWVARIABLE)) || (style & LBS_HASSTRINGS));
711
712 }
713
714
715 static UINT convert_handle_16_to_32(HANDLE16 src, unsigned int flags)
716 {
717     HANDLE      dst;
718     UINT        sz = GlobalSize16(src);
719     LPSTR       ptr16, ptr32;
720
721     if (!(dst = GlobalAlloc(flags, sz)))
722         return 0;
723     ptr16 = GlobalLock16(src);
724     ptr32 = GlobalLock(dst);
725     if (ptr16 != NULL && ptr32 != NULL) memcpy(ptr32, ptr16, sz);
726     GlobalUnlock16(src);
727     GlobalUnlock(dst);
728
729     return (UINT)dst;
730 }
731
732 static HANDLE16 convert_handle_32_to_16(UINT src, unsigned int flags)
733 {
734     HANDLE16    dst;
735     UINT        sz = GlobalSize((HANDLE)src);
736     LPSTR       ptr16, ptr32;
737
738     if (!(dst = GlobalAlloc16(flags, sz)))
739         return 0;
740     ptr32 = GlobalLock((HANDLE)src);
741     ptr16 = GlobalLock16(dst);
742     if (ptr16 != NULL && ptr32 != NULL) memcpy(ptr16, ptr32, sz);
743     GlobalUnlock((HANDLE)src);
744     GlobalUnlock16(dst);
745
746     return dst;
747 }
748
749
750 /**********************************************************************
751  *           WINPROC_MapMsg32ATo16
752  *
753  * Map a message from 32-bit Ansi to 16-bit.
754  * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
755  */
756 static INT WINPROC_MapMsg32ATo16( HWND hwnd, UINT msg32, WPARAM wParam32,
757                                   UINT16 *pmsg16, WPARAM16 *pwparam16, LPARAM *plparam )
758 {
759     *pmsg16 = (UINT16)msg32;
760     *pwparam16 = (WPARAM16)LOWORD(wParam32);
761     switch(msg32)
762     {
763     case WM_ACTIVATE:
764     case WM_CHARTOITEM:
765     case WM_COMMAND:
766     case WM_VKEYTOITEM:
767         *plparam = MAKELPARAM( (HWND16)*plparam, HIWORD(wParam32) );
768         return 0;
769     case WM_HSCROLL:
770     case WM_VSCROLL:
771         *plparam = MAKELPARAM( HIWORD(wParam32), (HWND16)*plparam );
772         return 0;
773     case WM_CTLCOLORMSGBOX:
774     case WM_CTLCOLOREDIT:
775     case WM_CTLCOLORLISTBOX:
776     case WM_CTLCOLORBTN:
777     case WM_CTLCOLORDLG:
778     case WM_CTLCOLORSCROLLBAR:
779     case WM_CTLCOLORSTATIC:
780         *pmsg16  = WM_CTLCOLOR;
781         *plparam = MAKELPARAM( (HWND16)*plparam,
782                                (WORD)msg32 - WM_CTLCOLORMSGBOX );
783         return 0;
784     case WM_MENUSELECT:
785         if(HIWORD(wParam32) & MF_POPUP)
786         {
787             HMENU hmenu;
788             if (((UINT)HIWORD(wParam32) != 0xFFFF) || (*plparam))
789             {
790                 if((hmenu = GetSubMenu((HMENU)*plparam, *pwparam16)))
791                     *pwparam16=HMENU_16(hmenu);
792             }
793         }
794         /* fall through */
795     case WM_MENUCHAR:
796         *plparam = MAKELPARAM( HIWORD(wParam32), (HMENU16)*plparam );
797         return 0;
798     case WM_PARENTNOTIFY:
799         if ((LOWORD(wParam32)==WM_CREATE) || (LOWORD(wParam32)==WM_DESTROY))
800             *plparam = MAKELPARAM( (HWND16)*plparam, HIWORD(wParam32));
801         /* else nothing to do */
802         return 0;
803     case WM_ACTIVATEAPP:
804         if (*plparam) *plparam = HTASK_16( (HANDLE)*plparam );
805         return 0;
806     case WM_PAINT:
807         if (IsIconic( hwnd ) && GetClassLongPtrW( hwnd, GCLP_HICON ))
808         {
809             *pmsg16 = WM_PAINTICON;
810             *pwparam16 = 1;
811         }
812         return 0;
813     case WM_ERASEBKGND:
814         if (IsIconic( hwnd ) && GetClassLongPtrW( hwnd, GCLP_HICON ))
815             *pmsg16 = WM_ICONERASEBKGND;
816         return 0;
817     case WM_PAINTCLIPBOARD:
818     case WM_SIZECLIPBOARD:
819         FIXME_(msg)("message %04x needs translation\n", msg32 );
820         return -1;
821     /* following messages should not be sent to 16-bit apps */
822     case WM_SIZING:
823     case WM_MOVING:
824     case WM_CAPTURECHANGED:
825     case WM_STYLECHANGING:
826     case WM_STYLECHANGED:
827         return -1;
828     default:  /* No translation needed */
829         return 0;
830     }
831 }
832
833
834 /**********************************************************************
835  *           WINPROC_CallProcAtoW
836  *
837  * Call a window procedure, translating args from Ansi to Unicode.
838  */
839 LRESULT WINPROC_CallProcAtoW( winproc_callback_t callback, HWND hwnd, UINT msg, WPARAM wParam,
840                               LPARAM lParam, LRESULT *result, void *arg )
841 {
842     LRESULT ret = 0;
843
844     TRACE_(msg)("(hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
845                 hwnd, SPY_GetMsgName(msg, hwnd), wParam, lParam);
846
847     switch(msg)
848     {
849     case WM_NCCREATE:
850     case WM_CREATE:
851         {
852             WCHAR *ptr, buffer[512];
853             CREATESTRUCTA *csA = (CREATESTRUCTA *)lParam;
854             CREATESTRUCTW csW = *(CREATESTRUCTW *)csA;
855             MDICREATESTRUCTW mdi_cs;
856             DWORD name_lenA = 0, name_lenW = 0, class_lenA = 0, class_lenW = 0;
857
858             if (HIWORD(csA->lpszClass))
859             {
860                 class_lenA = strlen(csA->lpszClass) + 1;
861                 RtlMultiByteToUnicodeSize( &class_lenW, csA->lpszClass, class_lenA );
862             }
863             if (HIWORD(csA->lpszName))
864             {
865                 name_lenA = strlen(csA->lpszName) + 1;
866                 RtlMultiByteToUnicodeSize( &name_lenW, csA->lpszName, name_lenA );
867             }
868
869             if (!(ptr = get_buffer( buffer, sizeof(buffer), class_lenW + name_lenW ))) break;
870
871             if (class_lenW)
872             {
873                 csW.lpszClass = ptr;
874                 RtlMultiByteToUnicodeN( ptr, class_lenW, NULL, csA->lpszClass, class_lenA );
875             }
876             if (name_lenW)
877             {
878                 csW.lpszName = ptr + class_lenW/sizeof(WCHAR);
879                 RtlMultiByteToUnicodeN( ptr + class_lenW/sizeof(WCHAR), name_lenW, NULL,
880                                         csA->lpszName, name_lenA );
881             }
882
883             if (GetWindowLongW(hwnd, GWL_EXSTYLE) & WS_EX_MDICHILD)
884             {
885                 mdi_cs = *(MDICREATESTRUCTW *)csA->lpCreateParams;
886                 mdi_cs.szTitle = csW.lpszName;
887                 mdi_cs.szClass = csW.lpszClass;
888                 csW.lpCreateParams = &mdi_cs;
889             }
890
891             ret = callback( hwnd, msg, wParam, (LPARAM)&csW, result, arg );
892             free_buffer( buffer, ptr );
893         }
894         break;
895
896     case WM_MDICREATE:
897         {
898             WCHAR *ptr, buffer[512];
899             DWORD title_lenA = 0, title_lenW = 0, class_lenA = 0, class_lenW = 0;
900             MDICREATESTRUCTA *csA = (MDICREATESTRUCTA *)lParam;
901             MDICREATESTRUCTW csW;
902
903             memcpy( &csW, csA, sizeof(csW) );
904
905             if (HIWORD(csA->szTitle))
906             {
907                 title_lenA = strlen(csA->szTitle) + 1;
908                 RtlMultiByteToUnicodeSize( &title_lenW, csA->szTitle, title_lenA );
909             }
910             if (HIWORD(csA->szClass))
911             {
912                 class_lenA = strlen(csA->szClass) + 1;
913                 RtlMultiByteToUnicodeSize( &class_lenW, csA->szClass, class_lenA );
914             }
915
916             if (!(ptr = get_buffer( buffer, sizeof(buffer), title_lenW + class_lenW ))) break;
917
918             if (title_lenW)
919             {
920                 csW.szTitle = ptr;
921                 RtlMultiByteToUnicodeN( ptr, title_lenW, NULL, csA->szTitle, title_lenA );
922             }
923             if (class_lenW)
924             {
925                 csW.szClass = ptr + title_lenW/sizeof(WCHAR);
926                 RtlMultiByteToUnicodeN( ptr + title_lenW/sizeof(WCHAR), class_lenW, NULL,
927                                         csA->szClass, class_lenA );
928             }
929             ret = callback( hwnd, msg, wParam, (LPARAM)&csW, result, arg );
930             free_buffer( buffer, ptr );
931         }
932         break;
933
934     case WM_GETTEXT:
935     case WM_ASKCBFORMATNAME:
936         {
937             WCHAR *ptr, buffer[512];
938             LPSTR str = (LPSTR)lParam;
939             DWORD len = wParam * sizeof(WCHAR);
940
941             if (!(ptr = get_buffer( buffer, sizeof(buffer), len ))) break;
942             ret = callback( hwnd, msg, wParam, (LPARAM)ptr, result, arg );
943             if (*result && wParam)
944             {
945                 RtlUnicodeToMultiByteN( str, wParam - 1, &len, ptr, strlenW(ptr) * sizeof(WCHAR) );
946                 str[len] = 0;
947                 *result = len;
948             }
949             free_buffer( buffer, ptr );
950         }
951         break;
952
953     case LB_ADDSTRING:
954     case LB_INSERTSTRING:
955     case LB_FINDSTRING:
956     case LB_FINDSTRINGEXACT:
957     case LB_SELECTSTRING:
958     case CB_ADDSTRING:
959     case CB_INSERTSTRING:
960     case CB_FINDSTRING:
961     case CB_FINDSTRINGEXACT:
962     case CB_SELECTSTRING:
963         if (!lParam || !WINPROC_TestLBForStr( hwnd, msg ))
964         {
965             ret = callback( hwnd, msg, wParam, lParam, result, arg );
966             break;
967         }
968         /* fall through */
969     case WM_SETTEXT:
970     case WM_WININICHANGE:
971     case WM_DEVMODECHANGE:
972     case CB_DIR:
973     case LB_DIR:
974     case LB_ADDFILE:
975     case EM_REPLACESEL:
976         if (!lParam) ret = callback( hwnd, msg, wParam, lParam, result, arg );
977         else
978         {
979             WCHAR *ptr, buffer[512];
980             LPCSTR strA = (LPCSTR)lParam;
981             DWORD lenW, lenA = strlen(strA) + 1;
982
983             RtlMultiByteToUnicodeSize( &lenW, strA, lenA );
984             if ((ptr = get_buffer( buffer, sizeof(buffer), lenW )))
985             {
986                 RtlMultiByteToUnicodeN( ptr, lenW, NULL, strA, lenA );
987                 ret = callback( hwnd, msg, wParam, (LPARAM)ptr, result, arg );
988                 free_buffer( buffer, ptr );
989             }
990         }
991         break;
992
993     case LB_GETTEXT:
994     case CB_GETLBTEXT:
995         if (lParam && WINPROC_TestLBForStr( hwnd, msg ))
996         {
997             WCHAR buffer[512];  /* FIXME: fixed sized buffer */
998
999             ret = callback( hwnd, msg, wParam, (LPARAM)buffer, result, arg );
1000             if (*result >= 0)
1001             {
1002                 DWORD len;
1003                 RtlUnicodeToMultiByteN( (LPSTR)lParam, ~0u, &len,
1004                                         buffer, (strlenW(buffer) + 1) * sizeof(WCHAR) );
1005                 *result = len - 1;
1006             }
1007         }
1008         else ret = callback( hwnd, msg, wParam, lParam, result, arg );
1009         break;
1010
1011     case EM_GETLINE:
1012         {
1013             WCHAR *ptr, buffer[512];
1014             WORD len = *(WORD *)lParam;
1015
1016             if (!(ptr = get_buffer( buffer, sizeof(buffer), len * sizeof(WCHAR) ))) break;
1017             *((WORD *)ptr) = len;   /* store the length */
1018             ret = callback( hwnd, msg, wParam, (LPARAM)ptr, result, arg );
1019             if (*result)
1020             {
1021                 DWORD reslen;
1022                 RtlUnicodeToMultiByteN( (LPSTR)lParam, len, &reslen, ptr, *result * sizeof(WCHAR) );
1023                 if (reslen < len) ((LPSTR)lParam)[reslen] = 0;
1024                 *result = reslen;
1025             }
1026             free_buffer( buffer, ptr );
1027         }
1028         break;
1029
1030     case WM_GETDLGCODE:
1031         if (lParam)
1032         {
1033             MSG newmsg = *(MSG *)lParam;
1034             switch(newmsg.message)
1035             {
1036             case WM_CHAR:
1037             case WM_DEADCHAR:
1038             case WM_SYSCHAR:
1039             case WM_SYSDEADCHAR:
1040                 newmsg.wParam = map_wparam_char_AtoW( newmsg.wParam, 1 );
1041                 break;
1042             case WM_IME_CHAR:
1043                 newmsg.wParam = map_wparam_char_AtoW( newmsg.wParam, 2 );
1044                 break;
1045             }
1046             ret = callback( hwnd, msg, wParam, (LPARAM)&newmsg, result, arg );
1047         }
1048         else ret = callback( hwnd, msg, wParam, lParam, result, arg );
1049         break;
1050
1051     case WM_CHARTOITEM:
1052     case WM_MENUCHAR:
1053     case WM_CHAR:
1054     case WM_DEADCHAR:
1055     case WM_SYSCHAR:
1056     case WM_SYSDEADCHAR:
1057     case EM_SETPASSWORDCHAR:
1058         ret = callback( hwnd, msg, map_wparam_char_AtoW(wParam,1), lParam, result, arg );
1059         break;
1060
1061     case WM_IME_CHAR:
1062         ret = callback( hwnd, msg, map_wparam_char_AtoW(wParam,2), lParam, result, arg );
1063         break;
1064
1065     case WM_GETTEXTLENGTH:
1066     case CB_GETLBTEXTLEN:
1067     case LB_GETTEXTLEN:
1068         ret = callback( hwnd, msg, wParam, lParam, result, arg );
1069         if (*result >= 0)
1070         {
1071             WCHAR *ptr, buffer[512];
1072             LRESULT tmp;
1073             DWORD len = *result + 1;
1074             /* Determine respective GETTEXT message */
1075             UINT msgGetText = (msg == WM_GETTEXTLENGTH) ? WM_GETTEXT :
1076                               ((msg == CB_GETLBTEXTLEN) ? CB_GETLBTEXT : LB_GETTEXT);
1077             /* wParam differs between the messages */
1078             WPARAM wp = (msg == WM_GETTEXTLENGTH) ? len : wParam;
1079
1080             if (!(ptr = get_buffer( buffer, sizeof(buffer), len * sizeof(WCHAR) ))) break;
1081
1082             if (callback == call_window_proc)  /* FIXME: hack */
1083                 callback( hwnd, msgGetText, wp, (LPARAM)ptr, &tmp, arg );
1084             else
1085                 tmp = SendMessageW( hwnd, msgGetText, wp, (LPARAM)ptr );
1086             RtlUnicodeToMultiByteSize( &len, ptr, tmp * sizeof(WCHAR) );
1087             *result = len;
1088             free_buffer( buffer, ptr );
1089         }
1090         break;
1091
1092     case WM_PAINTCLIPBOARD:
1093     case WM_SIZECLIPBOARD:
1094         FIXME_(msg)( "message %s (0x%x) needs translation, please report\n",
1095                      SPY_GetMsgName(msg, hwnd), msg );
1096         break;
1097
1098     default:
1099         ret = callback( hwnd, msg, wParam, lParam, result, arg );
1100         break;
1101     }
1102     return ret;
1103 }
1104
1105
1106 /**********************************************************************
1107  *           WINPROC_CallProcWtoA
1108  *
1109  * Call a window procedure, translating args from Unicode to Ansi.
1110  */
1111 static LRESULT WINPROC_CallProcWtoA( winproc_callback_t callback, HWND hwnd, UINT msg, WPARAM wParam,
1112                                      LPARAM lParam, LRESULT *result, void *arg )
1113 {
1114     LRESULT ret = 0;
1115
1116     TRACE_(msg)("(hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
1117                 hwnd, SPY_GetMsgName(msg, hwnd), wParam, lParam);
1118
1119     switch(msg)
1120     {
1121     case WM_NCCREATE:
1122     case WM_CREATE:
1123         {   /* csW->lpszName and csW->lpszClass are NOT supposed to be atoms
1124              * at this point.
1125              */
1126             char buffer[1024], *cls, *name;
1127             CREATESTRUCTW *csW = (CREATESTRUCTW *)lParam;
1128             CREATESTRUCTA csA = *(CREATESTRUCTA *)csW;
1129             MDICREATESTRUCTA mdi_cs;
1130             DWORD name_lenA, name_lenW, class_lenA, class_lenW;
1131
1132             class_lenW = strlenW(csW->lpszClass) * sizeof(WCHAR);
1133             RtlUnicodeToMultiByteSize(&class_lenA, csW->lpszClass, class_lenW);
1134
1135             if (csW->lpszName)
1136             {
1137                 name_lenW = strlenW(csW->lpszName) * sizeof(WCHAR);
1138                 RtlUnicodeToMultiByteSize(&name_lenA, csW->lpszName, name_lenW);
1139             }
1140             else
1141                 name_lenW = name_lenA = 0;
1142
1143             if (!(cls = get_buffer( buffer, sizeof(buffer), class_lenA + name_lenA + 2 ))) break;
1144
1145             RtlUnicodeToMultiByteN(cls, class_lenA, NULL, csW->lpszClass, class_lenW);
1146             cls[class_lenA] = 0;
1147             csA.lpszClass = cls;
1148
1149             if (csW->lpszName)
1150             {
1151                 name = cls + class_lenA + 1;
1152                 RtlUnicodeToMultiByteN(name, name_lenA, NULL, csW->lpszName, name_lenW);
1153                 name[name_lenA] = 0;
1154                 csA.lpszName = name;
1155             }
1156
1157             if (GetWindowLongW(hwnd, GWL_EXSTYLE) & WS_EX_MDICHILD)
1158             {
1159                 mdi_cs = *(MDICREATESTRUCTA *)csW->lpCreateParams;
1160                 mdi_cs.szTitle = csA.lpszName;
1161                 mdi_cs.szClass = csA.lpszClass;
1162                 csA.lpCreateParams = &mdi_cs;
1163             }
1164
1165             ret = callback( hwnd, msg, wParam, (LPARAM)&csA, result, arg );
1166             free_buffer( buffer, cls );
1167         }
1168         break;
1169
1170     case WM_GETTEXT:
1171     case WM_ASKCBFORMATNAME:
1172         {
1173             char *ptr, buffer[512];
1174             DWORD len = wParam * 2;
1175
1176             if (!(ptr = get_buffer( buffer, sizeof(buffer), len ))) break;
1177             ret = callback( hwnd, msg, wParam, (LPARAM)ptr, result, arg );
1178             if (*result && len)
1179             {
1180                 RtlMultiByteToUnicodeN( (LPWSTR)lParam, wParam*sizeof(WCHAR), &len, ptr, strlen(ptr)+1 );
1181                 *result = len/sizeof(WCHAR) - 1;  /* do not count terminating null */
1182                 ((LPWSTR)lParam)[*result] = 0;
1183             }
1184             free_buffer( buffer, ptr );
1185         }
1186         break;
1187
1188     case LB_ADDSTRING:
1189     case LB_INSERTSTRING:
1190     case LB_FINDSTRING:
1191     case LB_FINDSTRINGEXACT:
1192     case LB_SELECTSTRING:
1193     case CB_ADDSTRING:
1194     case CB_INSERTSTRING:
1195     case CB_FINDSTRING:
1196     case CB_FINDSTRINGEXACT:
1197     case CB_SELECTSTRING:
1198         if (!lParam || !WINPROC_TestLBForStr( hwnd, msg ))
1199         {
1200             ret = callback( hwnd, msg, wParam, lParam, result, arg );
1201             break;
1202         }
1203         /* fall through */
1204     case WM_SETTEXT:
1205     case WM_WININICHANGE:
1206     case WM_DEVMODECHANGE:
1207     case CB_DIR:
1208     case LB_DIR:
1209     case LB_ADDFILE:
1210     case EM_REPLACESEL:
1211         if (!lParam) ret = callback( hwnd, msg, wParam, lParam, result, arg );
1212         else
1213         {
1214             char *ptr, buffer[512];
1215             LPCWSTR strW = (LPCWSTR)lParam;
1216             DWORD lenA, lenW = (strlenW(strW) + 1) * sizeof(WCHAR);
1217
1218             RtlUnicodeToMultiByteSize( &lenA, strW, lenW );
1219             if ((ptr = get_buffer( buffer, sizeof(buffer), lenA )))
1220             {
1221                 RtlUnicodeToMultiByteN( ptr, lenA, NULL, strW, lenW );
1222                 ret = callback( hwnd, msg, wParam, (LPARAM)ptr, result, arg );
1223                 free_buffer( buffer, ptr );
1224             }
1225         }
1226         break;
1227
1228     case WM_MDICREATE:
1229         {
1230             char *ptr, buffer[1024];
1231             DWORD title_lenA = 0, title_lenW = 0, class_lenA = 0, class_lenW = 0;
1232             MDICREATESTRUCTW *csW = (MDICREATESTRUCTW *)lParam;
1233             MDICREATESTRUCTA csA;
1234
1235             memcpy( &csA, csW, sizeof(csA) );
1236
1237             if (HIWORD(csW->szTitle))
1238             {
1239                 title_lenW = (strlenW(csW->szTitle) + 1) * sizeof(WCHAR);
1240                 RtlUnicodeToMultiByteSize( &title_lenA, csW->szTitle, title_lenW );
1241             }
1242             if (HIWORD(csW->szClass))
1243             {
1244                 class_lenW = (strlenW(csW->szClass) + 1) * sizeof(WCHAR);
1245                 RtlUnicodeToMultiByteSize( &class_lenA, csW->szClass, class_lenW );
1246             }
1247
1248             if (!(ptr = get_buffer( buffer, sizeof(buffer), title_lenA + class_lenA ))) break;
1249
1250             if (title_lenA)
1251             {
1252                 RtlUnicodeToMultiByteN( ptr, title_lenA, NULL, csW->szTitle, title_lenW );
1253                 csA.szTitle = ptr;
1254             }
1255             if (class_lenA)
1256             {
1257                 RtlUnicodeToMultiByteN( ptr + title_lenA, class_lenA, NULL, csW->szClass, class_lenW );
1258                 csA.szClass = ptr + title_lenA;
1259             }
1260             ret = callback( hwnd, msg, wParam, (LPARAM)&csA, result, arg );
1261             free_buffer( buffer, ptr );
1262         }
1263         break;
1264
1265     case LB_GETTEXT:
1266     case CB_GETLBTEXT:
1267         if (lParam && WINPROC_TestLBForStr( hwnd, msg ))
1268         {
1269             char buffer[512];  /* FIXME: fixed sized buffer */
1270
1271             ret = callback( hwnd, msg, wParam, (LPARAM)buffer, result, arg );
1272             if (*result >= 0)
1273             {
1274                 DWORD len;
1275                 RtlMultiByteToUnicodeN( (LPWSTR)lParam, ~0u, &len, buffer, strlen(buffer) + 1 );
1276                 *result = len / sizeof(WCHAR) - 1;
1277             }
1278         }
1279         else ret = callback( hwnd, msg, wParam, lParam, result, arg );
1280         break;
1281
1282     case EM_GETLINE:
1283         {
1284             char *ptr, buffer[512];
1285             WORD len = *(WORD *)lParam;
1286
1287             if (!(ptr = get_buffer( buffer, sizeof(buffer), len * 2 ))) break;
1288             *((WORD *)ptr) = len * 2;   /* store the length */
1289             ret = callback( hwnd, msg, wParam, (LPARAM)ptr, result, arg );
1290             if (*result)
1291             {
1292                 DWORD reslen;
1293                 RtlMultiByteToUnicodeN( (LPWSTR)lParam, len*sizeof(WCHAR), &reslen, ptr, *result );
1294                 *result = reslen / sizeof(WCHAR);
1295                 if (*result < len) ((LPWSTR)lParam)[*result] = 0;
1296             }
1297             free_buffer( buffer, ptr );
1298         }
1299         break;
1300
1301     case WM_GETDLGCODE:
1302         if (lParam)
1303         {
1304             MSG newmsg = *(MSG *)lParam;
1305             switch(newmsg.message)
1306             {
1307             case WM_CHAR:
1308             case WM_DEADCHAR:
1309             case WM_SYSCHAR:
1310             case WM_SYSDEADCHAR:
1311                 newmsg.wParam = map_wparam_char_WtoA( newmsg.wParam, 1 );
1312                 break;
1313             case WM_IME_CHAR:
1314                 newmsg.wParam = map_wparam_char_WtoA( newmsg.wParam, 2 );
1315                 break;
1316             }
1317             ret = callback( hwnd, msg, wParam, (LPARAM)&newmsg, result, arg );
1318         }
1319         else ret = callback( hwnd, msg, wParam, lParam, result, arg );
1320         break;
1321
1322     case WM_CHARTOITEM:
1323     case WM_MENUCHAR:
1324     case WM_CHAR:
1325     case WM_DEADCHAR:
1326     case WM_SYSCHAR:
1327     case WM_SYSDEADCHAR:
1328     case EM_SETPASSWORDCHAR:
1329         ret = callback( hwnd, msg, map_wparam_char_WtoA(wParam,1), lParam, result, arg );
1330         break;
1331
1332     case WM_IME_CHAR:
1333         ret = callback( hwnd, msg, map_wparam_char_WtoA(wParam,2), lParam, result, arg );
1334         break;
1335
1336     case WM_PAINTCLIPBOARD:
1337     case WM_SIZECLIPBOARD:
1338         FIXME_(msg)( "message %s (%04x) needs translation, please report\n",
1339                      SPY_GetMsgName(msg, hwnd), msg );
1340         break;
1341
1342     default:
1343         ret = callback( hwnd, msg, wParam, lParam, result, arg );
1344         break;
1345     }
1346
1347     return ret;
1348 }
1349
1350
1351 /**********************************************************************
1352  *           WINPROC_CallProc16To32A
1353  */
1354 LRESULT WINPROC_CallProc16To32A( winproc_callback_t callback, HWND16 hwnd, UINT16 msg,
1355                                  WPARAM16 wParam, LPARAM lParam, LRESULT *result, void *arg )
1356 {
1357     LRESULT ret = 0;
1358     HWND hwnd32 = WIN_Handle32( hwnd );
1359
1360     TRACE_(msg)("(hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
1361                  hwnd32, SPY_GetMsgName(msg, hwnd32), wParam, lParam);
1362
1363     switch(msg)
1364     {
1365     case WM_NCCREATE:
1366     case WM_CREATE:
1367         {
1368             CREATESTRUCT16 *cs16 = MapSL(lParam);
1369             CREATESTRUCTA cs;
1370             MDICREATESTRUCTA mdi_cs;
1371
1372             CREATESTRUCT16to32A( cs16, &cs );
1373             if (GetWindowLongW(hwnd32, GWL_EXSTYLE) & WS_EX_MDICHILD)
1374             {
1375                 MDICREATESTRUCT16 *mdi_cs16 = MapSL(cs16->lpCreateParams);
1376                 MDICREATESTRUCT16to32A(mdi_cs16, &mdi_cs);
1377                 cs.lpCreateParams = &mdi_cs;
1378             }
1379             ret = callback( hwnd32, msg, wParam, (LPARAM)&cs, result, arg );
1380             CREATESTRUCT32Ato16( &cs, cs16 );
1381         }
1382         break;
1383     case WM_MDICREATE:
1384         {
1385             MDICREATESTRUCT16 *cs16 = MapSL(lParam);
1386             MDICREATESTRUCTA cs;
1387
1388             MDICREATESTRUCT16to32A( cs16, &cs );
1389             ret = callback( hwnd32, msg, wParam, (LPARAM)&cs, result, arg );
1390             MDICREATESTRUCT32Ato16( &cs, cs16 );
1391         }
1392         break;
1393     case WM_MDIACTIVATE:
1394         if (lParam)
1395             ret = callback( hwnd32, msg, (WPARAM)WIN_Handle32( HIWORD(lParam) ),
1396                             (LPARAM)WIN_Handle32( LOWORD(lParam) ), result, arg );
1397         else /* message sent to MDI client */
1398             ret = callback( hwnd32, msg, wParam, lParam, result, arg );
1399         break;
1400     case WM_MDIGETACTIVE:
1401         {
1402             BOOL maximized = FALSE;
1403             ret = callback( hwnd32, msg, wParam, (LPARAM)&maximized, result, arg );
1404             *result = MAKELRESULT( LOWORD(*result), maximized );
1405         }
1406         break;
1407     case WM_MDISETMENU:
1408         ret = callback( hwnd32, wParam ? WM_MDIREFRESHMENU : WM_MDISETMENU,
1409                         (WPARAM)HMENU_32(LOWORD(lParam)), (LPARAM)HMENU_32(HIWORD(lParam)),
1410                         result, arg );
1411         break;
1412     case WM_GETMINMAXINFO:
1413         {
1414             MINMAXINFO16 *mmi16 = MapSL(lParam);
1415             MINMAXINFO mmi;
1416
1417             MINMAXINFO16to32( mmi16, &mmi );
1418             ret = callback( hwnd32, msg, wParam, (LPARAM)&mmi, result, arg );
1419             MINMAXINFO32to16( &mmi, mmi16 );
1420         }
1421         break;
1422     case WM_WINDOWPOSCHANGING:
1423     case WM_WINDOWPOSCHANGED:
1424         {
1425             WINDOWPOS16 *winpos16 = MapSL(lParam);
1426             WINDOWPOS winpos;
1427
1428             WINDOWPOS16to32( winpos16, &winpos );
1429             ret = callback( hwnd32, msg, wParam, (LPARAM)&winpos, result, arg );
1430             WINDOWPOS32to16( &winpos, winpos16 );
1431         }
1432         break;
1433     case WM_NCCALCSIZE:
1434         {
1435             NCCALCSIZE_PARAMS16 *nc16 = MapSL(lParam);
1436             NCCALCSIZE_PARAMS nc;
1437             WINDOWPOS winpos;
1438
1439             RECT16to32( &nc16->rgrc[0], &nc.rgrc[0] );
1440             if (wParam)
1441             {
1442                 RECT16to32( &nc16->rgrc[1], &nc.rgrc[1] );
1443                 RECT16to32( &nc16->rgrc[2], &nc.rgrc[2] );
1444                 WINDOWPOS16to32( MapSL(nc16->lppos), &winpos );
1445                 nc.lppos = &winpos;
1446             }
1447             ret = callback( hwnd32, msg, wParam, (LPARAM)&nc, result, arg );
1448             RECT32to16( &nc.rgrc[0], &nc16->rgrc[0] );
1449             if (wParam)
1450             {
1451                 RECT32to16( &nc.rgrc[1], &nc16->rgrc[1] );
1452                 RECT32to16( &nc.rgrc[2], &nc16->rgrc[2] );
1453                 WINDOWPOS32to16( &winpos, MapSL(nc16->lppos) );
1454             }
1455         }
1456         break;
1457     case WM_COMPAREITEM:
1458         {
1459             COMPAREITEMSTRUCT16* cis16 = MapSL(lParam);
1460             COMPAREITEMSTRUCT cis;
1461             cis.CtlType    = cis16->CtlType;
1462             cis.CtlID      = cis16->CtlID;
1463             cis.hwndItem   = WIN_Handle32( cis16->hwndItem );
1464             cis.itemID1    = cis16->itemID1;
1465             cis.itemData1  = cis16->itemData1;
1466             cis.itemID2    = cis16->itemID2;
1467             cis.itemData2  = cis16->itemData2;
1468             cis.dwLocaleId = 0;  /* FIXME */
1469             ret = callback( hwnd32, msg, wParam, (LPARAM)&cis, result, arg );
1470         }
1471         break;
1472     case WM_DELETEITEM:
1473         {
1474             DELETEITEMSTRUCT16* dis16 = MapSL(lParam);
1475             DELETEITEMSTRUCT dis;
1476             dis.CtlType  = dis16->CtlType;
1477             dis.CtlID    = dis16->CtlID;
1478             dis.hwndItem = WIN_Handle32( dis16->hwndItem );
1479             dis.itemData = dis16->itemData;
1480             ret = callback( hwnd32, msg, wParam, (LPARAM)&dis, result, arg );
1481         }
1482         break;
1483     case WM_MEASUREITEM:
1484         {
1485             MEASUREITEMSTRUCT16* mis16 = MapSL(lParam);
1486             MEASUREITEMSTRUCT mis;
1487             mis.CtlType    = mis16->CtlType;
1488             mis.CtlID      = mis16->CtlID;
1489             mis.itemID     = mis16->itemID;
1490             mis.itemWidth  = mis16->itemWidth;
1491             mis.itemHeight = mis16->itemHeight;
1492             mis.itemData   = mis16->itemData;
1493             ret = callback( hwnd32, msg, wParam, (LPARAM)&mis, result, arg );
1494             mis16->itemWidth  = (UINT16)mis.itemWidth;
1495             mis16->itemHeight = (UINT16)mis.itemHeight;
1496         }
1497         break;
1498     case WM_DRAWITEM:
1499         {
1500             DRAWITEMSTRUCT16* dis16 = MapSL(lParam);
1501             DRAWITEMSTRUCT dis;
1502             dis.CtlType       = dis16->CtlType;
1503             dis.CtlID         = dis16->CtlID;
1504             dis.itemID        = dis16->itemID;
1505             dis.itemAction    = dis16->itemAction;
1506             dis.itemState     = dis16->itemState;
1507             dis.hwndItem      = (dis.CtlType == ODT_MENU) ? (HWND)HMENU_32(dis16->hwndItem)
1508                                                           : WIN_Handle32( dis16->hwndItem );
1509             dis.hDC           = HDC_32(dis16->hDC);
1510             dis.itemData      = dis16->itemData;
1511             dis.rcItem.left   = dis16->rcItem.left;
1512             dis.rcItem.top    = dis16->rcItem.top;
1513             dis.rcItem.right  = dis16->rcItem.right;
1514             dis.rcItem.bottom = dis16->rcItem.bottom;
1515             ret = callback( hwnd32, msg, wParam, (LPARAM)&dis, result, arg );
1516         }
1517         break;
1518     case WM_COPYDATA:
1519         {
1520             COPYDATASTRUCT16 *cds16 = MapSL(lParam);
1521             COPYDATASTRUCT cds;
1522             cds.dwData = cds16->dwData;
1523             cds.cbData = cds16->cbData;
1524             cds.lpData = MapSL(cds16->lpData);
1525             ret = callback( hwnd32, msg, wParam, (LPARAM)&cds, result, arg );
1526         }
1527         break;
1528     case WM_GETDLGCODE:
1529         if (lParam)
1530         {
1531             MSG16 *msg16 = MapSL(lParam);
1532             MSG msg32;
1533             msg32.hwnd    = WIN_Handle32( msg16->hwnd );
1534             msg32.message = msg16->message;
1535             msg32.wParam  = msg16->wParam;
1536             msg32.lParam  = msg16->lParam;
1537             msg32.time    = msg16->time;
1538             msg32.pt.x    = msg16->pt.x;
1539             msg32.pt.y    = msg16->pt.y;
1540             ret = callback( hwnd32, msg, wParam, (LPARAM)&msg32, result, arg );
1541         }
1542         else
1543             ret = callback( hwnd32, msg, wParam, lParam, result, arg );
1544         break;
1545     case WM_NEXTMENU:
1546         {
1547             MDINEXTMENU next;
1548             next.hmenuIn   = (HMENU)lParam;
1549             next.hmenuNext = 0;
1550             next.hwndNext  = 0;
1551             ret = callback( hwnd32, msg, wParam, (LPARAM)&next, result, arg );
1552             *result = MAKELONG( HMENU_16(next.hmenuNext), HWND_16(next.hwndNext) );
1553         }
1554         break;
1555     case WM_ACTIVATE:
1556     case WM_CHARTOITEM:
1557     case WM_COMMAND:
1558     case WM_VKEYTOITEM:
1559         ret = callback( hwnd32, msg, MAKEWPARAM( wParam, HIWORD(lParam) ),
1560                         (LPARAM)WIN_Handle32( LOWORD(lParam) ), result, arg );
1561         break;
1562     case WM_HSCROLL:
1563     case WM_VSCROLL:
1564         ret = callback( hwnd32, msg, MAKEWPARAM( wParam, LOWORD(lParam) ),
1565                         (LPARAM)WIN_Handle32( HIWORD(lParam) ), result, arg );
1566         break;
1567     case WM_CTLCOLOR:
1568         if (HIWORD(lParam) <= CTLCOLOR_STATIC)
1569             ret = callback( hwnd32, WM_CTLCOLORMSGBOX + HIWORD(lParam),
1570                             (WPARAM)HDC_32(wParam), (LPARAM)WIN_Handle32( LOWORD(lParam) ),
1571                             result, arg );
1572         break;
1573     case WM_GETTEXT:
1574     case WM_SETTEXT:
1575     case WM_WININICHANGE:
1576     case WM_DEVMODECHANGE:
1577     case WM_ASKCBFORMATNAME:
1578     case WM_NOTIFY:
1579         ret = callback( hwnd32, msg, wParam, (LPARAM)MapSL(lParam), result, arg );
1580         break;
1581     case WM_MENUCHAR:
1582         ret = callback( hwnd32, msg, MAKEWPARAM( wParam, LOWORD(lParam) ),
1583                         (LPARAM)HMENU_32(HIWORD(lParam)), result, arg );
1584         break;
1585     case WM_MENUSELECT:
1586         if((LOWORD(lParam) & MF_POPUP) && (LOWORD(lParam) != 0xFFFF))
1587         {
1588             HMENU hmenu = HMENU_32(HIWORD(lParam));
1589             UINT pos = MENU_FindSubMenu( &hmenu, HMENU_32(wParam) );
1590             if (pos == 0xffff) pos = 0;  /* NO_SELECTED_ITEM */
1591             wParam = pos;
1592         }
1593         ret = callback( hwnd32, msg, MAKEWPARAM( wParam, LOWORD(lParam) ),
1594                         (LPARAM)HMENU_32(HIWORD(lParam)), result, arg );
1595         break;
1596     case WM_PARENTNOTIFY:
1597         if ((wParam == WM_CREATE) || (wParam == WM_DESTROY))
1598             ret = callback( hwnd32, msg, MAKEWPARAM( wParam, HIWORD(lParam) ),
1599                             (LPARAM)WIN_Handle32( LOWORD(lParam) ), result, arg );
1600         else
1601             ret = callback( hwnd32, msg, wParam, lParam, result, arg );
1602         break;
1603     case WM_ACTIVATEAPP:
1604         /* We need this when SetActiveWindow sends a Sendmessage16() to
1605          * a 32bit window. Might be superflous with 32bit interprocess
1606          * message queues. */
1607         ret = callback( hwnd32, msg, wParam, HTASK_32(lParam), result, arg );
1608         break;
1609     case WM_DDE_INITIATE:
1610     case WM_DDE_TERMINATE:
1611     case WM_DDE_UNADVISE:
1612     case WM_DDE_REQUEST:
1613         ret = callback( hwnd32, msg, (WPARAM)WIN_Handle32(wParam), lParam, result, arg );
1614         break;
1615     case WM_DDE_ADVISE:
1616     case WM_DDE_DATA:
1617     case WM_DDE_POKE:
1618         {
1619             HANDLE16 lo16 = LOWORD(lParam);
1620             UINT lo32 = 0;
1621             if (lo16 && !(lo32 = convert_handle_16_to_32(lo16, GMEM_DDESHARE))) break;
1622             lParam = PackDDElParam( msg, lo32, HIWORD(lParam) );
1623             ret = callback( hwnd32, msg, (WPARAM)WIN_Handle32(wParam), lParam, result, arg );
1624         }
1625         break; /* FIXME don't know how to free allocated memory (handle)  !! */
1626     case WM_DDE_ACK:
1627         {
1628             UINT lo = LOWORD(lParam);
1629             UINT hi = HIWORD(lParam);
1630             int flag = 0;
1631             char buf[2];
1632
1633             if (GlobalGetAtomNameA(hi, buf, 2) > 0) flag |= 1;
1634             if (GlobalSize16(hi) != 0) flag |= 2;
1635             switch (flag)
1636             {
1637             case 0:
1638                 if (hi)
1639                 {
1640                     MESSAGE("DDE_ACK: neither atom nor handle!!!\n");
1641                     hi = 0;
1642                 }
1643                 break;
1644             case 1:
1645                 break; /* atom, nothing to do */
1646             case 3:
1647                 MESSAGE("DDE_ACK: %x both atom and handle... choosing handle\n", hi);
1648                 /* fall thru */
1649             case 2:
1650                 hi = convert_handle_16_to_32(hi, GMEM_DDESHARE);
1651                 break;
1652             }
1653             lParam = PackDDElParam( WM_DDE_ACK, lo, hi );
1654             ret = callback( hwnd32, msg, (WPARAM)WIN_Handle32(wParam), lParam, result, arg );
1655         }
1656         break; /* FIXME don't know how to free allocated memory (handle) !! */
1657     case WM_DDE_EXECUTE:
1658         lParam = convert_handle_16_to_32( lParam, GMEM_DDESHARE );
1659         ret = callback( hwnd32, msg, wParam, lParam, result, arg );
1660         break; /* FIXME don't know how to free allocated memory (handle) !! */
1661     case WM_PAINTCLIPBOARD:
1662     case WM_SIZECLIPBOARD:
1663         FIXME_(msg)( "message %04x needs translation\n", msg );
1664         break;
1665     default:
1666         ret = callback( hwnd32, msg, wParam, lParam, result, arg );
1667         break;
1668     }
1669     return ret;
1670 }
1671
1672
1673 /**********************************************************************
1674  *           __wine_call_wndproc   (USER.1010)
1675  */
1676 LRESULT WINAPI __wine_call_wndproc( HWND16 hwnd, UINT16 msg, WPARAM16 wParam, LPARAM lParam,
1677                                     WINDOWPROC *proc )
1678 {
1679     LRESULT result;
1680
1681     if (proc->procA)
1682         WINPROC_CallProc16To32A( call_window_proc, hwnd, msg, wParam, lParam, &result, proc->procA );
1683     else
1684         WINPROC_CallProc16To32A( call_window_proc_AtoW, hwnd, msg, wParam, lParam, &result, proc->procW );
1685     return result;
1686 }
1687
1688
1689 /**********************************************************************
1690  *           WINPROC_CallProc32ATo16
1691  *
1692  * Call a 16-bit window procedure, translating the 32-bit args.
1693  */
1694 LRESULT WINPROC_CallProc32ATo16( winproc_callback16_t callback, HWND hwnd, UINT msg,
1695                                  WPARAM wParam, LPARAM lParam, LRESULT *result, void *arg )
1696 {
1697     LRESULT ret = 0;
1698
1699     TRACE_(msg)("(hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
1700                 hwnd, SPY_GetMsgName(msg, hwnd), wParam, lParam);
1701
1702     switch(msg)
1703     {
1704     case WM_NCCREATE:
1705     case WM_CREATE:
1706         {
1707             CREATESTRUCTA *cs32 = (CREATESTRUCTA *)lParam;
1708             CREATESTRUCT16 cs;
1709             MDICREATESTRUCT16 mdi_cs16;
1710             BOOL mdi_child = (GetWindowLongW(hwnd, GWL_EXSTYLE) & WS_EX_MDICHILD);
1711
1712             CREATESTRUCT32Ato16( cs32, &cs );
1713             cs.lpszName  = MapLS( cs32->lpszName );
1714             cs.lpszClass = MapLS( cs32->lpszClass );
1715
1716             if (mdi_child)
1717             {
1718                 MDICREATESTRUCTA *mdi_cs = (MDICREATESTRUCTA *)cs32->lpCreateParams;
1719                 MDICREATESTRUCT32Ato16( mdi_cs, &mdi_cs16 );
1720                 mdi_cs16.szTitle = MapLS( mdi_cs->szTitle );
1721                 mdi_cs16.szClass = MapLS( mdi_cs->szClass );
1722                 cs.lpCreateParams = MapLS( &mdi_cs16 );
1723             }
1724             lParam = MapLS( &cs );
1725             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1726             UnMapLS( lParam );
1727             UnMapLS( cs.lpszName );
1728             UnMapLS( cs.lpszClass );
1729             if (mdi_child)
1730             {
1731                 UnMapLS( cs.lpCreateParams );
1732                 UnMapLS( mdi_cs16.szTitle );
1733                 UnMapLS( mdi_cs16.szClass );
1734             }
1735         }
1736         break;
1737     case WM_MDICREATE:
1738         {
1739             MDICREATESTRUCTA *cs32 = (MDICREATESTRUCTA *)lParam;
1740             MDICREATESTRUCT16 cs;
1741
1742             MDICREATESTRUCT32Ato16( cs32, &cs );
1743             cs.szTitle = MapLS( cs32->szTitle );
1744             cs.szClass = MapLS( cs32->szClass );
1745             lParam = MapLS( &cs );
1746             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1747             UnMapLS( lParam );
1748             UnMapLS( cs.szTitle );
1749             UnMapLS( cs.szClass );
1750         }
1751         break;
1752     case WM_MDIACTIVATE:
1753         if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_MDICHILD)
1754             ret = callback( HWND_16(hwnd), msg, ((HWND)lParam == hwnd),
1755                             MAKELPARAM( LOWORD(lParam), LOWORD(wParam) ), result, arg );
1756         else
1757             ret = callback( HWND_16(hwnd), msg, HWND_16( (HWND)wParam ), 0, result, arg );
1758         break;
1759     case WM_MDIGETACTIVE:
1760         ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1761         if (lParam) *(BOOL *)lParam = (BOOL16)HIWORD(*result);
1762         *result = (LRESULT)WIN_Handle32( LOWORD(*result) );
1763         break;
1764     case WM_MDISETMENU:
1765         ret = callback( HWND_16(hwnd), msg, (lParam == 0),
1766                         MAKELPARAM( LOWORD(wParam), LOWORD(lParam) ), result, arg );
1767         break;
1768     case WM_GETMINMAXINFO:
1769         {
1770             MINMAXINFO *mmi32 = (MINMAXINFO *)lParam;
1771             MINMAXINFO16 mmi;
1772
1773             MINMAXINFO32to16( mmi32, &mmi );
1774             lParam = MapLS( &mmi );
1775             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1776             UnMapLS( lParam );
1777             MINMAXINFO16to32( &mmi, mmi32 );
1778         }
1779         break;
1780     case WM_NCCALCSIZE:
1781         {
1782             NCCALCSIZE_PARAMS *nc32 = (NCCALCSIZE_PARAMS *)lParam;
1783             NCCALCSIZE_PARAMS16 nc;
1784             WINDOWPOS16 winpos;
1785
1786             RECT32to16( &nc32->rgrc[0], &nc.rgrc[0] );
1787             if (wParam)
1788             {
1789                 RECT32to16( &nc32->rgrc[1], &nc.rgrc[1] );
1790                 RECT32to16( &nc32->rgrc[2], &nc.rgrc[2] );
1791                 WINDOWPOS32to16( nc32->lppos, &winpos );
1792                 nc.lppos = MapLS( &winpos );
1793             }
1794             lParam = MapLS( &nc );
1795             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1796             UnMapLS( lParam );
1797             RECT16to32( &nc.rgrc[0], &nc32->rgrc[0] );
1798             if (wParam)
1799             {
1800                 RECT16to32( &nc.rgrc[1], &nc32->rgrc[1] );
1801                 RECT16to32( &nc.rgrc[2], &nc32->rgrc[2] );
1802                 WINDOWPOS16to32( &winpos, nc32->lppos );
1803                 UnMapLS( nc.lppos );
1804             }
1805         }
1806         break;
1807     case WM_WINDOWPOSCHANGING:
1808     case WM_WINDOWPOSCHANGED:
1809         {
1810             WINDOWPOS *winpos32 = (WINDOWPOS *)lParam;
1811             WINDOWPOS16 winpos;
1812
1813             WINDOWPOS32to16( winpos32, &winpos );
1814             lParam = MapLS( &winpos );
1815             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1816             UnMapLS( lParam );
1817             WINDOWPOS16to32( &winpos, winpos32 );
1818         }
1819         break;
1820     case WM_COMPAREITEM:
1821         {
1822             COMPAREITEMSTRUCT *cis32 = (COMPAREITEMSTRUCT *)lParam;
1823             COMPAREITEMSTRUCT16 cis;
1824             cis.CtlType    = cis32->CtlType;
1825             cis.CtlID      = cis32->CtlID;
1826             cis.hwndItem   = HWND_16( cis32->hwndItem );
1827             cis.itemID1    = cis32->itemID1;
1828             cis.itemData1  = cis32->itemData1;
1829             cis.itemID2    = cis32->itemID2;
1830             cis.itemData2  = cis32->itemData2;
1831             lParam = MapLS( &cis );
1832             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1833             UnMapLS( lParam );
1834         }
1835         break;
1836     case WM_DELETEITEM:
1837         {
1838             DELETEITEMSTRUCT *dis32 = (DELETEITEMSTRUCT *)lParam;
1839             DELETEITEMSTRUCT16 dis;
1840             dis.CtlType  = dis32->CtlType;
1841             dis.CtlID    = dis32->CtlID;
1842             dis.itemID   = dis32->itemID;
1843             dis.hwndItem = (dis.CtlType == ODT_MENU) ? (HWND16)LOWORD(dis32->hwndItem)
1844                                                      : HWND_16( dis32->hwndItem );
1845             dis.itemData = dis32->itemData;
1846             lParam = MapLS( &dis );
1847             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1848             UnMapLS( lParam );
1849         }
1850         break;
1851     case WM_DRAWITEM:
1852         {
1853             DRAWITEMSTRUCT *dis32 = (DRAWITEMSTRUCT *)lParam;
1854             DRAWITEMSTRUCT16 dis;
1855             dis.CtlType       = dis32->CtlType;
1856             dis.CtlID         = dis32->CtlID;
1857             dis.itemID        = dis32->itemID;
1858             dis.itemAction    = dis32->itemAction;
1859             dis.itemState     = dis32->itemState;
1860             dis.hwndItem      = HWND_16( dis32->hwndItem );
1861             dis.hDC           = HDC_16(dis32->hDC);
1862             dis.itemData      = dis32->itemData;
1863             dis.rcItem.left   = dis32->rcItem.left;
1864             dis.rcItem.top    = dis32->rcItem.top;
1865             dis.rcItem.right  = dis32->rcItem.right;
1866             dis.rcItem.bottom = dis32->rcItem.bottom;
1867             lParam = MapLS( &dis );
1868             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1869             UnMapLS( lParam );
1870         }
1871         break;
1872     case WM_MEASUREITEM:
1873         {
1874             MEASUREITEMSTRUCT *mis32 = (MEASUREITEMSTRUCT *)lParam;
1875             MEASUREITEMSTRUCT16 mis;
1876             mis.CtlType    = mis32->CtlType;
1877             mis.CtlID      = mis32->CtlID;
1878             mis.itemID     = mis32->itemID;
1879             mis.itemWidth  = mis32->itemWidth;
1880             mis.itemHeight = mis32->itemHeight;
1881             mis.itemData   = mis32->itemData;
1882             lParam = MapLS( &mis );
1883             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1884             UnMapLS( lParam );
1885             mis32->itemWidth  = mis.itemWidth;
1886             mis32->itemHeight = mis.itemHeight;
1887         }
1888         break;
1889     case WM_COPYDATA:
1890         {
1891             COPYDATASTRUCT *cds32 = (COPYDATASTRUCT *)lParam;
1892             COPYDATASTRUCT16 cds;
1893
1894             cds.dwData = cds32->dwData;
1895             cds.cbData = cds32->cbData;
1896             cds.lpData = MapLS( cds32->lpData );
1897             lParam = MapLS( &cds );
1898             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1899             UnMapLS( lParam );
1900             UnMapLS( cds.lpData );
1901         }
1902         break;
1903     case WM_GETDLGCODE:
1904         if (lParam)
1905         {
1906             MSG *msg32 = (MSG *)lParam;
1907             MSG16 msg16;
1908
1909             msg16.hwnd    = HWND_16( msg32->hwnd );
1910             msg16.message = msg32->message;
1911             msg16.wParam  = msg32->wParam;
1912             msg16.lParam  = msg32->lParam;
1913             msg16.time    = msg32->time;
1914             msg16.pt.x    = msg32->pt.x;
1915             msg16.pt.y    = msg32->pt.y;
1916             lParam = MapLS( &msg16 );
1917             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1918             UnMapLS( lParam );
1919         }
1920         else
1921             ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1922         break;
1923     case WM_NEXTMENU:
1924         {
1925             MDINEXTMENU *next = (MDINEXTMENU *)lParam;
1926             ret = callback( HWND_16(hwnd), msg, wParam, (LPARAM)next->hmenuIn, result, arg );
1927             next->hmenuNext = HMENU_32( LOWORD(*result) );
1928             next->hwndNext  = WIN_Handle32( HIWORD(*result) );
1929             *result = 0;
1930         }
1931         break;
1932     case WM_GETTEXT:
1933     case WM_ASKCBFORMATNAME:
1934         wParam = min( wParam, 0xff80 ); /* Must be < 64K */
1935         /* fall through */
1936     case WM_NOTIFY:
1937     case WM_SETTEXT:
1938     case WM_WININICHANGE:
1939     case WM_DEVMODECHANGE:
1940         lParam = MapLS( (void *)lParam );
1941         ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1942         UnMapLS( lParam );
1943         break;
1944     case WM_DDE_INITIATE:
1945     case WM_DDE_TERMINATE:
1946     case WM_DDE_UNADVISE:
1947     case WM_DDE_REQUEST:
1948         ret = callback( HWND_16(hwnd), msg, HWND_16((HWND)wParam), lParam, result, arg );
1949         break;
1950     case WM_DDE_ADVISE:
1951     case WM_DDE_DATA:
1952     case WM_DDE_POKE:
1953         {
1954             UINT_PTR lo32, hi;
1955             HANDLE16 lo16 = 0;
1956
1957             UnpackDDElParam( msg, lParam, &lo32, &hi );
1958             if (lo32 && !(lo16 = convert_handle_32_to_16(lo32, GMEM_DDESHARE))) break;
1959             ret = callback( HWND_16(hwnd), msg, HWND_16((HWND)wParam),
1960                             MAKELPARAM(lo16, hi), result, arg );
1961         }
1962         break; /* FIXME don't know how to free allocated memory (handle)  !! */
1963     case WM_DDE_ACK:
1964         {
1965             UINT_PTR lo, hi;
1966             int flag = 0;
1967             char buf[2];
1968
1969             UnpackDDElParam( msg, lParam, &lo, &hi );
1970
1971             if (GlobalGetAtomNameA((ATOM)hi, buf, sizeof(buf)) > 0) flag |= 1;
1972             if (GlobalSize((HANDLE)hi) != 0) flag |= 2;
1973             switch (flag)
1974             {
1975             case 0:
1976                 if (hi)
1977                 {
1978                     MESSAGE("DDE_ACK: neither atom nor handle!!!\n");
1979                     hi = 0;
1980                 }
1981                 break;
1982             case 1:
1983                 break; /* atom, nothing to do */
1984             case 3:
1985                 MESSAGE("DDE_ACK: %x both atom and handle... choosing handle\n", hi);
1986                 /* fall thru */
1987             case 2:
1988                 hi = convert_handle_32_to_16(hi, GMEM_DDESHARE);
1989                 break;
1990             }
1991             ret = callback( HWND_16(hwnd), msg, HWND_16((HWND)wParam),
1992                             MAKELPARAM(lo, hi), result, arg );
1993         }
1994         break; /* FIXME don't know how to free allocated memory (handle) !! */
1995     case WM_DDE_EXECUTE:
1996         lParam = convert_handle_32_to_16(lParam, GMEM_DDESHARE);
1997         ret = callback( HWND_16(hwnd), msg, wParam, lParam, result, arg );
1998         break; /* FIXME don't know how to free allocated memory (handle) !! */
1999     case SBM_SETRANGE:
2000         ret = callback( HWND_16(hwnd), SBM_SETRANGE16, 0, MAKELPARAM(wParam, lParam), result, arg );
2001         break;
2002     case SBM_GETRANGE:
2003         ret = callback( HWND_16(hwnd), SBM_GETRANGE16, wParam, lParam, result, arg );
2004         *(LPINT)wParam = LOWORD(*result);
2005         *(LPINT)lParam = HIWORD(*result);
2006         break;
2007     case BM_GETCHECK:
2008     case BM_SETCHECK:
2009     case BM_GETSTATE:
2010     case BM_SETSTATE:
2011     case BM_SETSTYLE:
2012         ret = callback( HWND_16(hwnd), msg + BM_GETCHECK16 - BM_GETCHECK, wParam, lParam, result, arg );
2013         break;
2014     case EM_GETSEL:
2015     case EM_GETRECT:
2016     case EM_SETRECT:
2017     case EM_SETRECTNP:
2018     case EM_SCROLL:
2019     case EM_LINESCROLL:
2020     case EM_SCROLLCARET:
2021     case EM_GETMODIFY:
2022     case EM_SETMODIFY:
2023     case EM_GETLINECOUNT:
2024     case EM_LINEINDEX:
2025     case EM_SETHANDLE:
2026     case EM_GETHANDLE:
2027     case EM_GETTHUMB:
2028     case EM_LINELENGTH:
2029     case EM_REPLACESEL:
2030     case EM_GETLINE:
2031     case EM_LIMITTEXT:
2032     case EM_CANUNDO:
2033     case EM_UNDO:
2034     case EM_FMTLINES:
2035     case EM_LINEFROMCHAR:
2036     case EM_SETTABSTOPS:
2037     case EM_SETPASSWORDCHAR:
2038     case EM_EMPTYUNDOBUFFER:
2039     case EM_GETFIRSTVISIBLELINE:
2040     case EM_SETREADONLY:
2041     case EM_SETWORDBREAKPROC:
2042     case EM_GETWORDBREAKPROC:
2043     case EM_GETPASSWORDCHAR:
2044         ret = callback( HWND_16(hwnd), msg + EM_GETSEL16 - EM_GETSEL, wParam, lParam, result, arg );
2045         break;
2046     case EM_SETSEL:
2047         ret = callback( HWND_16(hwnd), EM_SETSEL16, 0, MAKELPARAM( wParam, lParam ), result, arg );
2048         break;
2049     case LB_CARETOFF:
2050     case LB_CARETON:
2051     case LB_DELETESTRING:
2052     case LB_GETANCHORINDEX:
2053     case LB_GETCARETINDEX:
2054     case LB_GETCOUNT:
2055     case LB_GETCURSEL:
2056     case LB_GETHORIZONTALEXTENT:
2057     case LB_GETITEMDATA:
2058     case LB_GETITEMHEIGHT:
2059     case LB_GETSEL:
2060     case LB_GETSELCOUNT:
2061     case LB_GETTEXTLEN:
2062     case LB_GETTOPINDEX:
2063     case LB_RESETCONTENT:
2064     case LB_SELITEMRANGE:
2065     case LB_SELITEMRANGEEX:
2066     case LB_SETANCHORINDEX:
2067     case LB_SETCARETINDEX:
2068     case LB_SETCOLUMNWIDTH:
2069     case LB_SETCURSEL:
2070     case LB_SETHORIZONTALEXTENT:
2071     case LB_SETITEMDATA:
2072     case LB_SETITEMHEIGHT:
2073     case LB_SETSEL:
2074     case LB_SETTOPINDEX:
2075         ret = callback( HWND_16(hwnd), msg + LB_ADDSTRING16 - LB_ADDSTRING, wParam, lParam, result, arg );
2076         break;
2077     case LB_ADDSTRING:
2078     case LB_FINDSTRING:
2079     case LB_FINDSTRINGEXACT:
2080     case LB_INSERTSTRING:
2081     case LB_SELECTSTRING:
2082     case LB_GETTEXT:
2083     case LB_DIR:
2084     case LB_ADDFILE:
2085         lParam = MapLS( (LPSTR)lParam );
2086         ret = callback( HWND_16(hwnd), msg + LB_ADDSTRING16 - LB_ADDSTRING, wParam, lParam, result, arg );
2087         UnMapLS( lParam );
2088         break;
2089     case LB_GETSELITEMS:
2090         {
2091             INT *items32 = (INT *)lParam;
2092             INT16 *items, buffer[512];
2093             unsigned int i;
2094
2095             wParam = min( wParam, 0x7f80 ); /* Must be < 64K */
2096             if (!(items = get_buffer( buffer, sizeof(buffer), wParam * sizeof(INT16) ))) break;
2097             lParam = MapLS( items );
2098             ret = callback( HWND_16(hwnd), LB_GETSELITEMS16, wParam, lParam, result, arg );
2099             UnMapLS( lParam );
2100             for (i = 0; i < wParam; i++) items32[i] = items[i];
2101             free_buffer( buffer, items );
2102         }
2103         break;
2104     case LB_SETTABSTOPS:
2105         if (wParam)
2106         {
2107             INT *stops32 = (INT *)lParam;
2108             INT16 *stops, buffer[512];
2109             unsigned int i;
2110
2111             wParam = min( wParam, 0x7f80 ); /* Must be < 64K */
2112             if (!(stops = get_buffer( buffer, sizeof(buffer), wParam * sizeof(INT16) ))) break;
2113             for (i = 0; i < wParam; i++) stops[i] = stops32[i];
2114             lParam = MapLS( stops );
2115             ret = callback( HWND_16(hwnd), LB_SETTABSTOPS16, wParam, lParam, result, arg );
2116             UnMapLS( lParam );
2117             free_buffer( buffer, stops );
2118         }
2119         else ret = callback( HWND_16(hwnd), LB_SETTABSTOPS16, wParam, lParam, result, arg );
2120         break;
2121     case CB_DELETESTRING:
2122     case CB_GETCOUNT:
2123     case CB_GETLBTEXTLEN:
2124     case CB_LIMITTEXT:
2125     case CB_RESETCONTENT:
2126     case CB_SETEDITSEL:
2127     case CB_GETCURSEL:
2128     case CB_SETCURSEL:
2129     case CB_SHOWDROPDOWN:
2130     case CB_SETITEMDATA:
2131     case CB_SETITEMHEIGHT:
2132     case CB_GETITEMHEIGHT:
2133     case CB_SETEXTENDEDUI:
2134     case CB_GETEXTENDEDUI:
2135     case CB_GETDROPPEDSTATE:
2136         ret = callback( HWND_16(hwnd), msg + CB_GETEDITSEL16 - CB_GETEDITSEL, wParam, lParam, result, arg );
2137         break;
2138     case CB_GETEDITSEL:
2139         ret = callback( HWND_16(hwnd), CB_GETEDITSEL16, wParam, lParam, result, arg );
2140         if (wParam) *((PUINT)(wParam)) = LOWORD(*result);
2141         if (lParam) *((PUINT)(lParam)) = HIWORD(*result);  /* FIXME: substract 1? */
2142         break;
2143     case CB_ADDSTRING:
2144     case CB_FINDSTRING:
2145     case CB_FINDSTRINGEXACT:
2146     case CB_INSERTSTRING:
2147     case CB_SELECTSTRING:
2148     case CB_DIR:
2149     case CB_GETLBTEXT:
2150         lParam = MapLS( (LPSTR)lParam );
2151         ret = callback( HWND_16(hwnd), msg + CB_GETEDITSEL16 - CB_GETEDITSEL, wParam, lParam, result, arg );
2152         UnMapLS( lParam );
2153         break;
2154     case LB_GETITEMRECT:
2155     case CB_GETDROPPEDCONTROLRECT:
2156         {
2157             RECT *r32 = (RECT *)lParam;
2158             RECT16 rect;
2159             lParam = MapLS( &rect );
2160             ret = callback( HWND_16(hwnd),
2161                             (msg == LB_GETITEMRECT) ? LB_GETITEMRECT16 : CB_GETDROPPEDCONTROLRECT16,
2162                             wParam, lParam, result, arg );
2163             UnMapLS( lParam );
2164             RECT16to32( &rect, r32 );
2165         }
2166         break;
2167     default:
2168         {
2169             UINT16 msg16;
2170             WPARAM16 wParam16;
2171             LPARAM lParam16 = lParam;
2172             if (WINPROC_MapMsg32ATo16( hwnd, msg, wParam, &msg16, &wParam16, &lParam16 ) != -1)
2173             {
2174                 ret = callback( HWND_16(hwnd), msg16, wParam16, lParam16, result, arg );
2175             }
2176         }
2177         break;
2178     }
2179     return ret;
2180 }
2181
2182
2183 /**********************************************************************
2184  *              CallWindowProc (USER.122)
2185  */
2186 LRESULT WINAPI CallWindowProc16( WNDPROC16 func, HWND16 hwnd, UINT16 msg,
2187                                  WPARAM16 wParam, LPARAM lParam )
2188 {
2189     WINDOWPROC *proc;
2190     LRESULT result;
2191
2192     if (!func) return 0;
2193
2194     if (!(proc = handle16_to_proc( func )))
2195         call_window_proc16( hwnd, msg, wParam, lParam, &result, func );
2196     else if (proc->procA)
2197         WINPROC_CallProc16To32A( call_window_proc, hwnd, msg, wParam, lParam, &result, proc->procA );
2198     else if (proc->procW)
2199         WINPROC_CallProc16To32A( call_window_proc_AtoW, hwnd, msg, wParam, lParam, &result, proc->procW );
2200     else
2201         call_window_proc16( hwnd, msg, wParam, lParam, &result, proc->proc16 );
2202
2203     return result;
2204 }
2205
2206
2207 /**********************************************************************
2208  *              CallWindowProcA (USER32.@)
2209  *
2210  * The CallWindowProc() function invokes the windows procedure _func_,
2211  * with _hwnd_ as the target window, the message specified by _msg_, and
2212  * the message parameters _wParam_ and _lParam_.
2213  *
2214  * Some kinds of argument conversion may be done, I'm not sure what.
2215  *
2216  * CallWindowProc() may be used for windows subclassing. Use
2217  * SetWindowLong() to set a new windows procedure for windows of the
2218  * subclass, and handle subclassed messages in the new windows
2219  * procedure. The new windows procedure may then use CallWindowProc()
2220  * with _func_ set to the parent class's windows procedure to dispatch
2221  * the message to the superclass.
2222  *
2223  * RETURNS
2224  *
2225  *    The return value is message dependent.
2226  *
2227  * CONFORMANCE
2228  *
2229  *   ECMA-234, Win32
2230  */
2231 LRESULT WINAPI CallWindowProcA(
2232     WNDPROC func,  /* [in] window procedure */
2233     HWND hwnd,     /* [in] target window */
2234     UINT msg,      /* [in] message */
2235     WPARAM wParam, /* [in] message dependent parameter */
2236     LPARAM lParam  /* [in] message dependent parameter */
2237 ) {
2238     WINDOWPROC *proc;
2239     LRESULT result;
2240
2241     if (!func) return 0;
2242
2243     if (!(proc = handle_to_proc( func )))
2244         call_window_proc( hwnd, msg, wParam, lParam, &result, func );
2245     else if (proc->procA)
2246         call_window_proc( hwnd, msg, wParam, lParam, &result, proc->procA );
2247     else if (proc->procW)
2248         WINPROC_CallProcAtoW( call_window_proc, hwnd, msg, wParam, lParam, &result, proc->procW );
2249     else
2250         WINPROC_CallProc32ATo16( call_window_proc16, hwnd, msg, wParam, lParam, &result, proc->proc16 );
2251     return result;
2252 }
2253
2254
2255 /**********************************************************************
2256  *              CallWindowProcW (USER32.@)
2257  *
2258  * See CallWindowProcA.
2259  */
2260 LRESULT WINAPI CallWindowProcW( WNDPROC func, HWND hwnd, UINT msg,
2261                                   WPARAM wParam, LPARAM lParam )
2262 {
2263     WINDOWPROC *proc;
2264     LRESULT result;
2265
2266     if (!func) return 0;
2267
2268     if (!(proc = handle_to_proc( func )))
2269         call_window_proc( hwnd, msg, wParam, lParam, &result, func );
2270     else if (proc->procW)
2271         call_window_proc( hwnd, msg, wParam, lParam, &result, proc->procW );
2272     else if (proc->procA)
2273         WINPROC_CallProcWtoA( call_window_proc, hwnd, msg, wParam, lParam, &result, proc->procA );
2274     else
2275         WINPROC_CallProcWtoA( call_window_proc_Ato16, hwnd, msg, wParam, lParam, &result, proc->proc16 );
2276     return result;
2277 }
2278
2279
2280 /**********************************************************************
2281  *              WINPROC_CallDlgProc16
2282  */
2283 INT_PTR WINPROC_CallDlgProc16( DLGPROC16 func, HWND16 hwnd, UINT16 msg, WPARAM16 wParam, LPARAM lParam )
2284 {
2285     WINDOWPROC *proc;
2286     LRESULT result;
2287     INT_PTR ret;
2288
2289     if (!func) return 0;
2290
2291     if (!(proc = handle16_to_proc( (WNDPROC16)func )))
2292     {
2293         ret = call_dialog_proc16( hwnd, msg, wParam, lParam, &result, func );
2294     }
2295     else if (proc->procA)
2296     {
2297         ret = WINPROC_CallProc16To32A( call_dialog_proc, hwnd, msg, wParam, lParam,
2298                                        &result, proc->procA );
2299         SetWindowLongPtrW( WIN_Handle32(hwnd), DWLP_MSGRESULT, result );
2300     }
2301     else if (proc->procW)
2302     {
2303         ret = WINPROC_CallProc16To32A( call_dialog_proc_AtoW, hwnd, msg, wParam, lParam,
2304                                        &result, proc->procW );
2305         SetWindowLongPtrW( WIN_Handle32(hwnd), DWLP_MSGRESULT, result );
2306     }
2307     else
2308     {
2309         ret = call_dialog_proc16( hwnd, msg, wParam, lParam, &result, proc->proc16 );
2310     }
2311     return ret;
2312 }
2313
2314
2315 /**********************************************************************
2316  *              WINPROC_CallDlgProcA
2317  */
2318 INT_PTR WINPROC_CallDlgProcA( DLGPROC func, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
2319 {
2320     WINDOWPROC *proc;
2321     LRESULT result;
2322     INT_PTR ret;
2323
2324     if (!func) return 0;
2325
2326     if (!(proc = handle_to_proc( (WNDPROC)func )))
2327         ret = call_dialog_proc( hwnd, msg, wParam, lParam, &result, func );
2328     else if (proc->procA)
2329         ret = call_dialog_proc( hwnd, msg, wParam, lParam, &result, proc->procA );
2330     else if (proc->procW)
2331     {
2332         ret = WINPROC_CallProcAtoW( call_dialog_proc, hwnd, msg, wParam, lParam, &result, proc->procW );
2333         SetWindowLongPtrW( hwnd, DWLP_MSGRESULT, result );
2334     }
2335     else
2336     {
2337         ret = WINPROC_CallProc32ATo16( call_dialog_proc16, hwnd, msg, wParam, lParam, &result, proc->proc16 );
2338         SetWindowLongPtrW( hwnd, DWLP_MSGRESULT, result );
2339     }
2340     return ret;
2341 }
2342
2343
2344 /**********************************************************************
2345  *              WINPROC_CallDlgProcW
2346  */
2347 INT_PTR WINPROC_CallDlgProcW( DLGPROC func, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
2348 {
2349     WINDOWPROC *proc;
2350     LRESULT result;
2351     INT_PTR ret;
2352
2353     if (!func) return 0;
2354
2355     if (!(proc = handle_to_proc( (WNDPROC)func )))
2356         ret = call_dialog_proc( hwnd, msg, wParam, lParam, &result, func );
2357     else if (proc->procW)
2358         ret = call_dialog_proc( hwnd, msg, wParam, lParam, &result, proc->procW );
2359     else if (proc->procA)
2360     {
2361         ret = WINPROC_CallProcWtoA( call_dialog_proc, hwnd, msg, wParam, lParam, &result, proc->procA );
2362         SetWindowLongPtrW( hwnd, DWLP_MSGRESULT, result );
2363     }
2364     else
2365     {
2366         ret = WINPROC_CallProcWtoA( call_dialog_proc_Ato16, hwnd, msg, wParam, lParam, &result, proc->proc16 );
2367         SetWindowLongPtrW( hwnd, DWLP_MSGRESULT, result );
2368     }
2369     return ret;
2370 }