2 * Window procedure callbacks
4 * Copyright 1995 Martin von Loewis
5 * Copyright 1996 Alexandre Julliard
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "wine/port.h"
32 #include "wine/winbase16.h"
33 #include "wine/winuser16.h"
34 #include "stackframe.h"
44 #include "wine/unicode.h"
45 #include "wine/debug.h"
47 WINE_DECLARE_DEBUG_CHANNEL(msg
);
48 WINE_DECLARE_DEBUG_CHANNEL(relay
);
49 WINE_DEFAULT_DEBUG_CHANNEL(win
);
53 /* Window procedure 16-to-32-bit thunk */
56 BYTE popl_eax
; /* popl %eax (return address) */
57 BYTE pushl_func
; /* pushl $proc */
59 BYTE pushl_eax
; /* pushl %eax */
60 BYTE ljmp
; /* ljmp relay*/
61 DWORD relay_offset
; /* __wine_call_wndproc_32A/W */
63 } WINPROC_THUNK_FROM16
;
65 /* Window procedure 32-to-16-bit thunk */
68 BYTE popl_eax
; /* popl %eax (return address) */
69 BYTE pushl_func
; /* pushl $proc */
71 BYTE pushl_eax
; /* pushl %eax */
72 BYTE jmp
; /* jmp relay (relative jump)*/
73 void (*relay
)(); /* WINPROC_CallProc32ATo16() */
74 } WINPROC_THUNK_FROM32
;
76 /* Simple jmp to call 32-bit procedure directly */
79 BYTE jmp
; /* jmp proc (relative jump) */
86 WINPROC_THUNK_FROM16 t_from16
;
87 WINPROC_THUNK_FROM32 t_from32
;
90 typedef struct tagWINDOWPROC
92 WINPROC_THUNK thunk
; /* Thunk */
93 WINPROC_JUMP jmp
; /* Jump */
94 struct tagWINDOWPROC
*next
; /* Next window proc */
95 UINT magic
; /* Magic number */
96 WINDOWPROCTYPE type
; /* Function type */
97 WINDOWPROCUSER user
; /* Function user */
100 #define WINPROC_MAGIC ('W' | ('P' << 8) | ('R' << 16) | ('C' << 24))
102 #define WINPROC_THUNKPROC(pproc) \
103 (((pproc)->type == WIN_PROC_16) ? \
104 (WNDPROC16)((pproc)->thunk.t_from32.proc) : \
105 (WNDPROC16)((pproc)->thunk.t_from16.proc))
107 static LRESULT WINAPI
WINPROC_CallProc32ATo16( WNDPROC16 func
, HWND hwnd
,
108 UINT msg
, WPARAM wParam
,
110 static LRESULT WINAPI
WINPROC_CallProc32WTo16( WNDPROC16 func
, HWND hwnd
,
111 UINT msg
, WPARAM wParam
,
114 #define MAX_WINPROCS (0x10000 / sizeof(WINDOWPROC))
116 static WINDOWPROC winproc_array
[MAX_WINPROCS
];
117 static WINDOWPROC
*winproc_first_free
;
118 static UINT winproc_used
;
120 static CRITICAL_SECTION winproc_cs
;
121 static CRITICAL_SECTION_DEBUG critsect_debug
=
124 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
125 0, 0, { 0, (DWORD
)(__FILE__
": winproc_cs") }
127 static CRITICAL_SECTION winproc_cs
= { &critsect_debug
, -1, 0, 0, 0, 0 };
129 /* allocate a window procedure from the global array */
130 static WINDOWPROC
*alloc_winproc(void)
132 WINDOWPROC
*ret
= NULL
;
134 EnterCriticalSection( &winproc_cs
);
135 if ((ret
= winproc_first_free
))
136 winproc_first_free
= ret
->next
;
137 else if (winproc_used
< MAX_WINPROCS
)
138 ret
= &winproc_array
[winproc_used
++];
139 LeaveCriticalSection( &winproc_cs
);
143 static void free_winproc( WINDOWPROC
*proc
)
145 EnterCriticalSection( &winproc_cs
);
147 proc
->next
= winproc_first_free
;
148 winproc_first_free
= proc
;
149 LeaveCriticalSection( &winproc_cs
);
152 static BOOL
is_valid_winproc( WINDOWPROC
*proc
)
154 if (proc
< winproc_array
|| proc
>= winproc_array
+ MAX_WINPROCS
) return FALSE
;
155 if (proc
!= winproc_array
+ (proc
- winproc_array
)) return FALSE
;
156 return (proc
->magic
== WINPROC_MAGIC
);
159 static WORD
get_winproc_selector(void)
161 static LONG winproc_selector
;
164 if (!(ret
= winproc_selector
))
167 WORD sel
= wine_ldt_alloc_entries(1);
168 wine_ldt_set_base( &entry
, winproc_array
);
169 wine_ldt_set_limit( &entry
, sizeof(winproc_array
) - 1 );
170 wine_ldt_set_flags( &entry
, WINE_LDT_FLAGS_CODE
| WINE_LDT_FLAGS_32BIT
);
171 wine_ldt_set_entry( sel
, &entry
);
172 if (!(ret
= InterlockedCompareExchange( &winproc_selector
, sel
, 0 ))) ret
= sel
;
173 else wine_ldt_free_entries( sel
, 1 ); /* somebody beat us to it */
180 /* Some window procedures modify register they shouldn't, or are not
181 * properly declared stdcall; so we need a small assembly wrapper to
183 extern LRESULT
WINPROC_wrapper( WNDPROC proc
, HWND hwnd
, UINT msg
,
184 WPARAM wParam
, LPARAM lParam
);
185 __ASM_GLOBAL_FUNC( WINPROC_wrapper
,
195 "movl 8(%ebp),%eax\n\t"
197 "leal -12(%ebp),%esp\n\t"
204 static inline LRESULT
WINPROC_wrapper( WNDPROC proc
, HWND hwnd
, UINT msg
,
205 WPARAM wParam
, LPARAM lParam
)
207 return proc( hwnd
, msg
, wParam
, lParam
);
209 #endif /* __i386__ */
211 /**********************************************************************
212 * WINPROC_CallWndProc32
214 * Call a 32-bit WndProc.
216 static LRESULT
WINPROC_CallWndProc( WNDPROC proc
, HWND hwnd
, UINT msg
,
217 WPARAM wParam
, LPARAM lParam
)
222 hwnd
= WIN_GetFullHandle( hwnd
);
224 DPRINTF( "%04lx:Call window proc %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
225 GetCurrentThreadId(), proc
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
226 /* To avoid any deadlocks, all the locks on the windows structures
227 must be suspended before the control is passed to the application */
228 iWndsLocks
= WIN_SuspendWndsLock();
229 retvalue
= WINPROC_wrapper( proc
, hwnd
, msg
, wParam
, lParam
);
230 WIN_RestoreWndsLock(iWndsLocks
);
233 DPRINTF( "%04lx:Ret window proc %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx) retval=%08lx\n",
234 GetCurrentThreadId(), proc
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
, retvalue
);
238 /***********************************************************************
239 * WINPROC_CallWndProc16
241 * Call a 16-bit window procedure
243 static LRESULT WINAPI
WINPROC_CallWndProc16( WNDPROC16 proc
, HWND16 hwnd
,
244 UINT16 msg
, WPARAM16 wParam
,
251 TEB
*teb
= NtCurrentTeb();
254 /* Window procedures want ax = hInstance, ds = es = ss */
256 memset(&context
, 0, sizeof(context
));
257 context
.SegDs
= context
.SegEs
= SELECTOROF(teb
->cur_stack
);
258 context
.SegFs
= wine_get_fs();
259 context
.SegGs
= wine_get_gs();
260 if (!(context
.Eax
= GetWindowWord( HWND_32(hwnd
), GWL_HINSTANCE
))) context
.Eax
= context
.SegDs
;
261 context
.SegCs
= SELECTOROF(proc
);
262 context
.Eip
= OFFSETOF(proc
);
263 context
.Ebp
= OFFSETOF(teb
->cur_stack
)
264 + (WORD
)&((STACK16FRAME
*)0)->bp
;
268 /* Some programs (eg. the "Undocumented Windows" examples, JWP) only
269 work if structures passed in lParam are placed in the stack/data
270 segment. Programmers easily make the mistake of converting lParam
271 to a near rather than a far pointer, since Windows apparently
272 allows this. We copy the structures to the 16 bit stack; this is
273 ugly but makes these programs work. */
278 offset
= sizeof(CREATESTRUCT16
); break;
280 offset
= sizeof(DRAWITEMSTRUCT16
); break;
282 offset
= sizeof(COMPAREITEMSTRUCT16
); break;
286 void *s
= MapSL(lParam
);
287 lParam
= stack16_push( offset
);
288 memcpy( MapSL(lParam
), s
, offset
);
292 iWndsLocks
= WIN_SuspendWndsLock();
297 args
[1] = HIWORD(lParam
);
298 args
[0] = LOWORD(lParam
);
299 WOWCallback16Ex( 0, WCB16_REGS
, sizeof(args
), args
, (DWORD
*)&context
);
300 ret
= MAKELONG( LOWORD(context
.Eax
), LOWORD(context
.Edx
) );
302 if (offset
) stack16_pop( offset
);
304 WIN_RestoreWndsLock(iWndsLocks
);
310 /**********************************************************************
313 * Return a pointer to the win proc.
315 static WINDOWPROC
*WINPROC_GetPtr( WNDPROC handle
)
320 /* ptr cannot be < 64K */
321 if (!HIWORD(handle
)) return NULL
;
323 /* Check for a linear pointer */
325 ptr
= (BYTE
*)handle
;
326 /* First check if it is the jmp address */
327 proc
= (WINDOWPROC
*)(ptr
- (int)&((WINDOWPROC
*)0)->jmp
);
328 if (is_valid_winproc(proc
)) return proc
;
330 /* Now it must be the thunk address */
331 proc
= (WINDOWPROC
*)(ptr
- (int)&((WINDOWPROC
*)0)->thunk
);
332 if (is_valid_winproc(proc
)) return proc
;
334 /* Check for a segmented pointer */
336 if (!IsBadReadPtr16( (SEGPTR
)handle
, sizeof(proc
->thunk
) ))
338 ptr
= MapSL( (SEGPTR
)handle
);
339 /* It must be the thunk address */
340 proc
= (WINDOWPROC
*)(ptr
- (int)&((WINDOWPROC
*)0)->thunk
);
341 if (is_valid_winproc(proc
)) return proc
;
348 /**********************************************************************
349 * WINPROC_AllocWinProc
351 * Allocate a new window procedure.
353 static WINDOWPROC
*WINPROC_AllocWinProc( WNDPROC func
, WINDOWPROCTYPE type
,
354 WINDOWPROCUSER user
)
356 static FARPROC16 relay_32A
, relay_32W
;
358 WINDOWPROC
*proc
, *oldproc
;
360 /* Allocate a window procedure */
362 if (!(proc
= alloc_winproc())) return 0;
364 /* Check if the function is already a win proc */
366 if ((oldproc
= WINPROC_GetPtr( func
)))
375 proc
->thunk
.t_from32
.popl_eax
= 0x58; /* popl %eax */
376 proc
->thunk
.t_from32
.pushl_func
= 0x68; /* pushl $proc */
377 proc
->thunk
.t_from32
.proc
= (WNDPROC16
)func
;
378 proc
->thunk
.t_from32
.pushl_eax
= 0x50; /* pushl %eax */
379 proc
->thunk
.t_from32
.jmp
= 0xe9; /* jmp relay*/
380 proc
->thunk
.t_from32
.relay
= /* relative jump */
381 (void(*)())((DWORD
)WINPROC_CallProc32ATo16
-
382 (DWORD
)(&proc
->thunk
.t_from32
.relay
+ 1));
385 if (!relay_32A
) relay_32A
= GetProcAddress16( GetModuleHandle16("user"),
386 "__wine_call_wndproc_32A" );
387 proc
->thunk
.t_from16
.popl_eax
= 0x58; /* popl %eax */
388 proc
->thunk
.t_from16
.pushl_func
= 0x68; /* pushl $proc */
389 proc
->thunk
.t_from16
.proc
= func
;
390 proc
->thunk
.t_from16
.pushl_eax
= 0x50; /* pushl %eax */
391 proc
->thunk
.t_from16
.ljmp
= 0xea; /* ljmp relay*/
392 proc
->thunk
.t_from16
.relay_offset
= OFFSETOF(relay_32A
);
393 proc
->thunk
.t_from16
.relay_sel
= SELECTOROF(relay_32A
);
394 proc
->jmp
.jmp
= 0xe9;
395 /* Fixup relative jump */
396 proc
->jmp
.proc
= (WNDPROC
)((DWORD
)func
- (DWORD
)(&proc
->jmp
.proc
+ 1));
399 if (!relay_32W
) relay_32W
= GetProcAddress16( GetModuleHandle16("user"),
400 "__wine_call_wndproc_32W" );
401 proc
->thunk
.t_from16
.popl_eax
= 0x58; /* popl %eax */
402 proc
->thunk
.t_from16
.pushl_func
= 0x68; /* pushl $proc */
403 proc
->thunk
.t_from16
.proc
= func
;
404 proc
->thunk
.t_from16
.pushl_eax
= 0x50; /* pushl %eax */
405 proc
->thunk
.t_from16
.ljmp
= 0xea; /* ljmp relay*/
406 proc
->thunk
.t_from16
.relay_offset
= OFFSETOF(relay_32W
);
407 proc
->thunk
.t_from16
.relay_sel
= SELECTOROF(relay_32W
);
408 proc
->jmp
.jmp
= 0xe9;
409 /* Fixup relative jump */
410 proc
->jmp
.proc
= (WNDPROC
)((char *)func
- (char *)(&proc
->jmp
.proc
+ 1));
413 /* Should not happen */
416 proc
->magic
= WINPROC_MAGIC
;
421 TRACE("(%p,%d): returning %p\n", func
, type
, proc
);
426 /**********************************************************************
429 * Get a window procedure pointer that can be passed to the Windows program.
431 WNDPROC16
WINPROC_GetProc( WNDPROC proc
, WINDOWPROCTYPE type
)
433 WINDOWPROC
*ptr
= (WINDOWPROC
*)proc
;
435 if (!proc
) return NULL
;
436 if (type
== WIN_PROC_16
) /* We want a 16:16 address */
438 if (ptr
->type
== WIN_PROC_16
)
439 return ptr
->thunk
.t_from32
.proc
;
441 return (WNDPROC16
)MAKESEGPTR( get_winproc_selector(),
442 (char *)&ptr
->thunk
- (char *)winproc_array
);
444 else /* We want a 32-bit address */
446 if (ptr
->type
== WIN_PROC_16
)
447 return (WNDPROC16
)&ptr
->thunk
;
448 else if (type
!= ptr
->type
)
449 /* Have to return the jmp address if types don't match */
450 return (WNDPROC16
)&ptr
->jmp
;
452 /* Some Win16 programs want to get back the proc they set */
453 return (WNDPROC16
)ptr
->thunk
.t_from16
.proc
;
458 /**********************************************************************
461 * Set the window procedure for a window or class. There are
462 * three tree classes of winproc callbacks:
464 * 1) class -> wp - not subclassed
465 * class -> wp -> wp -> wp -> wp - SetClassLong()
467 * 2) window -' / - not subclassed
468 * window -> wp -> wp ' - SetWindowLong()
470 * 3) timer -> wp - SetTimer()
472 * Initially, winproc of the window points to the current winproc
473 * thunk of its class. Subclassing prepends a new thunk to the
474 * window winproc chain at the head of the list. Thus, window thunk
475 * list includes class thunks and the latter are preserved when the
476 * window is destroyed.
479 BOOL
WINPROC_SetProc( WNDPROC
*pFirst
, WNDPROC func
,
480 WINDOWPROCTYPE type
, WINDOWPROCUSER user
)
482 BOOL bRecycle
= FALSE
;
483 WINDOWPROC
*proc
, **ppPrev
;
485 /* Check if function is already in the list */
487 ppPrev
= (WINDOWPROC
**)pFirst
;
488 proc
= WINPROC_GetPtr( func
);
495 if ((*ppPrev
)->user
!= user
)
497 /* terminal thunk is being restored */
499 WINPROC_FreeProc( *pFirst
, (*ppPrev
)->user
);
500 *(WINDOWPROC
**)pFirst
= *ppPrev
;
509 if (((*ppPrev
)->type
== type
) &&
510 (func
== (WNDPROC
)WINPROC_THUNKPROC(*ppPrev
)))
512 if((*ppPrev
)->user
== user
)
518 WINPROC_FreeProc( (WNDPROC
)*ppPrev
, user
);
525 /* WPF_CLASS thunk terminates window thunk list */
526 if ((*ppPrev
)->user
!= user
) break;
527 ppPrev
= &(*ppPrev
)->next
;
532 /* Extract this thunk from the list */
534 *ppPrev
= proc
->next
;
536 else /* Allocate a new one */
538 if (proc
) /* Was already a win proc */
541 func
= (WNDPROC
)WINPROC_THUNKPROC(proc
);
543 proc
= WINPROC_AllocWinProc( func
, type
, user
);
544 if (!proc
) return FALSE
;
547 /* Add the win proc at the head of the list */
549 TRACE("(%p,%p,%d): res=%p\n", *pFirst
, func
, type
, proc
);
550 proc
->next
= *(WINDOWPROC
**)pFirst
;
551 *(WINDOWPROC
**)pFirst
= proc
;
556 /**********************************************************************
559 * Free a list of win procs.
561 void WINPROC_FreeProc( WNDPROC proc
, WINDOWPROCUSER user
)
563 WINDOWPROC
*ptr
= (WINDOWPROC
*)proc
;
566 WINDOWPROC
*next
= ptr
->next
;
567 if (ptr
->user
!= user
) break;
568 TRACE("freeing %p (%d)\n", ptr
, user
);
575 /**********************************************************************
576 * WINPROC_GetProcType
578 * Return the window procedure type.
580 WINDOWPROCTYPE
WINPROC_GetProcType( WNDPROC proc
)
583 (((WINDOWPROC
*)proc
)->magic
!= WINPROC_MAGIC
))
584 return WIN_PROC_INVALID
;
585 return ((WINDOWPROC
*)proc
)->type
;
587 /**********************************************************************
588 * WINPROC_TestCBForStr
590 * Return TRUE if the lparam is a string
592 inline static BOOL
WINPROC_TestCBForStr( HWND hwnd
)
594 DWORD style
= GetWindowLongA( hwnd
, GWL_STYLE
);
595 return (!(style
& (CBS_OWNERDRAWFIXED
| CBS_OWNERDRAWVARIABLE
)) || (style
& CBS_HASSTRINGS
));
597 /**********************************************************************
598 * WINPROC_TestLBForStr
600 * Return TRUE if the lparam is a string
602 inline static BOOL
WINPROC_TestLBForStr( HWND hwnd
)
604 DWORD style
= GetWindowLongA( hwnd
, GWL_STYLE
);
605 return (!(style
& (LBS_OWNERDRAWFIXED
| LBS_OWNERDRAWVARIABLE
)) || (style
& LBS_HASSTRINGS
));
608 /**********************************************************************
609 * WINPROC_MapMsg32ATo32W
611 * Map a message from Ansi to Unicode.
612 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
615 * WM_GETTEXT/WM_SETTEXT and static control with SS_ICON style:
616 * the first four bytes are the handle of the icon
617 * when the WM_SETTEXT message has been used to set the icon
619 INT
WINPROC_MapMsg32ATo32W( HWND hwnd
, UINT msg
, WPARAM
*pwparam
, LPARAM
*plparam
)
624 case WM_ASKCBFORMATNAME
:
626 LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0,
627 *pwparam
* sizeof(WCHAR
) + sizeof(LPARAM
) );
629 *ptr
++ = *plparam
; /* Store previous lParam */
630 *plparam
= (LPARAM
)ptr
;
633 /* lparam is string (0-terminated) */
635 case WM_WININICHANGE
:
636 case WM_DEVMODECHANGE
:
642 DWORD len
= MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)*plparam
, -1, NULL
, 0);
643 WCHAR
*buf
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
644 len
= MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)*plparam
, -1, buf
, len
);
645 *plparam
= (LPARAM
)buf
;
646 return (*plparam
? 1 : -1);
648 case WM_GETTEXTLENGTH
:
649 case CB_GETLBTEXTLEN
:
651 return 1; /* need to map result */
655 UNICODE_STRING usBuffer
;
657 { CREATESTRUCTW cs
; /* new structure */
658 LPCWSTR lpszName
; /* allocated Name */
659 LPCWSTR lpszClass
; /* allocated Class */
662 struct s
*xs
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(struct s
));
664 xs
->cs
= *(CREATESTRUCTW
*)*plparam
;
665 if (HIWORD(xs
->cs
.lpszName
))
667 RtlCreateUnicodeStringFromAsciiz(&usBuffer
,(LPCSTR
)xs
->cs
.lpszName
);
668 xs
->lpszName
= xs
->cs
.lpszName
= usBuffer
.Buffer
;
670 if (HIWORD(xs
->cs
.lpszClass
))
672 RtlCreateUnicodeStringFromAsciiz(&usBuffer
,(LPCSTR
)xs
->cs
.lpszClass
);
673 xs
->lpszClass
= xs
->cs
.lpszClass
= usBuffer
.Buffer
;
676 if (GetWindowLongA(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
678 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)HeapAlloc(GetProcessHeap(), 0,
680 *mdi_cs
= *(MDICREATESTRUCTW
*)xs
->cs
.lpCreateParams
;
681 if (HIWORD(mdi_cs
->szTitle
))
683 RtlCreateUnicodeStringFromAsciiz(&usBuffer
, (LPCSTR
)mdi_cs
->szTitle
);
684 mdi_cs
->szTitle
= usBuffer
.Buffer
;
686 if (HIWORD(mdi_cs
->szClass
))
688 RtlCreateUnicodeStringFromAsciiz(&usBuffer
, (LPCSTR
)mdi_cs
->szClass
);
689 mdi_cs
->szClass
= usBuffer
.Buffer
;
691 xs
->cs
.lpCreateParams
= mdi_cs
;
694 *plparam
= (LPARAM
)xs
;
699 MDICREATESTRUCTW
*cs
=
700 (MDICREATESTRUCTW
*)HeapAlloc( GetProcessHeap(), 0, sizeof(*cs
) );
702 *cs
= *(MDICREATESTRUCTW
*)*plparam
;
703 if (HIWORD(cs
->szClass
))
705 UNICODE_STRING usBuffer
;
706 RtlCreateUnicodeStringFromAsciiz(&usBuffer
,(LPCSTR
)cs
->szClass
);
707 cs
->szClass
= usBuffer
.Buffer
;
709 if (HIWORD(cs
->szTitle
))
711 UNICODE_STRING usBuffer
;
712 RtlCreateUnicodeStringFromAsciiz(&usBuffer
,(LPCSTR
)cs
->szTitle
);
713 cs
->szTitle
= usBuffer
.Buffer
;
715 *plparam
= (LPARAM
)cs
;
721 case LB_INSERTSTRING
:
723 case LB_FINDSTRINGEXACT
:
724 case LB_SELECTSTRING
:
725 if(!*plparam
) return 0;
726 if ( WINPROC_TestLBForStr( hwnd
))
728 UNICODE_STRING usBuffer
;
729 RtlCreateUnicodeStringFromAsciiz(&usBuffer
,(LPCSTR
)*plparam
);
730 *plparam
= (LPARAM
)usBuffer
.Buffer
;
732 return (*plparam
? 1 : -1);
734 case LB_GETTEXT
: /* FIXME: fixed sized buffer */
735 { if ( WINPROC_TestLBForStr( hwnd
))
736 { LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0, 256 * sizeof(WCHAR
) + sizeof(LPARAM
) );
738 *ptr
++ = *plparam
; /* Store previous lParam */
739 *plparam
= (LPARAM
)ptr
;
746 case CB_INSERTSTRING
:
747 case CB_FINDSTRINGEXACT
:
749 case CB_SELECTSTRING
:
750 if(!*plparam
) return 0;
751 if ( WINPROC_TestCBForStr( hwnd
))
753 UNICODE_STRING usBuffer
;
754 RtlCreateUnicodeStringFromAsciiz(&usBuffer
,(LPCSTR
)*plparam
);
755 *plparam
= (LPARAM
)usBuffer
.Buffer
;
757 return (*plparam
? 1 : -1);
759 case CB_GETLBTEXT
: /* FIXME: fixed sized buffer */
760 { if ( WINPROC_TestCBForStr( hwnd
))
761 { LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0, 256 * sizeof(WCHAR
) + sizeof(LPARAM
) );
763 *ptr
++ = *plparam
; /* Store previous lParam */
764 *plparam
= (LPARAM
)ptr
;
771 { WORD len
= (WORD
)*plparam
;
772 LPARAM
*ptr
= (LPARAM
*) HeapAlloc( GetProcessHeap(), 0, sizeof(LPARAM
) + sizeof (WORD
) + len
*sizeof(WCHAR
) );
774 *ptr
++ = *plparam
; /* Store previous lParam */
775 *((WORD
*) ptr
) = len
; /* Store the length */
776 *plparam
= (LPARAM
)ptr
;
786 case EM_SETPASSWORDCHAR
:
788 BYTE ch
= LOWORD(*pwparam
);
790 MultiByteToWideChar(CP_ACP
, 0, &ch
, 1, &wch
, 1);
791 *pwparam
= MAKEWPARAM( wch
, HIWORD(*pwparam
) );
799 ch
[0] = (*pwparam
>> 8);
800 ch
[1] = *pwparam
& 0xff;
802 MultiByteToWideChar(CP_ACP
, 0, ch
, 2, &wch
, 1);
804 MultiByteToWideChar(CP_ACP
, 0, &ch
[1], 1, &wch
, 1);
805 *pwparam
= MAKEWPARAM( wch
, HIWORD(*pwparam
) );
809 case WM_PAINTCLIPBOARD
:
810 case WM_SIZECLIPBOARD
:
811 FIXME_(msg
)("message %s (0x%x) needs translation, please report\n", SPY_GetMsgName(msg
, hwnd
), msg
);
813 default: /* No translation needed */
819 /**********************************************************************
820 * WINPROC_UnmapMsg32ATo32W
822 * Unmap a message that was mapped from Ansi to Unicode.
824 LRESULT
WINPROC_UnmapMsg32ATo32W( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
830 case WM_ASKCBFORMATNAME
:
832 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
833 if (!wParam
) result
= 0;
834 else if (!(result
= WideCharToMultiByte( CP_ACP
, 0, (LPWSTR
)lParam
, -1,
835 (LPSTR
)*ptr
, wParam
, NULL
, NULL
)))
837 ((LPSTR
)*ptr
)[wParam
-1] = 0;
840 else result
--; /* do not count terminating null */
841 HeapFree( GetProcessHeap(), 0, ptr
);
844 case WM_GETTEXTLENGTH
:
845 case CB_GETLBTEXTLEN
:
847 /* there may be one DBCS char for each Unicode char */
853 { CREATESTRUCTW cs
; /* new structure */
854 LPWSTR lpszName
; /* allocated Name */
855 LPWSTR lpszClass
; /* allocated Class */
857 struct s
*xs
= (struct s
*)lParam
;
858 if (xs
->lpszName
) HeapFree( GetProcessHeap(), 0, xs
->lpszName
);
859 if (xs
->lpszClass
) HeapFree( GetProcessHeap(), 0, xs
->lpszClass
);
861 if (GetWindowLongA(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
863 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)xs
->cs
.lpCreateParams
;
864 if (HIWORD(mdi_cs
->szTitle
))
865 HeapFree(GetProcessHeap(), 0, (LPVOID
)mdi_cs
->szTitle
);
866 if (HIWORD(mdi_cs
->szClass
))
867 HeapFree(GetProcessHeap(), 0, (LPVOID
)mdi_cs
->szClass
);
868 HeapFree(GetProcessHeap(), 0, mdi_cs
);
870 HeapFree( GetProcessHeap(), 0, xs
);
876 MDICREATESTRUCTW
*cs
= (MDICREATESTRUCTW
*)lParam
;
877 if (HIWORD(cs
->szTitle
))
878 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->szTitle
);
879 if (HIWORD(cs
->szClass
))
880 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->szClass
);
881 HeapFree( GetProcessHeap(), 0, cs
);
886 case WM_WININICHANGE
:
887 case WM_DEVMODECHANGE
:
892 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
897 case LB_INSERTSTRING
:
899 case LB_FINDSTRINGEXACT
:
900 case LB_SELECTSTRING
:
901 if ( WINPROC_TestLBForStr( hwnd
))
902 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
906 if ( WINPROC_TestLBForStr( hwnd
))
908 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
909 result
= WideCharToMultiByte( CP_ACP
, 0, (LPWSTR
)lParam
, -1,
910 (LPSTR
)*ptr
, 0x7fffffff, NULL
, NULL
) - 1;
911 HeapFree( GetProcessHeap(), 0, ptr
);
917 case CB_INSERTSTRING
:
919 case CB_FINDSTRINGEXACT
:
920 case CB_SELECTSTRING
:
921 if ( WINPROC_TestCBForStr( hwnd
))
922 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
926 if ( WINPROC_TestCBForStr( hwnd
))
928 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
929 result
= WideCharToMultiByte( CP_ACP
, 0, (LPWSTR
)lParam
, -1,
930 (LPSTR
)*ptr
, 0x7fffffff, NULL
, NULL
) - 1;
931 HeapFree( GetProcessHeap(), 0, ptr
);
938 LPARAM
* ptr
= (LPARAM
*)lParam
- 1; /* get the old lParam */
939 WORD len
= *(WORD
*) lParam
;
940 result
= WideCharToMultiByte( CP_ACP
, 0, (LPWSTR
)lParam
, result
,
941 (LPSTR
)*ptr
, len
, NULL
, NULL
);
942 if (result
< len
) ((LPSTR
)*ptr
)[result
] = 0;
943 HeapFree( GetProcessHeap(), 0, ptr
);
951 /**********************************************************************
952 * WINPROC_MapMsg32WTo32A
954 * Map a message from Unicode to Ansi.
955 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
957 static INT
WINPROC_MapMsg32WTo32A( HWND hwnd
, UINT msg
, WPARAM
*pwparam
, LPARAM
*plparam
)
962 case WM_ASKCBFORMATNAME
:
964 LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0,
965 *pwparam
+ sizeof(LPARAM
) );
967 *ptr
++ = *plparam
; /* Store previous lParam */
968 *plparam
= (LPARAM
)ptr
;
973 case WM_WININICHANGE
:
974 case WM_DEVMODECHANGE
:
979 if(!*plparam
) return 0;
980 *plparam
= (LPARAM
)HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR
)*plparam
);
981 return (*plparam
? 1 : -1);
985 MDICREATESTRUCTA
*cs
=
986 (MDICREATESTRUCTA
*)HeapAlloc( GetProcessHeap(), 0, sizeof(*cs
) );
988 *cs
= *(MDICREATESTRUCTA
*)*plparam
;
989 if (HIWORD(cs
->szTitle
))
990 cs
->szTitle
= HEAP_strdupWtoA( GetProcessHeap(), 0,
991 (LPCWSTR
)cs
->szTitle
);
992 if (HIWORD(cs
->szClass
))
993 cs
->szClass
= HEAP_strdupWtoA( GetProcessHeap(), 0,
994 (LPCWSTR
)cs
->szClass
);
995 *plparam
= (LPARAM
)cs
;
1001 case LB_INSERTSTRING
:
1003 case LB_FINDSTRINGEXACT
:
1004 case LB_SELECTSTRING
:
1005 if(!*plparam
) return 0;
1006 if ( WINPROC_TestLBForStr( hwnd
))
1007 *plparam
= (LPARAM
)HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR
)*plparam
);
1008 return (*plparam
? 1 : -1);
1010 case LB_GETTEXT
: /* FIXME: fixed sized buffer */
1011 { if ( WINPROC_TestLBForStr( hwnd
))
1012 { LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0, 256 + sizeof(LPARAM
) );
1013 if (!ptr
) return -1;
1014 *ptr
++ = *plparam
; /* Store previous lParam */
1015 *plparam
= (LPARAM
)ptr
;
1022 case CB_INSERTSTRING
:
1024 case CB_FINDSTRINGEXACT
:
1025 case CB_SELECTSTRING
:
1026 if(!*plparam
) return 0;
1027 if ( WINPROC_TestCBForStr( hwnd
))
1028 *plparam
= (LPARAM
)HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR
)*plparam
);
1029 return (*plparam
? 1 : -1);
1031 case CB_GETLBTEXT
: /* FIXME: fixed sized buffer */
1032 { if ( WINPROC_TestCBForStr( hwnd
))
1033 { LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0, 256 + sizeof(LPARAM
) );
1034 if (!ptr
) return -1;
1035 *ptr
++ = *plparam
; /* Store previous lParam */
1036 *plparam
= (LPARAM
)ptr
;
1041 /* Multiline edit */
1043 { WORD len
= (WORD
)*plparam
;
1044 LPARAM
*ptr
= (LPARAM
*) HeapAlloc( GetProcessHeap(), 0, sizeof(LPARAM
) + sizeof (WORD
) + len
*sizeof(CHAR
) );
1045 if (!ptr
) return -1;
1046 *ptr
++ = *plparam
; /* Store previous lParam */
1047 *((WORD
*) ptr
) = len
; /* Store the length */
1048 *plparam
= (LPARAM
)ptr
;
1057 case WM_SYSDEADCHAR
:
1058 case EM_SETPASSWORDCHAR
:
1060 WCHAR wch
= LOWORD(*pwparam
);
1062 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
1063 *pwparam
= MAKEWPARAM( ch
, HIWORD(*pwparam
) );
1069 WCHAR wch
= LOWORD(*pwparam
);
1072 if (WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, ch
, 2, NULL
, NULL
) == 2)
1073 *pwparam
= MAKEWPARAM( (ch
[0] << 8) | ch
[1], HIWORD(*pwparam
) );
1075 *pwparam
= MAKEWPARAM( ch
[0], HIWORD(*pwparam
) );
1079 case WM_PAINTCLIPBOARD
:
1080 case WM_SIZECLIPBOARD
:
1081 FIXME_(msg
)("message %s (%04x) needs translation, please report\n",SPY_GetMsgName(msg
, hwnd
),msg
);
1083 default: /* No translation needed */
1089 /**********************************************************************
1090 * WINPROC_UnmapMsg32WTo32A
1092 * Unmap a message that was mapped from Unicode to Ansi.
1094 static LRESULT
WINPROC_UnmapMsg32WTo32A( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
, LRESULT result
)
1099 case WM_ASKCBFORMATNAME
:
1101 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
1102 if (!wParam
) result
= 0;
1103 else if (!(result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1,
1104 (LPWSTR
)*ptr
, wParam
)))
1106 ((LPWSTR
)*ptr
)[wParam
-1] = 0;
1107 result
= wParam
- 1;
1109 else result
--; /* do not count terminating null */
1110 HeapFree( GetProcessHeap(), 0, ptr
);
1115 case WM_WININICHANGE
:
1116 case WM_DEVMODECHANGE
:
1121 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
1126 MDICREATESTRUCTA
*cs
= (MDICREATESTRUCTA
*)lParam
;
1127 if (HIWORD(cs
->szTitle
))
1128 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->szTitle
);
1129 if (HIWORD(cs
->szClass
))
1130 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->szClass
);
1131 HeapFree( GetProcessHeap(), 0, cs
);
1137 case LB_INSERTSTRING
:
1139 case LB_FINDSTRINGEXACT
:
1140 case LB_SELECTSTRING
:
1141 if ( WINPROC_TestLBForStr( hwnd
))
1142 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
1146 if ( WINPROC_TestLBForStr( hwnd
))
1148 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
1149 result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, (LPWSTR
)*ptr
, 0x7fffffff ) - 1;
1150 HeapFree( GetProcessHeap(), 0, ptr
);
1156 case CB_INSERTSTRING
:
1158 case CB_FINDSTRINGEXACT
:
1159 case CB_SELECTSTRING
:
1160 if ( WINPROC_TestCBForStr( hwnd
))
1161 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
1165 if ( WINPROC_TestCBForStr( hwnd
))
1167 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
1168 result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, (LPWSTR
)*ptr
, 0x7fffffff ) - 1;
1169 HeapFree( GetProcessHeap(), 0, ptr
);
1173 /* Multiline edit */
1176 LPARAM
* ptr
= (LPARAM
*)lParam
- 1; /* get the old lparam */
1177 WORD len
= *(WORD
*)ptr
;
1180 result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, result
, (LPWSTR
)*ptr
, len
);
1181 if (result
< len
) ((LPWSTR
)*ptr
)[result
] = 0;
1183 HeapFree( GetProcessHeap(), 0, ptr
);
1190 static UINT
convert_handle_16_to_32(HANDLE16 src
, unsigned int flags
)
1193 UINT sz
= GlobalSize16(src
);
1196 if (!(dst
= GlobalAlloc(flags
, sz
)))
1198 ptr16
= GlobalLock16(src
);
1199 ptr32
= GlobalLock(dst
);
1200 if (ptr16
!= NULL
&& ptr32
!= NULL
) memcpy(ptr32
, ptr16
, sz
);
1201 GlobalUnlock16(src
);
1207 /**********************************************************************
1208 * WINPROC_MapMsg16To32A
1210 * Map a message from 16- to 32-bit Ansi.
1211 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1213 INT
WINPROC_MapMsg16To32A( HWND hwnd
, UINT16 msg16
, WPARAM16 wParam16
, UINT
*pmsg32
,
1214 WPARAM
*pwparam32
, LPARAM
*plparam
)
1216 *pmsg32
= (UINT
)msg16
;
1217 *pwparam32
= (WPARAM
)wParam16
;
1224 *pwparam32
= MAKEWPARAM( wParam16
, HIWORD(*plparam
) );
1225 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1229 *pwparam32
= MAKEWPARAM( wParam16
, LOWORD(*plparam
) );
1230 *plparam
= (LPARAM
)WIN_Handle32( HIWORD(*plparam
) );
1233 if ( HIWORD(*plparam
) > CTLCOLOR_STATIC
) return -1;
1234 *pmsg32
= WM_CTLCOLORMSGBOX
+ HIWORD(*plparam
);
1235 *pwparam32
= (WPARAM
)HDC_32(wParam16
);
1236 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1238 case WM_COMPAREITEM
:
1240 COMPAREITEMSTRUCT16
* cis16
= MapSL(*plparam
);
1241 COMPAREITEMSTRUCT
*cis
= (COMPAREITEMSTRUCT
*)
1242 HeapAlloc(GetProcessHeap(), 0, sizeof(*cis
));
1243 if (!cis
) return -1;
1244 cis
->CtlType
= cis16
->CtlType
;
1245 cis
->CtlID
= cis16
->CtlID
;
1246 cis
->hwndItem
= WIN_Handle32( cis16
->hwndItem
);
1247 cis
->itemID1
= cis16
->itemID1
;
1248 cis
->itemData1
= cis16
->itemData1
;
1249 cis
->itemID2
= cis16
->itemID2
;
1250 cis
->itemData2
= cis16
->itemData2
;
1251 cis
->dwLocaleId
= 0; /* FIXME */
1252 *plparam
= (LPARAM
)cis
;
1257 DELETEITEMSTRUCT16
* dis16
= MapSL(*plparam
);
1258 DELETEITEMSTRUCT
*dis
= (DELETEITEMSTRUCT
*)
1259 HeapAlloc(GetProcessHeap(), 0, sizeof(*dis
));
1260 if (!dis
) return -1;
1261 dis
->CtlType
= dis16
->CtlType
;
1262 dis
->CtlID
= dis16
->CtlID
;
1263 dis
->hwndItem
= WIN_Handle32( dis16
->hwndItem
);
1264 dis
->itemData
= dis16
->itemData
;
1265 *plparam
= (LPARAM
)dis
;
1268 case WM_MEASUREITEM
:
1270 MEASUREITEMSTRUCT16
* mis16
= MapSL(*plparam
);
1271 MEASUREITEMSTRUCT
*mis
= (MEASUREITEMSTRUCT
*)
1272 HeapAlloc(GetProcessHeap(), 0,
1273 sizeof(*mis
) + sizeof(LPARAM
));
1274 if (!mis
) return -1;
1275 mis
->CtlType
= mis16
->CtlType
;
1276 mis
->CtlID
= mis16
->CtlID
;
1277 mis
->itemID
= mis16
->itemID
;
1278 mis
->itemWidth
= mis16
->itemWidth
;
1279 mis
->itemHeight
= mis16
->itemHeight
;
1280 mis
->itemData
= mis16
->itemData
;
1281 *(LPARAM
*)(mis
+ 1) = *plparam
; /* Store the previous lParam */
1282 *plparam
= (LPARAM
)mis
;
1287 DRAWITEMSTRUCT16
* dis16
= MapSL(*plparam
);
1288 DRAWITEMSTRUCT
*dis
= (DRAWITEMSTRUCT
*)HeapAlloc(GetProcessHeap(), 0,
1290 if (!dis
) return -1;
1291 dis
->CtlType
= dis16
->CtlType
;
1292 dis
->CtlID
= dis16
->CtlID
;
1293 dis
->itemID
= dis16
->itemID
;
1294 dis
->itemAction
= dis16
->itemAction
;
1295 dis
->itemState
= dis16
->itemState
;
1296 dis
->hwndItem
= (dis
->CtlType
== ODT_MENU
) ? (HWND
)HMENU_32(dis16
->hwndItem
)
1297 : WIN_Handle32( dis16
->hwndItem
);
1298 dis
->hDC
= HDC_32(dis16
->hDC
);
1299 dis
->itemData
= dis16
->itemData
;
1300 CONV_RECT16TO32( &dis16
->rcItem
, &dis
->rcItem
);
1301 *plparam
= (LPARAM
)dis
;
1304 case WM_GETMINMAXINFO
:
1306 MINMAXINFO
*mmi
= (MINMAXINFO
*)HeapAlloc( GetProcessHeap(), 0,
1307 sizeof(*mmi
) + sizeof(LPARAM
));
1308 if (!mmi
) return -1;
1309 STRUCT32_MINMAXINFO16to32( MapSL(*plparam
), mmi
);
1310 *(LPARAM
*)(mmi
+ 1) = *plparam
; /* Store the previous lParam */
1311 *plparam
= (LPARAM
)mmi
;
1316 case WM_WININICHANGE
:
1317 case WM_DEVMODECHANGE
:
1318 case WM_ASKCBFORMATNAME
:
1319 *plparam
= (LPARAM
)MapSL(*plparam
);
1323 MDICREATESTRUCT16
*cs16
= MapSL(*plparam
);
1324 MDICREATESTRUCTA
*cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(*cs
) + sizeof(LPARAM
) );
1326 STRUCT32_MDICREATESTRUCT16to32A( cs16
, cs
);
1327 cs
->szTitle
= MapSL(cs16
->szTitle
);
1328 cs
->szClass
= MapSL(cs16
->szClass
);
1329 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1330 *plparam
= (LPARAM
)cs
;
1333 case WM_MDIGETACTIVE
:
1334 *plparam
= (LPARAM
)HeapAlloc( GetProcessHeap(), 0, sizeof(BOOL
) );
1335 *(BOOL
*)(*plparam
) = 0;
1339 *pmsg32
=WM_MDIREFRESHMENU
;
1340 *pwparam32
= (WPARAM
)HMENU_32(LOWORD(*plparam
));
1341 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1344 *pwparam32
= MAKEWPARAM( wParam16
, LOWORD(*plparam
) );
1345 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1348 if((LOWORD(*plparam
) & MF_POPUP
) && (LOWORD(*plparam
) != 0xFFFF))
1350 HMENU hmenu
=HMENU_32(HIWORD(*plparam
));
1351 UINT Pos
=MENU_FindSubMenu( &hmenu
, HMENU_32(wParam16
));
1352 if(Pos
==0xFFFF) Pos
=0; /* NO_SELECTED_ITEM */
1353 *pwparam32
= MAKEWPARAM( Pos
, LOWORD(*plparam
) );
1355 else *pwparam32
= MAKEWPARAM( wParam16
, LOWORD(*plparam
) );
1356 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1358 case WM_MDIACTIVATE
:
1361 *pwparam32
= (WPARAM
)WIN_Handle32( HIWORD(*plparam
) );
1362 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1364 else /* message sent to MDI client */
1365 *pwparam32
= wParam16
;
1369 NCCALCSIZE_PARAMS16
*nc16
;
1370 NCCALCSIZE_PARAMS
*nc
;
1372 nc
= (NCCALCSIZE_PARAMS
*)HeapAlloc( GetProcessHeap(), 0,
1373 sizeof(*nc
) + sizeof(LPARAM
) );
1375 nc16
= MapSL(*plparam
);
1376 CONV_RECT16TO32( &nc16
->rgrc
[0], &nc
->rgrc
[0] );
1379 nc
->lppos
= (WINDOWPOS
*)HeapAlloc( GetProcessHeap(), 0,
1380 sizeof(*nc
->lppos
) );
1381 CONV_RECT16TO32( &nc16
->rgrc
[1], &nc
->rgrc
[1] );
1382 CONV_RECT16TO32( &nc16
->rgrc
[2], &nc
->rgrc
[2] );
1383 if (nc
->lppos
) STRUCT32_WINDOWPOS16to32( MapSL(nc16
->lppos
), nc
->lppos
);
1385 *(LPARAM
*)(nc
+ 1) = *plparam
; /* Store the previous lParam */
1386 *plparam
= (LPARAM
)nc
;
1392 CREATESTRUCT16
*cs16
= MapSL(*plparam
);
1393 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)HeapAlloc( GetProcessHeap(), 0,
1394 sizeof(*cs
) + sizeof(LPARAM
) );
1396 STRUCT32_CREATESTRUCT16to32A( cs16
, cs
);
1397 cs
->lpszName
= MapSL(cs16
->lpszName
);
1398 cs
->lpszClass
= MapSL(cs16
->lpszClass
);
1400 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1402 MDICREATESTRUCT16
*mdi_cs16
;
1403 MDICREATESTRUCTA
*mdi_cs
= (MDICREATESTRUCTA
*)HeapAlloc(GetProcessHeap(), 0,
1407 HeapFree(GetProcessHeap(), 0, cs
);
1410 mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs16
->lpCreateParams
);
1411 STRUCT32_MDICREATESTRUCT16to32A(mdi_cs16
, mdi_cs
);
1412 mdi_cs
->szTitle
= MapSL(mdi_cs16
->szTitle
);
1413 mdi_cs
->szClass
= MapSL(mdi_cs16
->szClass
);
1415 cs
->lpCreateParams
= mdi_cs
;
1417 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1418 *plparam
= (LPARAM
)cs
;
1421 case WM_PARENTNOTIFY
:
1422 if ((wParam16
== WM_CREATE
) || (wParam16
== WM_DESTROY
))
1424 *pwparam32
= MAKEWPARAM( wParam16
, HIWORD(*plparam
) );
1425 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1428 case WM_WINDOWPOSCHANGING
:
1429 case WM_WINDOWPOSCHANGED
:
1431 WINDOWPOS
*wp
= (WINDOWPOS
*)HeapAlloc( GetProcessHeap(), 0,
1432 sizeof(*wp
) + sizeof(LPARAM
) );
1434 STRUCT32_WINDOWPOS16to32( MapSL(*plparam
), wp
);
1435 *(LPARAM
*)(wp
+ 1) = *plparam
; /* Store the previous lParam */
1436 *plparam
= (LPARAM
)wp
;
1442 LPMSG16 msg16
= MapSL(*plparam
);
1443 LPMSG msg32
= (LPMSG
)HeapAlloc( GetProcessHeap(), 0, sizeof(MSG
) );
1445 if (!msg32
) return -1;
1446 msg32
->hwnd
= WIN_Handle32( msg16
->hwnd
);
1447 msg32
->lParam
= msg16
->lParam
;
1448 msg32
->time
= msg16
->time
;
1449 CONV_POINT16TO32(&msg16
->pt
,&msg32
->pt
);
1450 /* this is right, right? */
1451 if (WINPROC_MapMsg16To32A( msg32
->hwnd
, msg16
->message
,msg16
->wParam
,
1452 &msg32
->message
,&msg32
->wParam
,
1453 &msg32
->lParam
)<0) {
1454 HeapFree( GetProcessHeap(), 0, msg32
);
1457 *plparam
= (LPARAM
)msg32
;
1462 *plparam
= (LPARAM
)MapSL(*plparam
);
1464 case WM_ACTIVATEAPP
:
1465 /* We need this when SetActiveWindow sends a Sendmessage16() to
1466 * a 32bit window. Might be superflous with 32bit interprocess
1467 * message queues. */
1468 if (*plparam
) *plparam
= HTASK_32( *plparam
);
1472 MDINEXTMENU
*next
= HeapAlloc( GetProcessHeap(), 0, sizeof(*next
) );
1473 if (!next
) return -1;
1474 next
->hmenuIn
= (HMENU
)*plparam
;
1475 next
->hmenuNext
= 0;
1477 *plparam
= (LPARAM
)next
;
1480 case WM_PAINTCLIPBOARD
:
1481 case WM_SIZECLIPBOARD
:
1482 FIXME_(msg
)("message %04x needs translation\n",msg16
);
1484 case WM_DDE_INITIATE
:
1485 case WM_DDE_TERMINATE
:
1486 case WM_DDE_UNADVISE
:
1487 case WM_DDE_REQUEST
:
1488 *pwparam32
= (WPARAM
)WIN_Handle32(wParam16
);
1498 *pwparam32
= (WPARAM
)WIN_Handle32(wParam16
);
1499 lo16
= LOWORD(*plparam
);
1500 hi
= HIWORD(*plparam
);
1501 if (lo16
&& !(lo32
= convert_handle_16_to_32(lo16
, GMEM_DDESHARE
)))
1503 *plparam
= PackDDElParam(msg16
, lo32
, hi
);
1505 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
1512 *pwparam32
= (WPARAM
)WIN_Handle32(wParam16
);
1514 lo
= LOWORD(*plparam
);
1515 hi
= HIWORD(*plparam
);
1517 if (GlobalGetAtomNameA(hi
, buf
, 2) > 0) flag
|= 1;
1518 if (GlobalSize16(hi
) != 0) flag
|= 2;
1524 MESSAGE("DDE_ACK: neither atom nor handle!!!\n");
1529 break; /* atom, nothing to do */
1531 MESSAGE("DDE_ACK: %x both atom and handle... choosing handle\n", hi
);
1534 hi
= convert_handle_16_to_32(hi
, GMEM_DDESHARE
);
1537 *plparam
= PackDDElParam(WM_DDE_ACK
, lo
, hi
);
1539 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
1540 case WM_DDE_EXECUTE
:
1541 *plparam
= convert_handle_16_to_32(*plparam
, GMEM_DDESHARE
);
1542 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
1543 default: /* No translation needed */
1549 /**********************************************************************
1550 * WINPROC_UnmapMsg16To32A
1552 * Unmap a message that was mapped from 16- to 32-bit Ansi.
1554 LRESULT
WINPROC_UnmapMsg16To32A( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
1559 case WM_COMPAREITEM
:
1562 HeapFree( GetProcessHeap(), 0, (LPVOID
)lParam
);
1564 case WM_MEASUREITEM
:
1566 MEASUREITEMSTRUCT16
*mis16
;
1567 MEASUREITEMSTRUCT
*mis
= (MEASUREITEMSTRUCT
*)lParam
;
1568 lParam
= *(LPARAM
*)(mis
+ 1);
1569 mis16
= MapSL(lParam
);
1570 mis16
->itemWidth
= (UINT16
)mis
->itemWidth
;
1571 mis16
->itemHeight
= (UINT16
)mis
->itemHeight
;
1572 HeapFree( GetProcessHeap(), 0, mis
);
1575 case WM_GETMINMAXINFO
:
1577 MINMAXINFO
*mmi
= (MINMAXINFO
*)lParam
;
1578 lParam
= *(LPARAM
*)(mmi
+ 1);
1579 STRUCT32_MINMAXINFO32to16( mmi
, MapSL(lParam
));
1580 HeapFree( GetProcessHeap(), 0, mmi
);
1585 MDICREATESTRUCTA
*cs
= (MDICREATESTRUCTA
*)lParam
;
1586 lParam
= *(LPARAM
*)(cs
+ 1);
1587 STRUCT32_MDICREATESTRUCT32Ato16( cs
, MapSL(lParam
) );
1588 HeapFree( GetProcessHeap(), 0, cs
);
1591 case WM_MDIGETACTIVE
:
1592 result
= MAKELONG( LOWORD(result
), (BOOL16
)(*(BOOL
*)lParam
) );
1593 HeapFree( GetProcessHeap(), 0, (BOOL
*)lParam
);
1597 NCCALCSIZE_PARAMS16
*nc16
;
1598 NCCALCSIZE_PARAMS
*nc
= (NCCALCSIZE_PARAMS
*)lParam
;
1599 lParam
= *(LPARAM
*)(nc
+ 1);
1600 nc16
= MapSL(lParam
);
1601 CONV_RECT32TO16( &nc
->rgrc
[0], &nc16
->rgrc
[0] );
1604 CONV_RECT32TO16( &nc
->rgrc
[1], &nc16
->rgrc
[1] );
1605 CONV_RECT32TO16( &nc
->rgrc
[2], &nc16
->rgrc
[2] );
1608 STRUCT32_WINDOWPOS32to16( nc
->lppos
, MapSL(nc16
->lppos
));
1609 HeapFree( GetProcessHeap(), 0, nc
->lppos
);
1612 HeapFree( GetProcessHeap(), 0, nc
);
1618 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)lParam
;
1619 lParam
= *(LPARAM
*)(cs
+ 1);
1620 STRUCT32_CREATESTRUCT32Ato16( cs
, MapSL(lParam
) );
1622 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1623 HeapFree(GetProcessHeap(), 0, cs
->lpCreateParams
);
1625 HeapFree( GetProcessHeap(), 0, cs
);
1628 case WM_WINDOWPOSCHANGING
:
1629 case WM_WINDOWPOSCHANGED
:
1631 WINDOWPOS
*wp
= (WINDOWPOS
*)lParam
;
1632 lParam
= *(LPARAM
*)(wp
+ 1);
1633 STRUCT32_WINDOWPOS32to16(wp
, MapSL(lParam
));
1634 HeapFree( GetProcessHeap(), 0, wp
);
1640 LPMSG msg32
= (LPMSG
)lParam
;
1642 WINPROC_UnmapMsg16To32A( hwnd
, msg32
->message
, msg32
->wParam
, msg32
->lParam
,
1644 HeapFree( GetProcessHeap(), 0, msg32
);
1649 MDINEXTMENU
*next
= (MDINEXTMENU
*)lParam
;
1650 result
= MAKELONG( HMENU_16(next
->hmenuNext
), HWND_16(next
->hwndNext
) );
1651 HeapFree( GetProcessHeap(), 0, next
);
1659 /**********************************************************************
1660 * WINPROC_MapMsg16To32W
1662 * Map a message from 16- to 32-bit Unicode.
1663 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1665 INT
WINPROC_MapMsg16To32W( HWND hwnd
, UINT16 msg16
, WPARAM16 wParam16
, UINT
*pmsg32
,
1666 WPARAM
*pwparam32
, LPARAM
*plparam
)
1671 *pmsg32
=(UINT
)msg16
;
1672 *pwparam32
= (WPARAM
)wParam16
;
1677 case WM_WININICHANGE
:
1678 case WM_DEVMODECHANGE
:
1679 case WM_ASKCBFORMATNAME
:
1680 *plparam
= (LPARAM
)MapSL(*plparam
);
1681 return WINPROC_MapMsg32ATo32W( hwnd
, *pmsg32
, pwparam32
, plparam
);
1682 case WM_GETTEXTLENGTH
:
1683 case CB_GETLBTEXTLEN
:
1685 return 1; /* need to map result */
1689 CREATESTRUCT16
*cs16
= MapSL(*plparam
);
1690 CREATESTRUCTW
*cs
= (CREATESTRUCTW
*)HeapAlloc( GetProcessHeap(), 0,
1691 sizeof(*cs
) + sizeof(LPARAM
) );
1693 STRUCT32_CREATESTRUCT16to32A( cs16
, (CREATESTRUCTA
*)cs
);
1694 cs
->lpszName
= map_str_16_to_32W(cs16
->lpszName
);
1695 cs
->lpszClass
= map_str_16_to_32W(cs16
->lpszClass
);
1697 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1699 MDICREATESTRUCT16
*mdi_cs16
;
1700 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)HeapAlloc(GetProcessHeap(), 0,
1704 HeapFree(GetProcessHeap(), 0, cs
);
1707 mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs16
->lpCreateParams
);
1708 STRUCT32_MDICREATESTRUCT16to32A(mdi_cs16
, (MDICREATESTRUCTA
*)mdi_cs
);
1709 mdi_cs
->szTitle
= map_str_16_to_32W(mdi_cs16
->szTitle
);
1710 mdi_cs
->szClass
= map_str_16_to_32W(mdi_cs16
->szClass
);
1712 cs
->lpCreateParams
= mdi_cs
;
1714 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1715 *plparam
= (LPARAM
)cs
;
1720 MDICREATESTRUCT16
*cs16
= MapSL(*plparam
);
1721 MDICREATESTRUCTW
*cs
=
1722 (MDICREATESTRUCTW
*)HeapAlloc( GetProcessHeap(), 0,
1723 sizeof(*cs
) + sizeof(LPARAM
) );
1725 STRUCT32_MDICREATESTRUCT16to32A( cs16
, (MDICREATESTRUCTA
*)cs
);
1726 cs
->szTitle
= map_str_16_to_32W(cs16
->szTitle
);
1727 cs
->szClass
= map_str_16_to_32W(cs16
->szClass
);
1728 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1729 *plparam
= (LPARAM
)cs
;
1735 LPMSG16 msg16
= MapSL(*plparam
);
1736 LPMSG msg32
= (LPMSG
)HeapAlloc( GetProcessHeap(), 0, sizeof(MSG
) );
1738 if (!msg32
) return -1;
1739 msg32
->hwnd
= WIN_Handle32( msg16
->hwnd
);
1740 msg32
->lParam
= msg16
->lParam
;
1741 msg32
->time
= msg16
->time
;
1742 CONV_POINT16TO32(&msg16
->pt
,&msg32
->pt
);
1743 /* this is right, right? */
1744 if (WINPROC_MapMsg16To32W(hwnd
, msg16
->message
,msg16
->wParam
,
1745 &msg32
->message
,&msg32
->wParam
,
1746 &msg32
->lParam
)<0) {
1747 HeapFree( GetProcessHeap(), 0, msg32
);
1750 *plparam
= (LPARAM
)msg32
;
1757 MultiByteToWideChar( CP_ACP
, 0, &ch
, 1, &wch
, 1);
1758 *pwparam32
= MAKEWPARAM( wch
, HIWORD(*plparam
) );
1759 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1763 MultiByteToWideChar( CP_ACP
, 0, &ch
, 1, &wch
, 1);
1764 *pwparam32
= MAKEWPARAM( wch
, LOWORD(*plparam
) );
1765 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1770 case WM_SYSDEADCHAR
:
1772 MultiByteToWideChar( CP_ACP
, 0, &ch
, 1, &wch
, 1);
1776 return WINPROC_MapMsg32ATo32W( hwnd
, *pmsg32
, pwparam32
, plparam
);
1778 default: /* No Unicode translation needed */
1779 return WINPROC_MapMsg16To32A( hwnd
, msg16
, wParam16
, pmsg32
,
1780 pwparam32
, plparam
);
1785 /**********************************************************************
1786 * WINPROC_UnmapMsg16To32W
1788 * Unmap a message that was mapped from 16- to 32-bit Unicode.
1790 LRESULT
WINPROC_UnmapMsg16To32W( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
1797 case WM_GETTEXTLENGTH
:
1798 case CB_GETLBTEXTLEN
:
1800 case WM_ASKCBFORMATNAME
:
1801 return WINPROC_UnmapMsg32ATo32W( hwnd
, msg
, wParam
, lParam
, result
);
1805 CREATESTRUCTW
*cs
= (CREATESTRUCTW
*)lParam
;
1806 lParam
= *(LPARAM
*)(cs
+ 1);
1807 STRUCT32_CREATESTRUCT32Ato16( (CREATESTRUCTA
*)cs
, MapSL(lParam
) );
1808 unmap_str_16_to_32W( cs
->lpszName
);
1809 unmap_str_16_to_32W( cs
->lpszClass
);
1811 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1813 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)cs
->lpCreateParams
;
1814 unmap_str_16_to_32W( mdi_cs
->szTitle
);
1815 unmap_str_16_to_32W( mdi_cs
->szClass
);
1816 HeapFree(GetProcessHeap(), 0, cs
->lpCreateParams
);
1818 HeapFree( GetProcessHeap(), 0, cs
);
1823 MDICREATESTRUCTW
*cs
= (MDICREATESTRUCTW
*)lParam
;
1824 lParam
= *(LPARAM
*)(cs
+ 1);
1825 STRUCT32_MDICREATESTRUCT32Ato16( (MDICREATESTRUCTA
*)cs
, MapSL(lParam
) );
1826 unmap_str_16_to_32W( cs
->szTitle
);
1827 unmap_str_16_to_32W( cs
->szClass
);
1828 HeapFree( GetProcessHeap(), 0, cs
);
1834 LPMSG msg32
= (LPMSG
)lParam
;
1836 WINPROC_UnmapMsg16To32W( hwnd
, msg32
->message
, msg32
->wParam
, msg32
->lParam
,
1838 HeapFree( GetProcessHeap(), 0, msg32
);
1842 return WINPROC_UnmapMsg16To32A( hwnd
, msg
, wParam
, lParam
, result
);
1847 static HANDLE16
convert_handle_32_to_16(UINT src
, unsigned int flags
)
1850 UINT sz
= GlobalSize((HANDLE
)src
);
1853 if (!(dst
= GlobalAlloc16(flags
, sz
)))
1855 ptr32
= GlobalLock((HANDLE
)src
);
1856 ptr16
= GlobalLock16(dst
);
1857 if (ptr16
!= NULL
&& ptr32
!= NULL
) memcpy(ptr16
, ptr32
, sz
);
1858 GlobalUnlock((HANDLE
)src
);
1859 GlobalUnlock16(dst
);
1865 /**********************************************************************
1866 * WINPROC_MapMsg32ATo16
1868 * Map a message from 32-bit Ansi to 16-bit.
1869 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1871 INT
WINPROC_MapMsg32ATo16( HWND hwnd
, UINT msg32
, WPARAM wParam32
,
1872 UINT16
*pmsg16
, WPARAM16
*pwparam16
,
1875 *pmsg16
= (UINT16
)msg32
;
1876 *pwparam16
= (WPARAM16
)LOWORD(wParam32
);
1884 *pmsg16
= (UINT16
)msg32
+ (BM_GETCHECK16
- BM_GETCHECK
);
1893 case EM_SCROLLCARET
:
1896 case EM_GETLINECOUNT
:
1908 case EM_LINEFROMCHAR
:
1909 case EM_SETTABSTOPS
:
1910 case EM_SETPASSWORDCHAR
:
1911 case EM_EMPTYUNDOBUFFER
:
1912 case EM_GETFIRSTVISIBLELINE
:
1913 case EM_SETREADONLY
:
1914 case EM_SETWORDBREAKPROC
:
1915 case EM_GETWORDBREAKPROC
:
1916 case EM_GETPASSWORDCHAR
:
1917 *pmsg16
= (UINT16
)msg32
+ (EM_GETSEL16
- EM_GETSEL
);
1922 case LB_DELETESTRING
:
1923 case LB_GETANCHORINDEX
:
1924 case LB_GETCARETINDEX
:
1927 case LB_GETHORIZONTALEXTENT
:
1928 case LB_GETITEMDATA
:
1929 case LB_GETITEMHEIGHT
:
1931 case LB_GETSELCOUNT
:
1933 case LB_GETTOPINDEX
:
1934 case LB_RESETCONTENT
:
1935 case LB_SELITEMRANGE
:
1936 case LB_SELITEMRANGEEX
:
1937 case LB_SETANCHORINDEX
:
1938 case LB_SETCARETINDEX
:
1939 case LB_SETCOLUMNWIDTH
:
1941 case LB_SETHORIZONTALEXTENT
:
1942 case LB_SETITEMDATA
:
1943 case LB_SETITEMHEIGHT
:
1945 case LB_SETTOPINDEX
:
1946 *pmsg16
= (UINT16
)msg32
+ (LB_ADDSTRING16
- LB_ADDSTRING
);
1948 case CB_DELETESTRING
:
1950 case CB_GETLBTEXTLEN
:
1952 case CB_RESETCONTENT
:
1956 case CB_SHOWDROPDOWN
:
1957 case CB_SETITEMDATA
:
1958 case CB_SETITEMHEIGHT
:
1959 case CB_GETITEMHEIGHT
:
1960 case CB_SETEXTENDEDUI
:
1961 case CB_GETEXTENDEDUI
:
1962 case CB_GETDROPPEDSTATE
:
1963 *pmsg16
= (UINT16
)msg32
+ (CB_GETEDITSEL16
- CB_GETEDITSEL
);
1966 *pmsg16
= CB_GETEDITSEL16
;
1971 case LB_FINDSTRINGEXACT
:
1972 case LB_INSERTSTRING
:
1973 case LB_SELECTSTRING
:
1976 *plparam
= (LPARAM
)MapLS( (LPSTR
)*plparam
);
1977 *pmsg16
= (UINT16
)msg32
+ (LB_ADDSTRING16
- LB_ADDSTRING
);
1982 case CB_FINDSTRINGEXACT
:
1983 case CB_INSERTSTRING
:
1984 case CB_SELECTSTRING
:
1986 *plparam
= (LPARAM
)MapLS( (LPSTR
)*plparam
);
1987 *pmsg16
= (UINT16
)msg32
+ (CB_GETEDITSEL16
- CB_GETEDITSEL
);
1990 case LB_GETITEMRECT
:
1992 RECT16
*rect
= HeapAlloc( GetProcessHeap(), 0, sizeof(RECT16
) + sizeof(LPARAM
) );
1993 if (!rect
) return -1;
1994 *(LPARAM
*)(rect
+ 1) = *plparam
; /* Store the previous lParam */
1995 *plparam
= MapLS( rect
);
1997 *pmsg16
= LB_GETITEMRECT16
;
1999 case LB_GETSELITEMS
:
2002 *pwparam16
= (WPARAM16
)min( wParam32
, 0x7f80 ); /* Must be < 64K */
2003 if (!(items
= HeapAlloc( GetProcessHeap(), 0,
2004 *pwparam16
* sizeof(INT16
) + sizeof(LPARAM
)))) return -1;
2005 *((LPARAM
*)items
)++ = *plparam
; /* Store the previous lParam */
2006 *plparam
= MapLS( items
);
2008 *pmsg16
= LB_GETSELITEMS16
;
2010 case LB_SETTABSTOPS
:
2015 *pwparam16
= (WPARAM16
)min( wParam32
, 0x7f80 ); /* Must be < 64K */
2016 if (!(stops
= HeapAlloc( GetProcessHeap(), 0,
2017 *pwparam16
* sizeof(INT16
) + sizeof(LPARAM
)))) return -1;
2018 for (i
= 0; i
< *pwparam16
; i
++) stops
[i
] = *((LPINT
)*plparam
+i
);
2019 *plparam
= MapLS( stops
);
2022 *pmsg16
= LB_SETTABSTOPS16
;
2025 case CB_GETDROPPEDCONTROLRECT
:
2027 RECT16
*rect
= HeapAlloc( GetProcessHeap(), 0, sizeof(RECT16
) + sizeof(LPARAM
) );
2028 if (!rect
) return -1;
2029 *(LPARAM
*)(rect
+ 1) = *plparam
; /* Store the previous lParam */
2030 *plparam
= (LPARAM
)MapLS(rect
);
2032 *pmsg16
= CB_GETDROPPEDCONTROLRECT16
;
2036 *plparam
= (LPARAM
)MapLS( (LPVOID
)(*plparam
) );
2037 *pmsg16
= LB_GETTEXT16
;
2041 *plparam
= (LPARAM
)MapLS( (LPVOID
)(*plparam
) );
2042 *pmsg16
= CB_GETLBTEXT16
;
2047 *plparam
= MAKELONG( (INT16
)(INT
)wParam32
, (INT16
)*plparam
);
2048 *pmsg16
= EM_SETSEL16
;
2055 *plparam
= MAKELPARAM( (HWND16
)*plparam
, HIWORD(wParam32
) );
2059 *plparam
= MAKELPARAM( HIWORD(wParam32
), (HWND16
)*plparam
);
2061 case WM_CTLCOLORMSGBOX
:
2062 case WM_CTLCOLOREDIT
:
2063 case WM_CTLCOLORLISTBOX
:
2064 case WM_CTLCOLORBTN
:
2065 case WM_CTLCOLORDLG
:
2066 case WM_CTLCOLORSCROLLBAR
:
2067 case WM_CTLCOLORSTATIC
:
2068 *pmsg16
= WM_CTLCOLOR
;
2069 *plparam
= MAKELPARAM( (HWND16
)*plparam
,
2070 (WORD
)msg32
- WM_CTLCOLORMSGBOX
);
2072 case WM_COMPAREITEM
:
2074 COMPAREITEMSTRUCT
*cis32
= (COMPAREITEMSTRUCT
*)*plparam
;
2075 COMPAREITEMSTRUCT16
*cis
= HeapAlloc( GetProcessHeap(), 0, sizeof(COMPAREITEMSTRUCT16
));
2076 if (!cis
) return -1;
2077 cis
->CtlType
= (UINT16
)cis32
->CtlType
;
2078 cis
->CtlID
= (UINT16
)cis32
->CtlID
;
2079 cis
->hwndItem
= HWND_16( cis32
->hwndItem
);
2080 cis
->itemID1
= (UINT16
)cis32
->itemID1
;
2081 cis
->itemData1
= cis32
->itemData1
;
2082 cis
->itemID2
= (UINT16
)cis32
->itemID2
;
2083 cis
->itemData2
= cis32
->itemData2
;
2084 *plparam
= MapLS( cis
);
2089 DELETEITEMSTRUCT
*dis32
= (DELETEITEMSTRUCT
*)*plparam
;
2090 DELETEITEMSTRUCT16
*dis
= HeapAlloc( GetProcessHeap(), 0, sizeof(DELETEITEMSTRUCT16
) );
2091 if (!dis
) return -1;
2092 dis
->CtlType
= (UINT16
)dis32
->CtlType
;
2093 dis
->CtlID
= (UINT16
)dis32
->CtlID
;
2094 dis
->itemID
= (UINT16
)dis32
->itemID
;
2095 dis
->hwndItem
= (dis
->CtlType
== ODT_MENU
) ? (HWND16
)LOWORD(dis32
->hwndItem
)
2096 : HWND_16( dis32
->hwndItem
);
2097 dis
->itemData
= dis32
->itemData
;
2098 *plparam
= MapLS( dis
);
2103 DRAWITEMSTRUCT
*dis32
= (DRAWITEMSTRUCT
*)*plparam
;
2104 DRAWITEMSTRUCT16
*dis
= HeapAlloc( GetProcessHeap(), 0, sizeof(DRAWITEMSTRUCT16
) );
2105 if (!dis
) return -1;
2106 dis
->CtlType
= (UINT16
)dis32
->CtlType
;
2107 dis
->CtlID
= (UINT16
)dis32
->CtlID
;
2108 dis
->itemID
= (UINT16
)dis32
->itemID
;
2109 dis
->itemAction
= (UINT16
)dis32
->itemAction
;
2110 dis
->itemState
= (UINT16
)dis32
->itemState
;
2111 dis
->hwndItem
= HWND_16( dis32
->hwndItem
);
2112 dis
->hDC
= HDC_16(dis32
->hDC
);
2113 dis
->itemData
= dis32
->itemData
;
2114 CONV_RECT32TO16( &dis32
->rcItem
, &dis
->rcItem
);
2115 *plparam
= MapLS( dis
);
2118 case WM_MEASUREITEM
:
2120 MEASUREITEMSTRUCT
*mis32
= (MEASUREITEMSTRUCT
*)*plparam
;
2121 MEASUREITEMSTRUCT16
*mis
= HeapAlloc( GetProcessHeap(), 0, sizeof(*mis
)+sizeof(LPARAM
));
2122 if (!mis
) return -1;
2123 mis
->CtlType
= (UINT16
)mis32
->CtlType
;
2124 mis
->CtlID
= (UINT16
)mis32
->CtlID
;
2125 mis
->itemID
= (UINT16
)mis32
->itemID
;
2126 mis
->itemWidth
= (UINT16
)mis32
->itemWidth
;
2127 mis
->itemHeight
= (UINT16
)mis32
->itemHeight
;
2128 mis
->itemData
= mis32
->itemData
;
2129 *(LPARAM
*)(mis
+ 1) = *plparam
; /* Store the previous lParam */
2130 *plparam
= MapLS( mis
);
2133 case WM_GETMINMAXINFO
:
2135 MINMAXINFO16
*mmi
= HeapAlloc( GetProcessHeap(), 0, sizeof(*mmi
) + sizeof(LPARAM
) );
2136 if (!mmi
) return -1;
2137 STRUCT32_MINMAXINFO32to16( (MINMAXINFO
*)*plparam
, mmi
);
2138 *(LPARAM
*)(mmi
+ 1) = *plparam
; /* Store the previous lParam */
2139 *plparam
= MapLS( mmi
);
2143 case WM_ASKCBFORMATNAME
:
2146 *pwparam16
= (WPARAM16
)min( wParam32
, 0xff80 ); /* Must be < 64K */
2147 if (!(str
= HeapAlloc( GetProcessHeap(), 0, *pwparam16
+ sizeof(LPARAM
)))) return -1;
2148 *((LPARAM
*)str
)++ = *plparam
; /* Store the previous lParam */
2149 *plparam
= MapLS( str
);
2154 MDICREATESTRUCT16
*cs
;
2155 MDICREATESTRUCTA
*cs32
= (MDICREATESTRUCTA
*)*plparam
;
2157 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(MDICREATESTRUCT16
) ))) return -1;
2158 STRUCT32_MDICREATESTRUCT32Ato16( cs32
, cs
);
2159 cs
->szTitle
= MapLS( cs32
->szTitle
);
2160 cs
->szClass
= MapLS( cs32
->szClass
);
2161 *plparam
= MapLS( cs
);
2164 case WM_MDIGETACTIVE
:
2167 *plparam
= MAKELPARAM( (HMENU16
)LOWORD(wParam32
),
2168 (HMENU16
)LOWORD(*plparam
) );
2169 *pwparam16
= (*plparam
== 0);
2172 if(HIWORD(wParam32
) & MF_POPUP
)
2175 if (((UINT
)HIWORD(wParam32
) != 0xFFFF) || (*plparam
))
2177 if((hmenu
= GetSubMenu((HMENU
)*plparam
, *pwparam16
)))
2178 *pwparam16
=HMENU_16(hmenu
);
2183 *plparam
= MAKELPARAM( HIWORD(wParam32
), (HMENU16
)*plparam
);
2185 case WM_MDIACTIVATE
:
2186 if (GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2188 *pwparam16
= ((HWND
)*plparam
== hwnd
);
2189 *plparam
= MAKELPARAM( (HWND16
)LOWORD(*plparam
),
2190 (HWND16
)LOWORD(wParam32
) );
2194 *pwparam16
= HWND_16( (HWND
)wParam32
);
2200 NCCALCSIZE_PARAMS
*nc32
= (NCCALCSIZE_PARAMS
*)*plparam
;
2201 NCCALCSIZE_PARAMS16
*nc
= HeapAlloc( GetProcessHeap(), 0, sizeof(*nc
) + sizeof(LPARAM
));
2204 CONV_RECT32TO16( &nc32
->rgrc
[0], &nc
->rgrc
[0] );
2208 CONV_RECT32TO16( &nc32
->rgrc
[1], &nc
->rgrc
[1] );
2209 CONV_RECT32TO16( &nc32
->rgrc
[2], &nc
->rgrc
[2] );
2210 if (!(wp
= HeapAlloc( GetProcessHeap(), 0, sizeof(WINDOWPOS16
) )))
2212 HeapFree( GetProcessHeap(), 0, nc
);
2215 STRUCT32_WINDOWPOS32to16( nc32
->lppos
, wp
);
2216 nc
->lppos
= MapLS( wp
);
2218 *(LPARAM
*)(nc
+ 1) = *plparam
; /* Store the previous lParam */
2219 *plparam
= MapLS( nc
);
2226 CREATESTRUCTA
*cs32
= (CREATESTRUCTA
*)*plparam
;
2228 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(CREATESTRUCT16
) ))) return -1;
2229 STRUCT32_CREATESTRUCT32Ato16( cs32
, cs
);
2230 cs
->lpszName
= MapLS( cs32
->lpszName
);
2231 cs
->lpszClass
= MapLS( cs32
->lpszClass
);
2233 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2235 MDICREATESTRUCT16
*mdi_cs16
;
2236 MDICREATESTRUCTA
*mdi_cs
= (MDICREATESTRUCTA
*)cs32
->lpCreateParams
;
2237 mdi_cs16
= HeapAlloc(GetProcessHeap(), 0, sizeof(*mdi_cs16
));
2240 HeapFree(GetProcessHeap(), 0, cs
);
2243 STRUCT32_MDICREATESTRUCT32Ato16(mdi_cs
, mdi_cs16
);
2244 mdi_cs16
->szTitle
= MapLS( mdi_cs
->szTitle
);
2245 mdi_cs16
->szClass
= MapLS( mdi_cs
->szClass
);
2246 cs
->lpCreateParams
= MapLS( mdi_cs16
);
2248 *plparam
= MapLS( cs
);
2251 case WM_PARENTNOTIFY
:
2252 if ((LOWORD(wParam32
)==WM_CREATE
) || (LOWORD(wParam32
)==WM_DESTROY
))
2253 *plparam
= MAKELPARAM( (HWND16
)*plparam
, HIWORD(wParam32
));
2254 /* else nothing to do */
2257 *plparam
= MapLS( (NMHDR
*)*plparam
); /* NMHDR is already 32-bit */
2260 case WM_WININICHANGE
:
2261 case WM_DEVMODECHANGE
:
2262 *plparam
= MapLS( (LPSTR
)*plparam
);
2264 case WM_WINDOWPOSCHANGING
:
2265 case WM_WINDOWPOSCHANGED
:
2267 WINDOWPOS16
*wp
= HeapAlloc( GetProcessHeap(), 0, sizeof(*wp
) + sizeof(LPARAM
) );
2269 STRUCT32_WINDOWPOS32to16( (WINDOWPOS
*)*plparam
, wp
);
2270 *(LPARAM
*)(wp
+ 1) = *plparam
; /* Store the previous lParam */
2271 *plparam
= MapLS( wp
);
2276 LPMSG msg32
= (LPMSG
) *plparam
;
2277 LPMSG16 msg16
= HeapAlloc( GetProcessHeap(), 0, sizeof(MSG16
) );
2279 if (!msg16
) return -1;
2280 msg16
->hwnd
= HWND_16( msg32
->hwnd
);
2281 msg16
->lParam
= msg32
->lParam
;
2282 msg16
->time
= msg32
->time
;
2283 CONV_POINT32TO16(&msg32
->pt
,&msg16
->pt
);
2284 /* this is right, right? */
2285 if (WINPROC_MapMsg32ATo16(msg32
->hwnd
,msg32
->message
,msg32
->wParam
,
2286 &msg16
->message
,&msg16
->wParam
, &msg16
->lParam
)<0)
2288 HeapFree( GetProcessHeap(), 0, msg16
);
2291 *plparam
= MapLS( msg16
);
2296 case WM_ACTIVATEAPP
:
2297 if (*plparam
) *plparam
= HTASK_16( (HANDLE
)*plparam
);
2301 MDINEXTMENU
*next
= (MDINEXTMENU
*)*plparam
;
2302 *plparam
= (LPARAM
)next
->hmenuIn
;
2305 case WM_PAINTCLIPBOARD
:
2306 case WM_SIZECLIPBOARD
:
2307 FIXME_(msg
)("message %04x needs translation\n", msg32
);
2309 /* following messages should not be sent to 16-bit apps */
2312 case WM_CAPTURECHANGED
:
2313 case WM_STYLECHANGING
:
2314 case WM_STYLECHANGED
:
2316 case WM_DDE_INITIATE
:
2317 case WM_DDE_TERMINATE
:
2318 case WM_DDE_UNADVISE
:
2319 case WM_DDE_REQUEST
:
2320 *pwparam16
= HWND_16((HWND
)wParam32
);
2329 *pwparam16
= HWND_16((HWND
)wParam32
);
2330 UnpackDDElParam(msg32
, *plparam
, &lo32
, &hi
);
2331 if (lo32
&& !(lo16
= convert_handle_32_to_16(lo32
, GMEM_DDESHARE
)))
2333 *plparam
= MAKELPARAM(lo16
, hi
);
2335 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
2342 *pwparam16
= HWND_16((HWND
)wParam32
);
2344 UnpackDDElParam(msg32
, *plparam
, &lo
, &hi
);
2346 if (GlobalGetAtomNameA((ATOM
)hi
, buf
, sizeof(buf
)) > 0) flag
|= 1;
2347 if (GlobalSize((HANDLE
)hi
) != 0) flag
|= 2;
2353 MESSAGE("DDE_ACK: neither atom nor handle!!!\n");
2358 break; /* atom, nothing to do */
2360 MESSAGE("DDE_ACK: %x both atom and handle... choosing handle\n", hi
);
2363 hi
= convert_handle_32_to_16(hi
, GMEM_DDESHARE
);
2366 *plparam
= MAKELPARAM(lo
, hi
);
2368 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
2369 case WM_DDE_EXECUTE
:
2370 *plparam
= convert_handle_32_to_16(*plparam
, GMEM_DDESHARE
);
2371 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
2372 default: /* No translation needed */
2378 /**********************************************************************
2379 * WINPROC_UnmapMsg32ATo16
2381 * Unmap a message that was mapped from 32-bit Ansi to 16-bit.
2383 void WINPROC_UnmapMsg32ATo16( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
2392 case LB_FINDSTRINGEXACT
:
2393 case LB_INSERTSTRING
:
2394 case LB_SELECTSTRING
:
2398 case CB_FINDSTRINGEXACT
:
2399 case CB_INSERTSTRING
:
2400 case CB_SELECTSTRING
:
2404 case WM_WININICHANGE
:
2405 case WM_DEVMODECHANGE
:
2406 UnMapLS( (SEGPTR
)p16
->lParam
);
2408 case LB_SETTABSTOPS
:
2409 case WM_COMPAREITEM
:
2413 void *ptr
= MapSL( p16
->lParam
);
2414 UnMapLS( p16
->lParam
);
2415 HeapFree( GetProcessHeap(), 0, ptr
);
2418 case CB_GETDROPPEDCONTROLRECT
:
2419 case LB_GETITEMRECT
:
2421 RECT16
*rect
= MapSL(p16
->lParam
);
2422 UnMapLS( p16
->lParam
);
2423 p16
->lParam
= *(LPARAM
*)(rect
+ 1);
2424 CONV_RECT16TO32( rect
, (RECT
*)(p16
->lParam
));
2425 HeapFree( GetProcessHeap(), 0, rect
);
2428 case LB_GETSELITEMS
:
2431 LPINT16 items
= MapSL(p16
->lParam
);
2432 UnMapLS( p16
->lParam
);
2433 p16
->lParam
= *((LPARAM
*)items
- 1);
2434 for (i
= 0; i
< p16
->wParam
; i
++) *((LPINT
)(p16
->lParam
) + i
) = items
[i
];
2435 HeapFree( GetProcessHeap(), 0, (LPARAM
*)items
- 1 );
2441 *((PUINT
)(wParam
)) = LOWORD(p16
->lResult
);
2443 *((PUINT
)(lParam
)) = HIWORD(p16
->lResult
); /* FIXME: substract 1? */
2446 case WM_MEASUREITEM
:
2448 MEASUREITEMSTRUCT16
*mis
= MapSL(p16
->lParam
);
2449 MEASUREITEMSTRUCT
*mis32
= *(MEASUREITEMSTRUCT
**)(mis
+ 1);
2450 mis32
->itemWidth
= mis
->itemWidth
;
2451 mis32
->itemHeight
= mis
->itemHeight
;
2452 UnMapLS( p16
->lParam
);
2453 HeapFree( GetProcessHeap(), 0, mis
);
2456 case WM_GETMINMAXINFO
:
2458 MINMAXINFO16
*mmi
= MapSL(p16
->lParam
);
2459 UnMapLS( p16
->lParam
);
2460 p16
->lParam
= *(LPARAM
*)(mmi
+ 1);
2461 STRUCT32_MINMAXINFO16to32( mmi
, (MINMAXINFO
*)(p16
->lParam
) );
2462 HeapFree( GetProcessHeap(), 0, mmi
);
2466 case WM_ASKCBFORMATNAME
:
2468 LPSTR str
= MapSL(p16
->lParam
);
2469 UnMapLS( p16
->lParam
);
2470 p16
->lParam
= *((LPARAM
*)str
- 1);
2471 lstrcpynA( (LPSTR
)(p16
->lParam
), str
, p16
->wParam
);
2472 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
- 1 );
2477 MDICREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2478 UnMapLS( cs
->szTitle
);
2479 UnMapLS( cs
->szClass
);
2480 UnMapLS( p16
->lParam
);
2481 HeapFree( GetProcessHeap(), 0, cs
);
2484 case WM_MDIGETACTIVE
:
2485 if (lParam
) *(BOOL
*)lParam
= (BOOL16
)HIWORD(p16
->lResult
);
2486 p16
->lResult
= (LRESULT
)WIN_Handle32( LOWORD(p16
->lResult
) );
2490 NCCALCSIZE_PARAMS
*nc32
;
2491 NCCALCSIZE_PARAMS16
*nc
= MapSL(p16
->lParam
);
2492 UnMapLS( p16
->lParam
);
2493 p16
->lParam
= *(LPARAM
*)(nc
+ 1);
2494 nc32
= (NCCALCSIZE_PARAMS
*)(p16
->lParam
);
2495 CONV_RECT16TO32( &nc
->rgrc
[0], &nc32
->rgrc
[0] );
2498 WINDOWPOS16
*pos
= MapSL(nc
->lppos
);
2499 UnMapLS( nc
->lppos
);
2500 CONV_RECT16TO32( &nc
->rgrc
[1], &nc32
->rgrc
[1] );
2501 CONV_RECT16TO32( &nc
->rgrc
[2], &nc32
->rgrc
[2] );
2502 STRUCT32_WINDOWPOS16to32( pos
, nc32
->lppos
);
2503 HeapFree( GetProcessHeap(), 0, pos
);
2505 HeapFree( GetProcessHeap(), 0, nc
);
2511 CREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2512 UnMapLS( p16
->lParam
);
2513 UnMapLS( cs
->lpszName
);
2514 UnMapLS( cs
->lpszClass
);
2515 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2517 MDICREATESTRUCT16
*mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs
->lpCreateParams
);
2518 UnMapLS( cs
->lpCreateParams
);
2519 UnMapLS( mdi_cs16
->szTitle
);
2520 UnMapLS( mdi_cs16
->szClass
);
2521 HeapFree(GetProcessHeap(), 0, mdi_cs16
);
2523 HeapFree( GetProcessHeap(), 0, cs
);
2526 case WM_WINDOWPOSCHANGING
:
2527 case WM_WINDOWPOSCHANGED
:
2529 WINDOWPOS16
*wp
= MapSL(p16
->lParam
);
2530 UnMapLS( p16
->lParam
);
2531 p16
->lParam
= *(LPARAM
*)(wp
+ 1);
2532 STRUCT32_WINDOWPOS16to32( wp
, (WINDOWPOS
*)p16
->lParam
);
2533 HeapFree( GetProcessHeap(), 0, wp
);
2537 UnMapLS(p16
->lParam
);
2542 LPMSG16 msg16
= MapSL(p16
->lParam
);
2544 UnMapLS( p16
->lParam
);
2545 msgp16
.wParam
=msg16
->wParam
;
2546 msgp16
.lParam
=msg16
->lParam
;
2547 WINPROC_UnmapMsg32ATo16(((LPMSG
)lParam
)->hwnd
, ((LPMSG
)lParam
)->message
,
2548 ((LPMSG
)lParam
)->wParam
, ((LPMSG
)lParam
)->lParam
,
2550 HeapFree( GetProcessHeap(), 0, msg16
);
2555 MDINEXTMENU
*next
= (MDINEXTMENU
*)lParam
;
2556 next
->hmenuNext
= HMENU_32( LOWORD(p16
->lResult
) );
2557 next
->hwndNext
= WIN_Handle32( HIWORD(p16
->lResult
) );
2565 /**********************************************************************
2566 * WINPROC_MapMsg32WTo16
2568 * Map a message from 32-bit Unicode to 16-bit.
2569 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
2571 INT
WINPROC_MapMsg32WTo16( HWND hwnd
, UINT msg32
, WPARAM wParam32
,
2572 UINT16
*pmsg16
, WPARAM16
*pwparam16
,
2578 *pmsg16
= LOWORD(msg32
);
2579 *pwparam16
= LOWORD(wParam32
);
2584 case LB_FINDSTRINGEXACT
:
2585 case LB_INSERTSTRING
:
2586 case LB_SELECTSTRING
:
2589 *plparam
= map_str_32W_to_16( (LPWSTR
)*plparam
);
2590 *pmsg16
= (UINT16
)msg32
+ (LB_ADDSTRING16
- LB_ADDSTRING
);
2595 case CB_FINDSTRINGEXACT
:
2596 case CB_INSERTSTRING
:
2597 case CB_SELECTSTRING
:
2599 *plparam
= map_str_32W_to_16( (LPWSTR
)*plparam
);
2600 *pmsg16
= (UINT16
)msg32
+ (CB_ADDSTRING16
- CB_ADDSTRING
);
2607 CREATESTRUCTW
*cs32
= (CREATESTRUCTW
*)*plparam
;
2609 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(CREATESTRUCT16
) ))) return -1;
2610 STRUCT32_CREATESTRUCT32Ato16( (CREATESTRUCTA
*)cs32
, cs
);
2611 cs
->lpszName
= map_str_32W_to_16( cs32
->lpszName
);
2612 cs
->lpszClass
= map_str_32W_to_16( cs32
->lpszClass
);
2614 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2616 MDICREATESTRUCT16
*mdi_cs16
;
2617 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)cs32
->lpCreateParams
;
2618 mdi_cs16
= HeapAlloc(GetProcessHeap(), 0, sizeof(*mdi_cs16
));
2621 HeapFree(GetProcessHeap(), 0, cs
);
2624 STRUCT32_MDICREATESTRUCT32Ato16((MDICREATESTRUCTA
*)mdi_cs
, mdi_cs16
);
2625 mdi_cs16
->szTitle
= map_str_32W_to_16(mdi_cs
->szTitle
);
2626 mdi_cs16
->szClass
= map_str_32W_to_16(mdi_cs
->szClass
);
2627 cs
->lpCreateParams
= MapLS(mdi_cs16
);
2629 *plparam
= MapLS(cs
);
2634 MDICREATESTRUCT16
*cs
;
2635 MDICREATESTRUCTW
*cs32
= (MDICREATESTRUCTW
*)*plparam
;
2637 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(MDICREATESTRUCT16
) ))) return -1;
2638 STRUCT32_MDICREATESTRUCT32Ato16( (MDICREATESTRUCTA
*)cs32
, cs
);
2639 cs
->szTitle
= map_str_32W_to_16( cs32
->szTitle
);
2640 cs
->szClass
= map_str_32W_to_16( cs32
->szClass
);
2641 *plparam
= MapLS(cs
);
2645 case WM_WININICHANGE
:
2646 case WM_DEVMODECHANGE
:
2647 *plparam
= map_str_32W_to_16( (LPWSTR
)*plparam
);
2650 if ( WINPROC_TestLBForStr( hwnd
))
2652 LPSTR str
= HeapAlloc( GetProcessHeap(), 0, 256 ); /* FIXME: fixed sized buffer */
2653 if (!str
) return -1;
2654 *pmsg16
= LB_GETTEXT16
;
2655 *plparam
= (LPARAM
)MapLS(str
);
2659 if ( WINPROC_TestCBForStr( hwnd
))
2661 LPSTR str
= HeapAlloc( GetProcessHeap(), 0, 256 ); /* FIXME: fixed sized buffer */
2662 if (!str
) return -1;
2663 *pmsg16
= CB_GETLBTEXT16
;
2664 *plparam
= (LPARAM
)MapLS(str
);
2669 wch
= LOWORD(wParam32
);
2670 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
2672 *plparam
= MAKELPARAM( (HWND16
)*plparam
, HIWORD(wParam32
) );
2675 wch
= LOWORD(wParam32
);
2676 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
2678 *plparam
= MAKELPARAM( HIWORD(wParam32
), (HMENU16
)*plparam
);
2683 case WM_SYSDEADCHAR
:
2685 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
2693 if (WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, ch
, 2, NULL
, NULL
) == 2)
2694 *pwparam16
= (ch
[0] << 8) | ch
[1];
2700 default: /* No Unicode translation needed (?) */
2701 return WINPROC_MapMsg32ATo16( hwnd
, msg32
, wParam32
, pmsg16
,
2702 pwparam16
, plparam
);
2707 /**********************************************************************
2708 * WINPROC_UnmapMsg32WTo16
2710 * Unmap a message that was mapped from 32-bit Unicode to 16-bit.
2712 void WINPROC_UnmapMsg32WTo16( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
2719 case LB_FINDSTRINGEXACT
:
2720 case LB_INSERTSTRING
:
2721 case LB_SELECTSTRING
:
2726 case CB_FINDSTRINGEXACT
:
2727 case CB_INSERTSTRING
:
2728 case CB_SELECTSTRING
:
2731 case WM_WININICHANGE
:
2732 case WM_DEVMODECHANGE
:
2733 unmap_str_32W_to_16( p16
->lParam
);
2738 CREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2739 UnMapLS( p16
->lParam
);
2740 unmap_str_32W_to_16( cs
->lpszName
);
2741 unmap_str_32W_to_16( cs
->lpszClass
);
2743 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2745 MDICREATESTRUCT16
*mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs
->lpCreateParams
);
2746 UnMapLS( cs
->lpCreateParams
);
2747 unmap_str_32W_to_16(mdi_cs16
->szTitle
);
2748 unmap_str_32W_to_16(mdi_cs16
->szClass
);
2749 HeapFree(GetProcessHeap(), 0, mdi_cs16
);
2751 HeapFree( GetProcessHeap(), 0, cs
);
2756 MDICREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2757 UnMapLS( p16
->lParam
);
2758 unmap_str_32W_to_16( cs
->szTitle
);
2759 unmap_str_32W_to_16( cs
->szClass
);
2760 HeapFree( GetProcessHeap(), 0, cs
);
2764 case WM_ASKCBFORMATNAME
:
2766 LPSTR str
= MapSL(p16
->lParam
);
2767 UnMapLS( p16
->lParam
);
2768 p16
->lParam
= *((LPARAM
*)str
- 1);
2769 MultiByteToWideChar( CP_ACP
, 0, str
, -1, (LPWSTR
)p16
->lParam
, 0x7fffffff );
2770 p16
->lResult
= strlenW( (LPWSTR
)p16
->lParam
);
2771 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
- 1 );
2775 if ( WINPROC_TestLBForStr( hwnd
))
2777 LPSTR str
= MapSL(p16
->lParam
);
2778 UnMapLS( p16
->lParam
);
2779 p16
->lResult
= MultiByteToWideChar( CP_ACP
, 0, str
, -1, (LPWSTR
)lParam
, 0x7fffffff ) - 1;
2780 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
);
2784 if ( WINPROC_TestCBForStr( hwnd
))
2786 LPSTR str
= MapSL(p16
->lParam
);
2787 UnMapLS( p16
->lParam
);
2788 p16
->lResult
= MultiByteToWideChar( CP_ACP
, 0, str
, -1, (LPWSTR
)lParam
, 0x7fffffff ) - 1;
2789 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
);
2793 WINPROC_UnmapMsg32ATo16( hwnd
, msg
, wParam
, lParam
, p16
);
2799 /**********************************************************************
2800 * WINPROC_CallProc32ATo32W
2802 * Call a window procedure, translating args from Ansi to Unicode.
2804 static LRESULT
WINPROC_CallProc32ATo32W( WNDPROC func
, HWND hwnd
,
2805 UINT msg
, WPARAM wParam
,
2811 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
2812 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2814 if( (unmap
= WINPROC_MapMsg32ATo32W( hwnd
, msg
, &wParam
, &lParam
)) == -1) {
2815 ERR_(msg
)("Message translation failed. (msg=%s,wp=%08x,lp=%08lx)\n",
2816 SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2819 result
= WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
2820 if (unmap
) result
= WINPROC_UnmapMsg32ATo32W( hwnd
, msg
, wParam
, lParam
, result
);
2825 /**********************************************************************
2826 * WINPROC_CallProc32WTo32A_fast
2829 static BOOL
WINPROC_CallProc32WTo32A_fast( WNDPROC func
, HWND hwnd
,
2830 UINT msg
, WPARAM wParam
,
2831 LPARAM lParam
, LRESULT
*result
)
2837 { /* csW->lpszName and csW->lpszClass are NOT supposed to be atoms
2841 char *cls
= buffer
, *name
;
2842 CREATESTRUCTW
*csW
= (CREATESTRUCTW
*)lParam
;
2843 CREATESTRUCTA csA
= *(CREATESTRUCTA
*)csW
;
2844 DWORD name_lenA
, name_lenW
, class_lenA
, class_lenW
;
2846 class_lenW
= strlenW(csW
->lpszClass
) * sizeof(WCHAR
);
2847 RtlUnicodeToMultiByteSize(&class_lenA
, csW
->lpszClass
, class_lenW
);
2851 name_lenW
= strlenW(csW
->lpszName
) * sizeof(WCHAR
);
2852 RtlUnicodeToMultiByteSize(&name_lenA
, csW
->lpszName
, name_lenW
);
2855 name_lenW
= name_lenA
= 0;
2857 if (class_lenA
+ name_lenA
+ 2 > sizeof(buffer
))
2859 cls
= HeapAlloc(GetProcessHeap(), 0, class_lenA
+ name_lenA
+ 2);
2860 if (!cls
) return FALSE
;
2863 RtlUnicodeToMultiByteN(cls
, class_lenA
, NULL
, csW
->lpszClass
, class_lenW
);
2864 cls
[class_lenA
] = 0;
2865 csA
.lpszClass
= cls
;
2869 name
= cls
+ class_lenA
+ 1;
2870 RtlUnicodeToMultiByteN(name
, name_lenA
, NULL
, csW
->lpszName
, name_lenW
);
2871 name
[name_lenA
] = 0;
2872 csA
.lpszName
= name
;
2875 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2877 MDICREATESTRUCTA mdi_cs
;
2879 mdi_cs
= *(MDICREATESTRUCTA
*)csW
->lpCreateParams
;
2880 mdi_cs
.szTitle
= csA
.lpszName
;
2881 mdi_cs
.szClass
= csA
.lpszClass
;
2882 csA
.lpCreateParams
= &mdi_cs
;
2885 lParam
= (LPARAM
)&csA
;
2886 *result
= WINPROC_CallWndProc(func
, hwnd
, msg
, wParam
, lParam
);
2888 if (cls
!= buffer
) HeapFree(GetProcessHeap(), 0, cls
);
2897 /**********************************************************************
2898 * WINPROC_CallProc32WTo32A
2900 * Call a window procedure, translating args from Unicode to Ansi.
2902 static LRESULT
WINPROC_CallProc32WTo32A( WNDPROC func
, HWND hwnd
,
2903 UINT msg
, WPARAM wParam
,
2909 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
2910 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2912 if (WINPROC_CallProc32WTo32A_fast( func
, hwnd
, msg
, wParam
, lParam
, &result
))
2915 if ((unmap
= WINPROC_MapMsg32WTo32A( hwnd
, msg
, &wParam
, &lParam
)) == -1) {
2916 ERR_(msg
)("Message translation failed. (msg=%s,wp=%08x,lp=%08lx)\n",
2917 SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2920 result
= WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
2921 if( unmap
) result
= WINPROC_UnmapMsg32WTo32A( hwnd
, msg
, wParam
, lParam
, result
);
2926 /**********************************************************************
2927 * __wine_call_wndproc_32A (USER.1010)
2929 LRESULT WINAPI
__wine_call_wndproc_32A( HWND16 hwnd
, UINT16 msg
, WPARAM16 wParam
, LPARAM lParam
,
2935 HWND hwnd32
= WIN_Handle32( hwnd
);
2937 if (WINPROC_MapMsg16To32A( hwnd32
, msg
, wParam
, &msg32
, &wParam32
, &lParam
) == -1)
2939 result
= WINPROC_CallWndProc( func
, hwnd32
, msg32
, wParam32
, lParam
);
2940 return WINPROC_UnmapMsg16To32A( hwnd32
, msg32
, wParam32
, lParam
, result
);
2944 /**********************************************************************
2945 * __wine_call_wndproc_32W (USER.1011)
2947 LRESULT WINAPI
__wine_call_wndproc_32W( HWND16 hwnd
, UINT16 msg
, WPARAM16 wParam
, LPARAM lParam
,
2953 HWND hwnd32
= WIN_Handle32( hwnd
);
2955 if (WINPROC_MapMsg16To32W( hwnd32
, msg
, wParam
, &msg32
, &wParam32
, &lParam
) == -1)
2957 result
= WINPROC_CallWndProc( func
, hwnd32
, msg32
, wParam32
, lParam
);
2958 return WINPROC_UnmapMsg16To32W( hwnd32
, msg32
, wParam32
, lParam
, result
);
2962 /**********************************************************************
2963 * WINPROC_CallProc32ATo16
2965 * Call a 16-bit window procedure, translating the 32-bit args.
2967 static LRESULT WINAPI
WINPROC_CallProc32ATo16( WNDPROC16 func
, HWND hwnd
,
2968 UINT msg
, WPARAM wParam
,
2974 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
2975 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2977 mp16
.lParam
= lParam
;
2978 if (WINPROC_MapMsg32ATo16( hwnd
, msg
, wParam
, &msg16
, &mp16
.wParam
, &mp16
.lParam
) == -1)
2980 mp16
.lResult
= WINPROC_CallWndProc16( func
, HWND_16(hwnd
), msg16
,
2981 mp16
.wParam
, mp16
.lParam
);
2982 WINPROC_UnmapMsg32ATo16( hwnd
, msg
, wParam
, lParam
, &mp16
);
2983 return mp16
.lResult
;
2987 /**********************************************************************
2988 * WINPROC_CallProc32WTo16
2990 * Call a 16-bit window procedure, translating the 32-bit args.
2992 static LRESULT WINAPI
WINPROC_CallProc32WTo16( WNDPROC16 func
, HWND hwnd
,
2993 UINT msg
, WPARAM wParam
,
2999 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
3000 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
3002 mp16
.lParam
= lParam
;
3003 if (WINPROC_MapMsg32WTo16( hwnd
, msg
, wParam
, &msg16
, &mp16
.wParam
,
3004 &mp16
.lParam
) == -1)
3006 mp16
.lResult
= WINPROC_CallWndProc16( func
, HWND_16(hwnd
), msg16
,
3007 mp16
.wParam
, mp16
.lParam
);
3008 WINPROC_UnmapMsg32WTo16( hwnd
, msg
, wParam
, lParam
, &mp16
);
3009 return mp16
.lResult
;
3013 /**********************************************************************
3014 * CallWindowProc (USER.122)
3016 LRESULT WINAPI
CallWindowProc16( WNDPROC16 func
, HWND16 hwnd
, UINT16 msg
,
3017 WPARAM16 wParam
, LPARAM lParam
)
3021 if (!func
) return 0;
3023 if (!(proc
= WINPROC_GetPtr( (WNDPROC
)func
)))
3024 return WINPROC_CallWndProc16( func
, hwnd
, msg
, wParam
, lParam
);
3027 func
= WINPROC_GetProc( (WNDPROC
)proc
, WIN_PROC_16
);
3028 return WINPROC_CallWndProc16( func
, hwnd
, msg
, wParam
, lParam
);
3034 if (!proc
->thunk
.t_from32
.proc
) return 0;
3035 return WINPROC_CallWndProc16( proc
->thunk
.t_from32
.proc
,
3036 hwnd
, msg
, wParam
, lParam
);
3038 if (!proc
->thunk
.t_from16
.proc
) return 0;
3039 return __wine_call_wndproc_32A( hwnd
, msg
, wParam
, lParam
, proc
->thunk
.t_from16
.proc
);
3041 if (!proc
->thunk
.t_from16
.proc
) return 0;
3042 return __wine_call_wndproc_32W( hwnd
, msg
, wParam
, lParam
, proc
->thunk
.t_from16
.proc
);
3044 WARN_(relay
)("Invalid proc %p\n", proc
);
3050 /**********************************************************************
3051 * CallWindowProcA (USER32.@)
3053 * The CallWindowProc() function invokes the windows procedure _func_,
3054 * with _hwnd_ as the target window, the message specified by _msg_, and
3055 * the message parameters _wParam_ and _lParam_.
3057 * Some kinds of argument conversion may be done, I'm not sure what.
3059 * CallWindowProc() may be used for windows subclassing. Use
3060 * SetWindowLong() to set a new windows procedure for windows of the
3061 * subclass, and handle subclassed messages in the new windows
3062 * procedure. The new windows procedure may then use CallWindowProc()
3063 * with _func_ set to the parent class's windows procedure to dispatch
3064 * the message to the superclass.
3068 * The return value is message dependent.
3074 LRESULT WINAPI
CallWindowProcA(
3075 WNDPROC func
, /* [in] window procedure */
3076 HWND hwnd
, /* [in] target window */
3077 UINT msg
, /* [in] message */
3078 WPARAM wParam
, /* [in] message dependent parameter */
3079 LPARAM lParam
/* [in] message dependent parameter */
3083 if (!func
) return 0;
3085 if (!(proc
= WINPROC_GetPtr( func
)))
3086 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3089 func
= WINPROC_GetProc( (WNDPROC
)proc
, WIN_PROC_32A
);
3090 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3096 if (!proc
->thunk
.t_from32
.proc
) return 0;
3097 return WINPROC_CallProc32ATo16( proc
->thunk
.t_from32
.proc
,
3098 hwnd
, msg
, wParam
, lParam
);
3100 if (!proc
->thunk
.t_from16
.proc
) return 0;
3101 return WINPROC_CallWndProc( proc
->thunk
.t_from16
.proc
,
3102 hwnd
, msg
, wParam
, lParam
);
3104 if (!proc
->thunk
.t_from16
.proc
) return 0;
3105 return WINPROC_CallProc32ATo32W( proc
->thunk
.t_from16
.proc
,
3106 hwnd
, msg
, wParam
, lParam
);
3108 WARN_(relay
)("Invalid proc %p\n", proc
);
3114 /**********************************************************************
3115 * CallWindowProcW (USER32.@)
3117 LRESULT WINAPI
CallWindowProcW( WNDPROC func
, HWND hwnd
, UINT msg
,
3118 WPARAM wParam
, LPARAM lParam
)
3122 if (!func
) return 0;
3124 if (!(proc
= WINPROC_GetPtr( (WNDPROC
)func
)))
3125 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3128 func
= WINPROC_GetProc( (WNDPROC
)proc
, WIN_PROC_32W
);
3129 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3135 if (!proc
->thunk
.t_from32
.proc
) return 0;
3136 return WINPROC_CallProc32WTo16( proc
->thunk
.t_from32
.proc
,
3137 hwnd
, msg
, wParam
, lParam
);
3139 if (!proc
->thunk
.t_from16
.proc
) return 0;
3140 return WINPROC_CallProc32WTo32A( proc
->thunk
.t_from16
.proc
,
3141 hwnd
, msg
, wParam
, lParam
);
3143 if (!proc
->thunk
.t_from16
.proc
) return 0;
3144 return WINPROC_CallWndProc( proc
->thunk
.t_from16
.proc
,
3145 hwnd
, msg
, wParam
, lParam
);
3147 WARN_(relay
)("Invalid proc %p\n", proc
);