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 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);
986 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)HeapAlloc( GetProcessHeap(), 0,
989 *cs
= *(CREATESTRUCTA
*)*plparam
;
990 if (HIWORD(cs
->lpszName
))
991 cs
->lpszName
= HEAP_strdupWtoA( GetProcessHeap(), 0,
992 (LPCWSTR
)cs
->lpszName
);
993 if (HIWORD(cs
->lpszClass
))
994 cs
->lpszClass
= HEAP_strdupWtoA( GetProcessHeap(), 0,
995 (LPCWSTR
)cs
->lpszClass
);
997 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
999 MDICREATESTRUCTA
*mdi_cs
= (MDICREATESTRUCTA
*)HeapAlloc(GetProcessHeap(), 0,
1003 HeapFree(GetProcessHeap(), 0, cs
);
1006 *mdi_cs
= *(MDICREATESTRUCTA
*)cs
->lpCreateParams
;
1007 if (HIWORD(mdi_cs
->szTitle
))
1008 mdi_cs
->szTitle
= HEAP_strdupWtoA(GetProcessHeap(), 0,
1009 (LPCWSTR
)mdi_cs
->szTitle
);
1010 if (HIWORD(mdi_cs
->szClass
))
1011 mdi_cs
->szClass
= HEAP_strdupWtoA(GetProcessHeap(), 0,
1012 (LPCWSTR
)mdi_cs
->szClass
);
1013 cs
->lpCreateParams
= (LPVOID
)mdi_cs
;
1015 *plparam
= (LPARAM
)cs
;
1020 MDICREATESTRUCTA
*cs
=
1021 (MDICREATESTRUCTA
*)HeapAlloc( GetProcessHeap(), 0, sizeof(*cs
) );
1023 *cs
= *(MDICREATESTRUCTA
*)*plparam
;
1024 if (HIWORD(cs
->szTitle
))
1025 cs
->szTitle
= HEAP_strdupWtoA( GetProcessHeap(), 0,
1026 (LPCWSTR
)cs
->szTitle
);
1027 if (HIWORD(cs
->szClass
))
1028 cs
->szClass
= HEAP_strdupWtoA( GetProcessHeap(), 0,
1029 (LPCWSTR
)cs
->szClass
);
1030 *plparam
= (LPARAM
)cs
;
1036 case LB_INSERTSTRING
:
1038 case LB_FINDSTRINGEXACT
:
1039 case LB_SELECTSTRING
:
1040 if(!*plparam
) return 0;
1041 if ( WINPROC_TestLBForStr( hwnd
))
1042 *plparam
= (LPARAM
)HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR
)*plparam
);
1043 return (*plparam
? 1 : -1);
1045 case LB_GETTEXT
: /* FIXME: fixed sized buffer */
1046 { if ( WINPROC_TestLBForStr( hwnd
))
1047 { LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0, 256 + sizeof(LPARAM
) );
1048 if (!ptr
) return -1;
1049 *ptr
++ = *plparam
; /* Store previous lParam */
1050 *plparam
= (LPARAM
)ptr
;
1057 case CB_INSERTSTRING
:
1059 case CB_FINDSTRINGEXACT
:
1060 case CB_SELECTSTRING
:
1061 if(!*plparam
) return 0;
1062 if ( WINPROC_TestCBForStr( hwnd
))
1063 *plparam
= (LPARAM
)HEAP_strdupWtoA( GetProcessHeap(), 0, (LPCWSTR
)*plparam
);
1064 return (*plparam
? 1 : -1);
1066 case CB_GETLBTEXT
: /* FIXME: fixed sized buffer */
1067 { if ( WINPROC_TestCBForStr( hwnd
))
1068 { LPARAM
*ptr
= (LPARAM
*)HeapAlloc( GetProcessHeap(), 0, 256 + sizeof(LPARAM
) );
1069 if (!ptr
) return -1;
1070 *ptr
++ = *plparam
; /* Store previous lParam */
1071 *plparam
= (LPARAM
)ptr
;
1076 /* Multiline edit */
1078 { WORD len
= (WORD
)*plparam
;
1079 LPARAM
*ptr
= (LPARAM
*) HeapAlloc( GetProcessHeap(), 0, sizeof(LPARAM
) + sizeof (WORD
) + len
*sizeof(CHAR
) );
1080 if (!ptr
) return -1;
1081 *ptr
++ = *plparam
; /* Store previous lParam */
1082 *((WORD
*) ptr
) = len
; /* Store the length */
1083 *plparam
= (LPARAM
)ptr
;
1092 case WM_SYSDEADCHAR
:
1093 case EM_SETPASSWORDCHAR
:
1095 WCHAR wch
= LOWORD(*pwparam
);
1097 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
1098 *pwparam
= MAKEWPARAM( ch
, HIWORD(*pwparam
) );
1104 WCHAR wch
= LOWORD(*pwparam
);
1107 if (WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, ch
, 2, NULL
, NULL
) == 2)
1108 *pwparam
= MAKEWPARAM( (ch
[0] << 8) | ch
[1], HIWORD(*pwparam
) );
1110 *pwparam
= MAKEWPARAM( ch
[0], HIWORD(*pwparam
) );
1114 case WM_PAINTCLIPBOARD
:
1115 case WM_SIZECLIPBOARD
:
1116 FIXME_(msg
)("message %s (%04x) needs translation, please report\n",SPY_GetMsgName(msg
, hwnd
),msg
);
1118 default: /* No translation needed */
1124 /**********************************************************************
1125 * WINPROC_UnmapMsg32WTo32A
1127 * Unmap a message that was mapped from Unicode to Ansi.
1129 LRESULT
WINPROC_UnmapMsg32WTo32A( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
, LRESULT result
)
1134 case WM_ASKCBFORMATNAME
:
1136 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
1137 if (!wParam
) result
= 0;
1138 else if (!(result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1,
1139 (LPWSTR
)*ptr
, wParam
)))
1141 ((LPWSTR
)*ptr
)[wParam
-1] = 0;
1142 result
= wParam
- 1;
1144 else result
--; /* do not count terminating null */
1145 HeapFree( GetProcessHeap(), 0, ptr
);
1150 case WM_WININICHANGE
:
1151 case WM_DEVMODECHANGE
:
1156 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
1162 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)lParam
;
1163 if (HIWORD(cs
->lpszName
))
1164 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->lpszName
);
1165 if (HIWORD(cs
->lpszClass
))
1166 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->lpszClass
);
1167 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1169 MDICREATESTRUCTA
*mdi_cs
= (MDICREATESTRUCTA
*)cs
->lpCreateParams
;
1170 if (HIWORD(mdi_cs
->szTitle
))
1171 HeapFree(GetProcessHeap(), 0, (LPVOID
)mdi_cs
->szTitle
);
1172 if (HIWORD(mdi_cs
->szClass
))
1173 HeapFree(GetProcessHeap(), 0, (LPVOID
)mdi_cs
->szClass
);
1174 HeapFree(GetProcessHeap(), 0, mdi_cs
);
1176 HeapFree( GetProcessHeap(), 0, cs
);
1182 MDICREATESTRUCTA
*cs
= (MDICREATESTRUCTA
*)lParam
;
1183 if (HIWORD(cs
->szTitle
))
1184 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->szTitle
);
1185 if (HIWORD(cs
->szClass
))
1186 HeapFree( GetProcessHeap(), 0, (LPVOID
)cs
->szClass
);
1187 HeapFree( GetProcessHeap(), 0, cs
);
1193 case LB_INSERTSTRING
:
1195 case LB_FINDSTRINGEXACT
:
1196 case LB_SELECTSTRING
:
1197 if ( WINPROC_TestLBForStr( hwnd
))
1198 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
1202 if ( WINPROC_TestLBForStr( hwnd
))
1204 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
1205 result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, (LPWSTR
)*ptr
, 0x7fffffff ) - 1;
1206 HeapFree( GetProcessHeap(), 0, ptr
);
1212 case CB_INSERTSTRING
:
1214 case CB_FINDSTRINGEXACT
:
1215 case CB_SELECTSTRING
:
1216 if ( WINPROC_TestCBForStr( hwnd
))
1217 HeapFree( GetProcessHeap(), 0, (void *)lParam
);
1221 if ( WINPROC_TestCBForStr( hwnd
))
1223 LPARAM
*ptr
= (LPARAM
*)lParam
- 1;
1224 result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, -1, (LPWSTR
)*ptr
, 0x7fffffff ) - 1;
1225 HeapFree( GetProcessHeap(), 0, ptr
);
1229 /* Multiline edit */
1232 LPARAM
* ptr
= (LPARAM
*)lParam
- 1; /* get the old lparam */
1233 WORD len
= *(WORD
*)ptr
;
1236 result
= MultiByteToWideChar( CP_ACP
, 0, (LPSTR
)lParam
, result
, (LPWSTR
)*ptr
, len
);
1237 if (result
< len
) ((LPWSTR
)*ptr
)[result
] = 0;
1239 HeapFree( GetProcessHeap(), 0, ptr
);
1246 static UINT
convert_handle_16_to_32(HANDLE16 src
, unsigned int flags
)
1249 UINT sz
= GlobalSize16(src
);
1252 if (!(dst
= GlobalAlloc(flags
, sz
)))
1254 ptr16
= GlobalLock16(src
);
1255 ptr32
= GlobalLock(dst
);
1256 if (ptr16
!= NULL
&& ptr32
!= NULL
) memcpy(ptr32
, ptr16
, sz
);
1257 GlobalUnlock16(src
);
1263 /**********************************************************************
1264 * WINPROC_MapMsg16To32A
1266 * Map a message from 16- to 32-bit Ansi.
1267 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1269 INT
WINPROC_MapMsg16To32A( HWND hwnd
, UINT16 msg16
, WPARAM16 wParam16
, UINT
*pmsg32
,
1270 WPARAM
*pwparam32
, LPARAM
*plparam
)
1272 *pmsg32
= (UINT
)msg16
;
1273 *pwparam32
= (WPARAM
)wParam16
;
1280 *pwparam32
= MAKEWPARAM( wParam16
, HIWORD(*plparam
) );
1281 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1285 *pwparam32
= MAKEWPARAM( wParam16
, LOWORD(*plparam
) );
1286 *plparam
= (LPARAM
)WIN_Handle32( HIWORD(*plparam
) );
1289 if ( HIWORD(*plparam
) > CTLCOLOR_STATIC
) return -1;
1290 *pmsg32
= WM_CTLCOLORMSGBOX
+ HIWORD(*plparam
);
1291 *pwparam32
= (WPARAM
)HDC_32(wParam16
);
1292 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1294 case WM_COMPAREITEM
:
1296 COMPAREITEMSTRUCT16
* cis16
= MapSL(*plparam
);
1297 COMPAREITEMSTRUCT
*cis
= (COMPAREITEMSTRUCT
*)
1298 HeapAlloc(GetProcessHeap(), 0, sizeof(*cis
));
1299 if (!cis
) return -1;
1300 cis
->CtlType
= cis16
->CtlType
;
1301 cis
->CtlID
= cis16
->CtlID
;
1302 cis
->hwndItem
= WIN_Handle32( cis16
->hwndItem
);
1303 cis
->itemID1
= cis16
->itemID1
;
1304 cis
->itemData1
= cis16
->itemData1
;
1305 cis
->itemID2
= cis16
->itemID2
;
1306 cis
->itemData2
= cis16
->itemData2
;
1307 cis
->dwLocaleId
= 0; /* FIXME */
1308 *plparam
= (LPARAM
)cis
;
1313 DELETEITEMSTRUCT16
* dis16
= MapSL(*plparam
);
1314 DELETEITEMSTRUCT
*dis
= (DELETEITEMSTRUCT
*)
1315 HeapAlloc(GetProcessHeap(), 0, sizeof(*dis
));
1316 if (!dis
) return -1;
1317 dis
->CtlType
= dis16
->CtlType
;
1318 dis
->CtlID
= dis16
->CtlID
;
1319 dis
->hwndItem
= WIN_Handle32( dis16
->hwndItem
);
1320 dis
->itemData
= dis16
->itemData
;
1321 *plparam
= (LPARAM
)dis
;
1324 case WM_MEASUREITEM
:
1326 MEASUREITEMSTRUCT16
* mis16
= MapSL(*plparam
);
1327 MEASUREITEMSTRUCT
*mis
= (MEASUREITEMSTRUCT
*)
1328 HeapAlloc(GetProcessHeap(), 0,
1329 sizeof(*mis
) + sizeof(LPARAM
));
1330 if (!mis
) return -1;
1331 mis
->CtlType
= mis16
->CtlType
;
1332 mis
->CtlID
= mis16
->CtlID
;
1333 mis
->itemID
= mis16
->itemID
;
1334 mis
->itemWidth
= mis16
->itemWidth
;
1335 mis
->itemHeight
= mis16
->itemHeight
;
1336 mis
->itemData
= mis16
->itemData
;
1337 *(LPARAM
*)(mis
+ 1) = *plparam
; /* Store the previous lParam */
1338 *plparam
= (LPARAM
)mis
;
1343 DRAWITEMSTRUCT16
* dis16
= MapSL(*plparam
);
1344 DRAWITEMSTRUCT
*dis
= (DRAWITEMSTRUCT
*)HeapAlloc(GetProcessHeap(), 0,
1346 if (!dis
) return -1;
1347 dis
->CtlType
= dis16
->CtlType
;
1348 dis
->CtlID
= dis16
->CtlID
;
1349 dis
->itemID
= dis16
->itemID
;
1350 dis
->itemAction
= dis16
->itemAction
;
1351 dis
->itemState
= dis16
->itemState
;
1352 dis
->hwndItem
= (dis
->CtlType
== ODT_MENU
) ? (HWND
)HMENU_32(dis16
->hwndItem
)
1353 : WIN_Handle32( dis16
->hwndItem
);
1354 dis
->hDC
= HDC_32(dis16
->hDC
);
1355 dis
->itemData
= dis16
->itemData
;
1356 CONV_RECT16TO32( &dis16
->rcItem
, &dis
->rcItem
);
1357 *plparam
= (LPARAM
)dis
;
1360 case WM_GETMINMAXINFO
:
1362 MINMAXINFO
*mmi
= (MINMAXINFO
*)HeapAlloc( GetProcessHeap(), 0,
1363 sizeof(*mmi
) + sizeof(LPARAM
));
1364 if (!mmi
) return -1;
1365 STRUCT32_MINMAXINFO16to32( MapSL(*plparam
), mmi
);
1366 *(LPARAM
*)(mmi
+ 1) = *plparam
; /* Store the previous lParam */
1367 *plparam
= (LPARAM
)mmi
;
1372 case WM_WININICHANGE
:
1373 case WM_DEVMODECHANGE
:
1374 case WM_ASKCBFORMATNAME
:
1375 *plparam
= (LPARAM
)MapSL(*plparam
);
1379 MDICREATESTRUCT16
*cs16
= MapSL(*plparam
);
1380 MDICREATESTRUCTA
*cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(*cs
) + sizeof(LPARAM
) );
1382 STRUCT32_MDICREATESTRUCT16to32A( cs16
, cs
);
1383 cs
->szTitle
= MapSL(cs16
->szTitle
);
1384 cs
->szClass
= MapSL(cs16
->szClass
);
1385 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1386 *plparam
= (LPARAM
)cs
;
1389 case WM_MDIGETACTIVE
:
1390 *plparam
= (LPARAM
)HeapAlloc( GetProcessHeap(), 0, sizeof(BOOL
) );
1391 *(BOOL
*)(*plparam
) = 0;
1395 *pmsg32
=WM_MDIREFRESHMENU
;
1396 *pwparam32
= (WPARAM
)HMENU_32(LOWORD(*plparam
));
1397 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1400 *pwparam32
= MAKEWPARAM( wParam16
, LOWORD(*plparam
) );
1401 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1404 if((LOWORD(*plparam
) & MF_POPUP
) && (LOWORD(*plparam
) != 0xFFFF))
1406 HMENU hmenu
=HMENU_32(HIWORD(*plparam
));
1407 UINT Pos
=MENU_FindSubMenu( &hmenu
, HMENU_32(wParam16
));
1408 if(Pos
==0xFFFF) Pos
=0; /* NO_SELECTED_ITEM */
1409 *pwparam32
= MAKEWPARAM( Pos
, LOWORD(*plparam
) );
1411 else *pwparam32
= MAKEWPARAM( wParam16
, LOWORD(*plparam
) );
1412 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1414 case WM_MDIACTIVATE
:
1417 *pwparam32
= (WPARAM
)WIN_Handle32( HIWORD(*plparam
) );
1418 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1420 else /* message sent to MDI client */
1421 *pwparam32
= wParam16
;
1425 NCCALCSIZE_PARAMS16
*nc16
;
1426 NCCALCSIZE_PARAMS
*nc
;
1428 nc
= (NCCALCSIZE_PARAMS
*)HeapAlloc( GetProcessHeap(), 0,
1429 sizeof(*nc
) + sizeof(LPARAM
) );
1431 nc16
= MapSL(*plparam
);
1432 CONV_RECT16TO32( &nc16
->rgrc
[0], &nc
->rgrc
[0] );
1435 nc
->lppos
= (WINDOWPOS
*)HeapAlloc( GetProcessHeap(), 0,
1436 sizeof(*nc
->lppos
) );
1437 CONV_RECT16TO32( &nc16
->rgrc
[1], &nc
->rgrc
[1] );
1438 CONV_RECT16TO32( &nc16
->rgrc
[2], &nc
->rgrc
[2] );
1439 if (nc
->lppos
) STRUCT32_WINDOWPOS16to32( MapSL(nc16
->lppos
), nc
->lppos
);
1441 *(LPARAM
*)(nc
+ 1) = *plparam
; /* Store the previous lParam */
1442 *plparam
= (LPARAM
)nc
;
1448 CREATESTRUCT16
*cs16
= MapSL(*plparam
);
1449 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)HeapAlloc( GetProcessHeap(), 0,
1450 sizeof(*cs
) + sizeof(LPARAM
) );
1452 STRUCT32_CREATESTRUCT16to32A( cs16
, cs
);
1453 cs
->lpszName
= MapSL(cs16
->lpszName
);
1454 cs
->lpszClass
= MapSL(cs16
->lpszClass
);
1456 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1458 MDICREATESTRUCT16
*mdi_cs16
;
1459 MDICREATESTRUCTA
*mdi_cs
= (MDICREATESTRUCTA
*)HeapAlloc(GetProcessHeap(), 0,
1463 HeapFree(GetProcessHeap(), 0, cs
);
1466 mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs16
->lpCreateParams
);
1467 STRUCT32_MDICREATESTRUCT16to32A(mdi_cs16
, mdi_cs
);
1468 mdi_cs
->szTitle
= MapSL(mdi_cs16
->szTitle
);
1469 mdi_cs
->szClass
= MapSL(mdi_cs16
->szClass
);
1471 cs
->lpCreateParams
= mdi_cs
;
1473 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1474 *plparam
= (LPARAM
)cs
;
1477 case WM_PARENTNOTIFY
:
1478 if ((wParam16
== WM_CREATE
) || (wParam16
== WM_DESTROY
))
1480 *pwparam32
= MAKEWPARAM( wParam16
, HIWORD(*plparam
) );
1481 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1484 case WM_WINDOWPOSCHANGING
:
1485 case WM_WINDOWPOSCHANGED
:
1487 WINDOWPOS
*wp
= (WINDOWPOS
*)HeapAlloc( GetProcessHeap(), 0,
1488 sizeof(*wp
) + sizeof(LPARAM
) );
1490 STRUCT32_WINDOWPOS16to32( MapSL(*plparam
), wp
);
1491 *(LPARAM
*)(wp
+ 1) = *plparam
; /* Store the previous lParam */
1492 *plparam
= (LPARAM
)wp
;
1498 LPMSG16 msg16
= MapSL(*plparam
);
1499 LPMSG msg32
= (LPMSG
)HeapAlloc( GetProcessHeap(), 0, sizeof(MSG
) );
1501 if (!msg32
) return -1;
1502 msg32
->hwnd
= WIN_Handle32( msg16
->hwnd
);
1503 msg32
->lParam
= msg16
->lParam
;
1504 msg32
->time
= msg16
->time
;
1505 CONV_POINT16TO32(&msg16
->pt
,&msg32
->pt
);
1506 /* this is right, right? */
1507 if (WINPROC_MapMsg16To32A( msg32
->hwnd
, msg16
->message
,msg16
->wParam
,
1508 &msg32
->message
,&msg32
->wParam
,
1509 &msg32
->lParam
)<0) {
1510 HeapFree( GetProcessHeap(), 0, msg32
);
1513 *plparam
= (LPARAM
)msg32
;
1518 *plparam
= (LPARAM
)MapSL(*plparam
);
1520 case WM_ACTIVATEAPP
:
1521 /* We need this when SetActiveWindow sends a Sendmessage16() to
1522 * a 32bit window. Might be superflous with 32bit interprocess
1523 * message queues. */
1524 if (*plparam
) *plparam
= HTASK_32( *plparam
);
1528 MDINEXTMENU
*next
= HeapAlloc( GetProcessHeap(), 0, sizeof(*next
) );
1529 if (!next
) return -1;
1530 next
->hmenuIn
= (HMENU
)*plparam
;
1531 next
->hmenuNext
= 0;
1533 *plparam
= (LPARAM
)next
;
1536 case WM_PAINTCLIPBOARD
:
1537 case WM_SIZECLIPBOARD
:
1538 FIXME_(msg
)("message %04x needs translation\n",msg16
);
1540 case WM_DDE_INITIATE
:
1541 case WM_DDE_TERMINATE
:
1542 case WM_DDE_UNADVISE
:
1543 case WM_DDE_REQUEST
:
1544 *pwparam32
= (WPARAM
)WIN_Handle32(wParam16
);
1554 *pwparam32
= (WPARAM
)WIN_Handle32(wParam16
);
1555 lo16
= LOWORD(*plparam
);
1556 hi
= HIWORD(*plparam
);
1557 if (lo16
&& !(lo32
= convert_handle_16_to_32(lo16
, GMEM_DDESHARE
)))
1559 *plparam
= PackDDElParam(msg16
, lo32
, hi
);
1561 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
1568 *pwparam32
= (WPARAM
)WIN_Handle32(wParam16
);
1570 lo
= LOWORD(*plparam
);
1571 hi
= HIWORD(*plparam
);
1573 if (GlobalGetAtomNameA(hi
, buf
, 2) > 0) flag
|= 1;
1574 if (GlobalSize16(hi
) != 0) flag
|= 2;
1580 MESSAGE("DDE_ACK: neither atom nor handle!!!\n");
1585 break; /* atom, nothing to do */
1587 MESSAGE("DDE_ACK: %x both atom and handle... choosing handle\n", hi
);
1590 hi
= convert_handle_16_to_32(hi
, GMEM_DDESHARE
);
1593 *plparam
= PackDDElParam(WM_DDE_ACK
, lo
, hi
);
1595 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
1596 case WM_DDE_EXECUTE
:
1597 *plparam
= convert_handle_16_to_32(*plparam
, GMEM_DDESHARE
);
1598 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
1599 default: /* No translation needed */
1605 /**********************************************************************
1606 * WINPROC_UnmapMsg16To32A
1608 * Unmap a message that was mapped from 16- to 32-bit Ansi.
1610 LRESULT
WINPROC_UnmapMsg16To32A( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
1615 case WM_COMPAREITEM
:
1618 HeapFree( GetProcessHeap(), 0, (LPVOID
)lParam
);
1620 case WM_MEASUREITEM
:
1622 MEASUREITEMSTRUCT16
*mis16
;
1623 MEASUREITEMSTRUCT
*mis
= (MEASUREITEMSTRUCT
*)lParam
;
1624 lParam
= *(LPARAM
*)(mis
+ 1);
1625 mis16
= MapSL(lParam
);
1626 mis16
->itemWidth
= (UINT16
)mis
->itemWidth
;
1627 mis16
->itemHeight
= (UINT16
)mis
->itemHeight
;
1628 HeapFree( GetProcessHeap(), 0, mis
);
1631 case WM_GETMINMAXINFO
:
1633 MINMAXINFO
*mmi
= (MINMAXINFO
*)lParam
;
1634 lParam
= *(LPARAM
*)(mmi
+ 1);
1635 STRUCT32_MINMAXINFO32to16( mmi
, MapSL(lParam
));
1636 HeapFree( GetProcessHeap(), 0, mmi
);
1641 MDICREATESTRUCTA
*cs
= (MDICREATESTRUCTA
*)lParam
;
1642 lParam
= *(LPARAM
*)(cs
+ 1);
1643 STRUCT32_MDICREATESTRUCT32Ato16( cs
, MapSL(lParam
) );
1644 HeapFree( GetProcessHeap(), 0, cs
);
1647 case WM_MDIGETACTIVE
:
1648 result
= MAKELONG( LOWORD(result
), (BOOL16
)(*(BOOL
*)lParam
) );
1649 HeapFree( GetProcessHeap(), 0, (BOOL
*)lParam
);
1653 NCCALCSIZE_PARAMS16
*nc16
;
1654 NCCALCSIZE_PARAMS
*nc
= (NCCALCSIZE_PARAMS
*)lParam
;
1655 lParam
= *(LPARAM
*)(nc
+ 1);
1656 nc16
= MapSL(lParam
);
1657 CONV_RECT32TO16( &nc
->rgrc
[0], &nc16
->rgrc
[0] );
1660 CONV_RECT32TO16( &nc
->rgrc
[1], &nc16
->rgrc
[1] );
1661 CONV_RECT32TO16( &nc
->rgrc
[2], &nc16
->rgrc
[2] );
1664 STRUCT32_WINDOWPOS32to16( nc
->lppos
, MapSL(nc16
->lppos
));
1665 HeapFree( GetProcessHeap(), 0, nc
->lppos
);
1668 HeapFree( GetProcessHeap(), 0, nc
);
1674 CREATESTRUCTA
*cs
= (CREATESTRUCTA
*)lParam
;
1675 lParam
= *(LPARAM
*)(cs
+ 1);
1676 STRUCT32_CREATESTRUCT32Ato16( cs
, MapSL(lParam
) );
1678 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1679 HeapFree(GetProcessHeap(), 0, cs
->lpCreateParams
);
1681 HeapFree( GetProcessHeap(), 0, cs
);
1684 case WM_WINDOWPOSCHANGING
:
1685 case WM_WINDOWPOSCHANGED
:
1687 WINDOWPOS
*wp
= (WINDOWPOS
*)lParam
;
1688 lParam
= *(LPARAM
*)(wp
+ 1);
1689 STRUCT32_WINDOWPOS32to16(wp
, MapSL(lParam
));
1690 HeapFree( GetProcessHeap(), 0, wp
);
1696 LPMSG msg32
= (LPMSG
)lParam
;
1698 WINPROC_UnmapMsg16To32A( hwnd
, msg32
->message
, msg32
->wParam
, msg32
->lParam
,
1700 HeapFree( GetProcessHeap(), 0, msg32
);
1705 MDINEXTMENU
*next
= (MDINEXTMENU
*)lParam
;
1706 result
= MAKELONG( HMENU_16(next
->hmenuNext
), HWND_16(next
->hwndNext
) );
1707 HeapFree( GetProcessHeap(), 0, next
);
1715 /**********************************************************************
1716 * WINPROC_MapMsg16To32W
1718 * Map a message from 16- to 32-bit Unicode.
1719 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1721 INT
WINPROC_MapMsg16To32W( HWND hwnd
, UINT16 msg16
, WPARAM16 wParam16
, UINT
*pmsg32
,
1722 WPARAM
*pwparam32
, LPARAM
*plparam
)
1727 *pmsg32
=(UINT
)msg16
;
1728 *pwparam32
= (WPARAM
)wParam16
;
1733 case WM_WININICHANGE
:
1734 case WM_DEVMODECHANGE
:
1735 case WM_ASKCBFORMATNAME
:
1736 *plparam
= (LPARAM
)MapSL(*plparam
);
1737 return WINPROC_MapMsg32ATo32W( hwnd
, *pmsg32
, pwparam32
, plparam
);
1738 case WM_GETTEXTLENGTH
:
1739 case CB_GETLBTEXTLEN
:
1741 return 1; /* need to map result */
1745 CREATESTRUCT16
*cs16
= MapSL(*plparam
);
1746 CREATESTRUCTW
*cs
= (CREATESTRUCTW
*)HeapAlloc( GetProcessHeap(), 0,
1747 sizeof(*cs
) + sizeof(LPARAM
) );
1749 STRUCT32_CREATESTRUCT16to32A( cs16
, (CREATESTRUCTA
*)cs
);
1750 cs
->lpszName
= map_str_16_to_32W(cs16
->lpszName
);
1751 cs
->lpszClass
= map_str_16_to_32W(cs16
->lpszClass
);
1753 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1755 MDICREATESTRUCT16
*mdi_cs16
;
1756 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)HeapAlloc(GetProcessHeap(), 0,
1760 HeapFree(GetProcessHeap(), 0, cs
);
1763 mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs16
->lpCreateParams
);
1764 STRUCT32_MDICREATESTRUCT16to32A(mdi_cs16
, (MDICREATESTRUCTA
*)mdi_cs
);
1765 mdi_cs
->szTitle
= map_str_16_to_32W(mdi_cs16
->szTitle
);
1766 mdi_cs
->szClass
= map_str_16_to_32W(mdi_cs16
->szClass
);
1768 cs
->lpCreateParams
= mdi_cs
;
1770 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1771 *plparam
= (LPARAM
)cs
;
1776 MDICREATESTRUCT16
*cs16
= MapSL(*plparam
);
1777 MDICREATESTRUCTW
*cs
=
1778 (MDICREATESTRUCTW
*)HeapAlloc( GetProcessHeap(), 0,
1779 sizeof(*cs
) + sizeof(LPARAM
) );
1781 STRUCT32_MDICREATESTRUCT16to32A( cs16
, (MDICREATESTRUCTA
*)cs
);
1782 cs
->szTitle
= map_str_16_to_32W(cs16
->szTitle
);
1783 cs
->szClass
= map_str_16_to_32W(cs16
->szClass
);
1784 *(LPARAM
*)(cs
+ 1) = *plparam
; /* Store the previous lParam */
1785 *plparam
= (LPARAM
)cs
;
1791 LPMSG16 msg16
= MapSL(*plparam
);
1792 LPMSG msg32
= (LPMSG
)HeapAlloc( GetProcessHeap(), 0, sizeof(MSG
) );
1794 if (!msg32
) return -1;
1795 msg32
->hwnd
= WIN_Handle32( msg16
->hwnd
);
1796 msg32
->lParam
= msg16
->lParam
;
1797 msg32
->time
= msg16
->time
;
1798 CONV_POINT16TO32(&msg16
->pt
,&msg32
->pt
);
1799 /* this is right, right? */
1800 if (WINPROC_MapMsg16To32W(hwnd
, msg16
->message
,msg16
->wParam
,
1801 &msg32
->message
,&msg32
->wParam
,
1802 &msg32
->lParam
)<0) {
1803 HeapFree( GetProcessHeap(), 0, msg32
);
1806 *plparam
= (LPARAM
)msg32
;
1813 MultiByteToWideChar( CP_ACP
, 0, &ch
, 1, &wch
, 1);
1814 *pwparam32
= MAKEWPARAM( wch
, HIWORD(*plparam
) );
1815 *plparam
= (LPARAM
)WIN_Handle32( LOWORD(*plparam
) );
1819 MultiByteToWideChar( CP_ACP
, 0, &ch
, 1, &wch
, 1);
1820 *pwparam32
= MAKEWPARAM( wch
, LOWORD(*plparam
) );
1821 *plparam
= (LPARAM
)HMENU_32(HIWORD(*plparam
));
1826 case WM_SYSDEADCHAR
:
1828 MultiByteToWideChar( CP_ACP
, 0, &ch
, 1, &wch
, 1);
1832 return WINPROC_MapMsg32ATo32W( hwnd
, *pmsg32
, pwparam32
, plparam
);
1834 default: /* No Unicode translation needed */
1835 return WINPROC_MapMsg16To32A( hwnd
, msg16
, wParam16
, pmsg32
,
1836 pwparam32
, plparam
);
1841 /**********************************************************************
1842 * WINPROC_UnmapMsg16To32W
1844 * Unmap a message that was mapped from 16- to 32-bit Unicode.
1846 LRESULT
WINPROC_UnmapMsg16To32W( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
1853 case WM_GETTEXTLENGTH
:
1854 case CB_GETLBTEXTLEN
:
1856 case WM_ASKCBFORMATNAME
:
1857 return WINPROC_UnmapMsg32ATo32W( hwnd
, msg
, wParam
, lParam
, result
);
1861 CREATESTRUCTW
*cs
= (CREATESTRUCTW
*)lParam
;
1862 lParam
= *(LPARAM
*)(cs
+ 1);
1863 STRUCT32_CREATESTRUCT32Ato16( (CREATESTRUCTA
*)cs
, MapSL(lParam
) );
1864 unmap_str_16_to_32W( cs
->lpszName
);
1865 unmap_str_16_to_32W( cs
->lpszClass
);
1867 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
1869 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)cs
->lpCreateParams
;
1870 unmap_str_16_to_32W( mdi_cs
->szTitle
);
1871 unmap_str_16_to_32W( mdi_cs
->szClass
);
1872 HeapFree(GetProcessHeap(), 0, cs
->lpCreateParams
);
1874 HeapFree( GetProcessHeap(), 0, cs
);
1879 MDICREATESTRUCTW
*cs
= (MDICREATESTRUCTW
*)lParam
;
1880 lParam
= *(LPARAM
*)(cs
+ 1);
1881 STRUCT32_MDICREATESTRUCT32Ato16( (MDICREATESTRUCTA
*)cs
, MapSL(lParam
) );
1882 unmap_str_16_to_32W( cs
->szTitle
);
1883 unmap_str_16_to_32W( cs
->szClass
);
1884 HeapFree( GetProcessHeap(), 0, cs
);
1890 LPMSG msg32
= (LPMSG
)lParam
;
1892 WINPROC_UnmapMsg16To32W( hwnd
, msg32
->message
, msg32
->wParam
, msg32
->lParam
,
1894 HeapFree( GetProcessHeap(), 0, msg32
);
1898 return WINPROC_UnmapMsg16To32A( hwnd
, msg
, wParam
, lParam
, result
);
1903 static HANDLE16
convert_handle_32_to_16(UINT src
, unsigned int flags
)
1906 UINT sz
= GlobalSize((HANDLE
)src
);
1909 if (!(dst
= GlobalAlloc16(flags
, sz
)))
1911 ptr32
= GlobalLock((HANDLE
)src
);
1912 ptr16
= GlobalLock16(dst
);
1913 if (ptr16
!= NULL
&& ptr32
!= NULL
) memcpy(ptr16
, ptr32
, sz
);
1914 GlobalUnlock((HANDLE
)src
);
1915 GlobalUnlock16(dst
);
1921 /**********************************************************************
1922 * WINPROC_MapMsg32ATo16
1924 * Map a message from 32-bit Ansi to 16-bit.
1925 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1927 INT
WINPROC_MapMsg32ATo16( HWND hwnd
, UINT msg32
, WPARAM wParam32
,
1928 UINT16
*pmsg16
, WPARAM16
*pwparam16
,
1931 *pmsg16
= (UINT16
)msg32
;
1932 *pwparam16
= (WPARAM16
)LOWORD(wParam32
);
1940 *pmsg16
= (UINT16
)msg32
+ (BM_GETCHECK16
- BM_GETCHECK
);
1949 case EM_SCROLLCARET
:
1952 case EM_GETLINECOUNT
:
1964 case EM_LINEFROMCHAR
:
1965 case EM_SETTABSTOPS
:
1966 case EM_SETPASSWORDCHAR
:
1967 case EM_EMPTYUNDOBUFFER
:
1968 case EM_GETFIRSTVISIBLELINE
:
1969 case EM_SETREADONLY
:
1970 case EM_SETWORDBREAKPROC
:
1971 case EM_GETWORDBREAKPROC
:
1972 case EM_GETPASSWORDCHAR
:
1973 *pmsg16
= (UINT16
)msg32
+ (EM_GETSEL16
- EM_GETSEL
);
1978 case LB_DELETESTRING
:
1979 case LB_GETANCHORINDEX
:
1980 case LB_GETCARETINDEX
:
1983 case LB_GETHORIZONTALEXTENT
:
1984 case LB_GETITEMDATA
:
1985 case LB_GETITEMHEIGHT
:
1987 case LB_GETSELCOUNT
:
1989 case LB_GETTOPINDEX
:
1990 case LB_RESETCONTENT
:
1991 case LB_SELITEMRANGE
:
1992 case LB_SELITEMRANGEEX
:
1993 case LB_SETANCHORINDEX
:
1994 case LB_SETCARETINDEX
:
1995 case LB_SETCOLUMNWIDTH
:
1997 case LB_SETHORIZONTALEXTENT
:
1998 case LB_SETITEMDATA
:
1999 case LB_SETITEMHEIGHT
:
2001 case LB_SETTOPINDEX
:
2002 *pmsg16
= (UINT16
)msg32
+ (LB_ADDSTRING16
- LB_ADDSTRING
);
2004 case CB_DELETESTRING
:
2006 case CB_GETLBTEXTLEN
:
2008 case CB_RESETCONTENT
:
2012 case CB_SHOWDROPDOWN
:
2013 case CB_SETITEMDATA
:
2014 case CB_SETITEMHEIGHT
:
2015 case CB_GETITEMHEIGHT
:
2016 case CB_SETEXTENDEDUI
:
2017 case CB_GETEXTENDEDUI
:
2018 case CB_GETDROPPEDSTATE
:
2019 *pmsg16
= (UINT16
)msg32
+ (CB_GETEDITSEL16
- CB_GETEDITSEL
);
2022 *pmsg16
= CB_GETEDITSEL16
;
2027 case LB_FINDSTRINGEXACT
:
2028 case LB_INSERTSTRING
:
2029 case LB_SELECTSTRING
:
2032 *plparam
= (LPARAM
)MapLS( (LPSTR
)*plparam
);
2033 *pmsg16
= (UINT16
)msg32
+ (LB_ADDSTRING16
- LB_ADDSTRING
);
2038 case CB_FINDSTRINGEXACT
:
2039 case CB_INSERTSTRING
:
2040 case CB_SELECTSTRING
:
2042 *plparam
= (LPARAM
)MapLS( (LPSTR
)*plparam
);
2043 *pmsg16
= (UINT16
)msg32
+ (CB_GETEDITSEL16
- CB_GETEDITSEL
);
2046 case LB_GETITEMRECT
:
2048 RECT16
*rect
= HeapAlloc( GetProcessHeap(), 0, sizeof(RECT16
) + sizeof(LPARAM
) );
2049 if (!rect
) return -1;
2050 *(LPARAM
*)(rect
+ 1) = *plparam
; /* Store the previous lParam */
2051 *plparam
= MapLS( rect
);
2053 *pmsg16
= LB_GETITEMRECT16
;
2055 case LB_GETSELITEMS
:
2058 *pwparam16
= (WPARAM16
)min( wParam32
, 0x7f80 ); /* Must be < 64K */
2059 if (!(items
= HeapAlloc( GetProcessHeap(), 0,
2060 *pwparam16
* sizeof(INT16
) + sizeof(LPARAM
)))) return -1;
2061 *((LPARAM
*)items
)++ = *plparam
; /* Store the previous lParam */
2062 *plparam
= MapLS( items
);
2064 *pmsg16
= LB_GETSELITEMS16
;
2066 case LB_SETTABSTOPS
:
2071 *pwparam16
= (WPARAM16
)min( wParam32
, 0x7f80 ); /* Must be < 64K */
2072 if (!(stops
= HeapAlloc( GetProcessHeap(), 0,
2073 *pwparam16
* sizeof(INT16
) + sizeof(LPARAM
)))) return -1;
2074 for (i
= 0; i
< *pwparam16
; i
++) stops
[i
] = *((LPINT
)*plparam
+i
);
2075 *plparam
= MapLS( stops
);
2078 *pmsg16
= LB_SETTABSTOPS16
;
2081 case CB_GETDROPPEDCONTROLRECT
:
2083 RECT16
*rect
= HeapAlloc( GetProcessHeap(), 0, sizeof(RECT16
) + sizeof(LPARAM
) );
2084 if (!rect
) return -1;
2085 *(LPARAM
*)(rect
+ 1) = *plparam
; /* Store the previous lParam */
2086 *plparam
= (LPARAM
)MapLS(rect
);
2088 *pmsg16
= CB_GETDROPPEDCONTROLRECT16
;
2092 *plparam
= (LPARAM
)MapLS( (LPVOID
)(*plparam
) );
2093 *pmsg16
= LB_GETTEXT16
;
2097 *plparam
= (LPARAM
)MapLS( (LPVOID
)(*plparam
) );
2098 *pmsg16
= CB_GETLBTEXT16
;
2103 *plparam
= MAKELONG( (INT16
)(INT
)wParam32
, (INT16
)*plparam
);
2104 *pmsg16
= EM_SETSEL16
;
2111 *plparam
= MAKELPARAM( (HWND16
)*plparam
, HIWORD(wParam32
) );
2115 *plparam
= MAKELPARAM( HIWORD(wParam32
), (HWND16
)*plparam
);
2117 case WM_CTLCOLORMSGBOX
:
2118 case WM_CTLCOLOREDIT
:
2119 case WM_CTLCOLORLISTBOX
:
2120 case WM_CTLCOLORBTN
:
2121 case WM_CTLCOLORDLG
:
2122 case WM_CTLCOLORSCROLLBAR
:
2123 case WM_CTLCOLORSTATIC
:
2124 *pmsg16
= WM_CTLCOLOR
;
2125 *plparam
= MAKELPARAM( (HWND16
)*plparam
,
2126 (WORD
)msg32
- WM_CTLCOLORMSGBOX
);
2128 case WM_COMPAREITEM
:
2130 COMPAREITEMSTRUCT
*cis32
= (COMPAREITEMSTRUCT
*)*plparam
;
2131 COMPAREITEMSTRUCT16
*cis
= HeapAlloc( GetProcessHeap(), 0, sizeof(COMPAREITEMSTRUCT16
));
2132 if (!cis
) return -1;
2133 cis
->CtlType
= (UINT16
)cis32
->CtlType
;
2134 cis
->CtlID
= (UINT16
)cis32
->CtlID
;
2135 cis
->hwndItem
= HWND_16( cis32
->hwndItem
);
2136 cis
->itemID1
= (UINT16
)cis32
->itemID1
;
2137 cis
->itemData1
= cis32
->itemData1
;
2138 cis
->itemID2
= (UINT16
)cis32
->itemID2
;
2139 cis
->itemData2
= cis32
->itemData2
;
2140 *plparam
= MapLS( cis
);
2145 DELETEITEMSTRUCT
*dis32
= (DELETEITEMSTRUCT
*)*plparam
;
2146 DELETEITEMSTRUCT16
*dis
= HeapAlloc( GetProcessHeap(), 0, sizeof(DELETEITEMSTRUCT16
) );
2147 if (!dis
) return -1;
2148 dis
->CtlType
= (UINT16
)dis32
->CtlType
;
2149 dis
->CtlID
= (UINT16
)dis32
->CtlID
;
2150 dis
->itemID
= (UINT16
)dis32
->itemID
;
2151 dis
->hwndItem
= (dis
->CtlType
== ODT_MENU
) ? (HWND16
)LOWORD(dis32
->hwndItem
)
2152 : HWND_16( dis32
->hwndItem
);
2153 dis
->itemData
= dis32
->itemData
;
2154 *plparam
= MapLS( dis
);
2159 DRAWITEMSTRUCT
*dis32
= (DRAWITEMSTRUCT
*)*plparam
;
2160 DRAWITEMSTRUCT16
*dis
= HeapAlloc( GetProcessHeap(), 0, sizeof(DRAWITEMSTRUCT16
) );
2161 if (!dis
) return -1;
2162 dis
->CtlType
= (UINT16
)dis32
->CtlType
;
2163 dis
->CtlID
= (UINT16
)dis32
->CtlID
;
2164 dis
->itemID
= (UINT16
)dis32
->itemID
;
2165 dis
->itemAction
= (UINT16
)dis32
->itemAction
;
2166 dis
->itemState
= (UINT16
)dis32
->itemState
;
2167 dis
->hwndItem
= HWND_16( dis32
->hwndItem
);
2168 dis
->hDC
= HDC_16(dis32
->hDC
);
2169 dis
->itemData
= dis32
->itemData
;
2170 CONV_RECT32TO16( &dis32
->rcItem
, &dis
->rcItem
);
2171 *plparam
= MapLS( dis
);
2174 case WM_MEASUREITEM
:
2176 MEASUREITEMSTRUCT
*mis32
= (MEASUREITEMSTRUCT
*)*plparam
;
2177 MEASUREITEMSTRUCT16
*mis
= HeapAlloc( GetProcessHeap(), 0, sizeof(*mis
)+sizeof(LPARAM
));
2178 if (!mis
) return -1;
2179 mis
->CtlType
= (UINT16
)mis32
->CtlType
;
2180 mis
->CtlID
= (UINT16
)mis32
->CtlID
;
2181 mis
->itemID
= (UINT16
)mis32
->itemID
;
2182 mis
->itemWidth
= (UINT16
)mis32
->itemWidth
;
2183 mis
->itemHeight
= (UINT16
)mis32
->itemHeight
;
2184 mis
->itemData
= mis32
->itemData
;
2185 *(LPARAM
*)(mis
+ 1) = *plparam
; /* Store the previous lParam */
2186 *plparam
= MapLS( mis
);
2189 case WM_GETMINMAXINFO
:
2191 MINMAXINFO16
*mmi
= HeapAlloc( GetProcessHeap(), 0, sizeof(*mmi
) + sizeof(LPARAM
) );
2192 if (!mmi
) return -1;
2193 STRUCT32_MINMAXINFO32to16( (MINMAXINFO
*)*plparam
, mmi
);
2194 *(LPARAM
*)(mmi
+ 1) = *plparam
; /* Store the previous lParam */
2195 *plparam
= MapLS( mmi
);
2199 case WM_ASKCBFORMATNAME
:
2202 *pwparam16
= (WPARAM16
)min( wParam32
, 0xff80 ); /* Must be < 64K */
2203 if (!(str
= HeapAlloc( GetProcessHeap(), 0, *pwparam16
+ sizeof(LPARAM
)))) return -1;
2204 *((LPARAM
*)str
)++ = *plparam
; /* Store the previous lParam */
2205 *plparam
= MapLS( str
);
2210 MDICREATESTRUCT16
*cs
;
2211 MDICREATESTRUCTA
*cs32
= (MDICREATESTRUCTA
*)*plparam
;
2213 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(MDICREATESTRUCT16
) ))) return -1;
2214 STRUCT32_MDICREATESTRUCT32Ato16( cs32
, cs
);
2215 cs
->szTitle
= MapLS( cs32
->szTitle
);
2216 cs
->szClass
= MapLS( cs32
->szClass
);
2217 *plparam
= MapLS( cs
);
2220 case WM_MDIGETACTIVE
:
2223 *plparam
= MAKELPARAM( (HMENU16
)LOWORD(wParam32
),
2224 (HMENU16
)LOWORD(*plparam
) );
2225 *pwparam16
= (*plparam
== 0);
2228 if(HIWORD(wParam32
) & MF_POPUP
)
2231 if (((UINT
)HIWORD(wParam32
) != 0xFFFF) || (*plparam
))
2233 if((hmenu
= GetSubMenu((HMENU
)*plparam
, *pwparam16
)))
2234 *pwparam16
=HMENU_16(hmenu
);
2239 *plparam
= MAKELPARAM( HIWORD(wParam32
), (HMENU16
)*plparam
);
2241 case WM_MDIACTIVATE
:
2242 if (GetWindowLongW( hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2244 *pwparam16
= ((HWND
)*plparam
== hwnd
);
2245 *plparam
= MAKELPARAM( (HWND16
)LOWORD(*plparam
),
2246 (HWND16
)LOWORD(wParam32
) );
2250 *pwparam16
= HWND_16( (HWND
)wParam32
);
2256 NCCALCSIZE_PARAMS
*nc32
= (NCCALCSIZE_PARAMS
*)*plparam
;
2257 NCCALCSIZE_PARAMS16
*nc
= HeapAlloc( GetProcessHeap(), 0, sizeof(*nc
) + sizeof(LPARAM
));
2260 CONV_RECT32TO16( &nc32
->rgrc
[0], &nc
->rgrc
[0] );
2264 CONV_RECT32TO16( &nc32
->rgrc
[1], &nc
->rgrc
[1] );
2265 CONV_RECT32TO16( &nc32
->rgrc
[2], &nc
->rgrc
[2] );
2266 if (!(wp
= HeapAlloc( GetProcessHeap(), 0, sizeof(WINDOWPOS16
) )))
2268 HeapFree( GetProcessHeap(), 0, nc
);
2271 STRUCT32_WINDOWPOS32to16( nc32
->lppos
, wp
);
2272 nc
->lppos
= MapLS( wp
);
2274 *(LPARAM
*)(nc
+ 1) = *plparam
; /* Store the previous lParam */
2275 *plparam
= MapLS( nc
);
2282 CREATESTRUCTA
*cs32
= (CREATESTRUCTA
*)*plparam
;
2284 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(CREATESTRUCT16
) ))) return -1;
2285 STRUCT32_CREATESTRUCT32Ato16( cs32
, cs
);
2286 cs
->lpszName
= MapLS( cs32
->lpszName
);
2287 cs
->lpszClass
= MapLS( cs32
->lpszClass
);
2289 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2291 MDICREATESTRUCT16
*mdi_cs16
;
2292 MDICREATESTRUCTA
*mdi_cs
= (MDICREATESTRUCTA
*)cs32
->lpCreateParams
;
2293 mdi_cs16
= HeapAlloc(GetProcessHeap(), 0, sizeof(*mdi_cs16
));
2296 HeapFree(GetProcessHeap(), 0, cs
);
2299 STRUCT32_MDICREATESTRUCT32Ato16(mdi_cs
, mdi_cs16
);
2300 mdi_cs16
->szTitle
= MapLS( mdi_cs
->szTitle
);
2301 mdi_cs16
->szClass
= MapLS( mdi_cs
->szClass
);
2302 cs
->lpCreateParams
= MapLS( mdi_cs16
);
2304 *plparam
= MapLS( cs
);
2307 case WM_PARENTNOTIFY
:
2308 if ((LOWORD(wParam32
)==WM_CREATE
) || (LOWORD(wParam32
)==WM_DESTROY
))
2309 *plparam
= MAKELPARAM( (HWND16
)*plparam
, HIWORD(wParam32
));
2310 /* else nothing to do */
2313 *plparam
= MapLS( (NMHDR
*)*plparam
); /* NMHDR is already 32-bit */
2316 case WM_WININICHANGE
:
2317 case WM_DEVMODECHANGE
:
2318 *plparam
= MapLS( (LPSTR
)*plparam
);
2320 case WM_WINDOWPOSCHANGING
:
2321 case WM_WINDOWPOSCHANGED
:
2323 WINDOWPOS16
*wp
= HeapAlloc( GetProcessHeap(), 0, sizeof(*wp
) + sizeof(LPARAM
) );
2325 STRUCT32_WINDOWPOS32to16( (WINDOWPOS
*)*plparam
, wp
);
2326 *(LPARAM
*)(wp
+ 1) = *plparam
; /* Store the previous lParam */
2327 *plparam
= MapLS( wp
);
2332 LPMSG msg32
= (LPMSG
) *plparam
;
2333 LPMSG16 msg16
= HeapAlloc( GetProcessHeap(), 0, sizeof(MSG16
) );
2335 if (!msg16
) return -1;
2336 msg16
->hwnd
= HWND_16( msg32
->hwnd
);
2337 msg16
->lParam
= msg32
->lParam
;
2338 msg16
->time
= msg32
->time
;
2339 CONV_POINT32TO16(&msg32
->pt
,&msg16
->pt
);
2340 /* this is right, right? */
2341 if (WINPROC_MapMsg32ATo16(msg32
->hwnd
,msg32
->message
,msg32
->wParam
,
2342 &msg16
->message
,&msg16
->wParam
, &msg16
->lParam
)<0)
2344 HeapFree( GetProcessHeap(), 0, msg16
);
2347 *plparam
= MapLS( msg16
);
2352 case WM_ACTIVATEAPP
:
2353 if (*plparam
) *plparam
= HTASK_16( (HANDLE
)*plparam
);
2357 MDINEXTMENU
*next
= (MDINEXTMENU
*)*plparam
;
2358 *plparam
= (LPARAM
)next
->hmenuIn
;
2361 case WM_PAINTCLIPBOARD
:
2362 case WM_SIZECLIPBOARD
:
2363 FIXME_(msg
)("message %04x needs translation\n", msg32
);
2365 /* following messages should not be sent to 16-bit apps */
2368 case WM_CAPTURECHANGED
:
2369 case WM_STYLECHANGING
:
2370 case WM_STYLECHANGED
:
2372 case WM_DDE_INITIATE
:
2373 case WM_DDE_TERMINATE
:
2374 case WM_DDE_UNADVISE
:
2375 case WM_DDE_REQUEST
:
2376 *pwparam16
= HWND_16((HWND
)wParam32
);
2385 *pwparam16
= HWND_16((HWND
)wParam32
);
2386 UnpackDDElParam(msg32
, *plparam
, &lo32
, &hi
);
2387 if (lo32
&& !(lo16
= convert_handle_32_to_16(lo32
, GMEM_DDESHARE
)))
2389 *plparam
= MAKELPARAM(lo16
, hi
);
2391 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
2398 *pwparam16
= HWND_16((HWND
)wParam32
);
2400 UnpackDDElParam(msg32
, *plparam
, &lo
, &hi
);
2402 if (GlobalGetAtomNameA((ATOM
)hi
, buf
, sizeof(buf
)) > 0) flag
|= 1;
2403 if (GlobalSize((HANDLE
)hi
) != 0) flag
|= 2;
2409 MESSAGE("DDE_ACK: neither atom nor handle!!!\n");
2414 break; /* atom, nothing to do */
2416 MESSAGE("DDE_ACK: %x both atom and handle... choosing handle\n", hi
);
2419 hi
= convert_handle_32_to_16(hi
, GMEM_DDESHARE
);
2422 *plparam
= MAKELPARAM(lo
, hi
);
2424 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
2425 case WM_DDE_EXECUTE
:
2426 *plparam
= convert_handle_32_to_16(*plparam
, GMEM_DDESHARE
);
2427 return 0; /* FIXME don't know how to free allocated memory (handle) !! */
2428 default: /* No translation needed */
2434 /**********************************************************************
2435 * WINPROC_UnmapMsg32ATo16
2437 * Unmap a message that was mapped from 32-bit Ansi to 16-bit.
2439 void WINPROC_UnmapMsg32ATo16( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
2448 case LB_FINDSTRINGEXACT
:
2449 case LB_INSERTSTRING
:
2450 case LB_SELECTSTRING
:
2454 case CB_FINDSTRINGEXACT
:
2455 case CB_INSERTSTRING
:
2456 case CB_SELECTSTRING
:
2460 case WM_WININICHANGE
:
2461 case WM_DEVMODECHANGE
:
2462 UnMapLS( (SEGPTR
)p16
->lParam
);
2464 case LB_SETTABSTOPS
:
2465 case WM_COMPAREITEM
:
2469 void *ptr
= MapSL( p16
->lParam
);
2470 UnMapLS( p16
->lParam
);
2471 HeapFree( GetProcessHeap(), 0, ptr
);
2474 case CB_GETDROPPEDCONTROLRECT
:
2475 case LB_GETITEMRECT
:
2477 RECT16
*rect
= MapSL(p16
->lParam
);
2478 UnMapLS( p16
->lParam
);
2479 p16
->lParam
= *(LPARAM
*)(rect
+ 1);
2480 CONV_RECT16TO32( rect
, (RECT
*)(p16
->lParam
));
2481 HeapFree( GetProcessHeap(), 0, rect
);
2484 case LB_GETSELITEMS
:
2487 LPINT16 items
= MapSL(p16
->lParam
);
2488 UnMapLS( p16
->lParam
);
2489 p16
->lParam
= *((LPARAM
*)items
- 1);
2490 for (i
= 0; i
< p16
->wParam
; i
++) *((LPINT
)(p16
->lParam
) + i
) = items
[i
];
2491 HeapFree( GetProcessHeap(), 0, (LPARAM
*)items
- 1 );
2497 *((PUINT
)(wParam
)) = LOWORD(p16
->lResult
);
2499 *((PUINT
)(lParam
)) = HIWORD(p16
->lResult
); /* FIXME: substract 1? */
2502 case WM_MEASUREITEM
:
2504 MEASUREITEMSTRUCT16
*mis
= MapSL(p16
->lParam
);
2505 MEASUREITEMSTRUCT
*mis32
= *(MEASUREITEMSTRUCT
**)(mis
+ 1);
2506 mis32
->itemWidth
= mis
->itemWidth
;
2507 mis32
->itemHeight
= mis
->itemHeight
;
2508 UnMapLS( p16
->lParam
);
2509 HeapFree( GetProcessHeap(), 0, mis
);
2512 case WM_GETMINMAXINFO
:
2514 MINMAXINFO16
*mmi
= MapSL(p16
->lParam
);
2515 UnMapLS( p16
->lParam
);
2516 p16
->lParam
= *(LPARAM
*)(mmi
+ 1);
2517 STRUCT32_MINMAXINFO16to32( mmi
, (MINMAXINFO
*)(p16
->lParam
) );
2518 HeapFree( GetProcessHeap(), 0, mmi
);
2522 case WM_ASKCBFORMATNAME
:
2524 LPSTR str
= MapSL(p16
->lParam
);
2525 UnMapLS( p16
->lParam
);
2526 p16
->lParam
= *((LPARAM
*)str
- 1);
2527 lstrcpynA( (LPSTR
)(p16
->lParam
), str
, p16
->wParam
);
2528 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
- 1 );
2533 MDICREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2534 UnMapLS( cs
->szTitle
);
2535 UnMapLS( cs
->szClass
);
2536 UnMapLS( p16
->lParam
);
2537 HeapFree( GetProcessHeap(), 0, cs
);
2540 case WM_MDIGETACTIVE
:
2541 if (lParam
) *(BOOL
*)lParam
= (BOOL16
)HIWORD(p16
->lResult
);
2542 p16
->lResult
= (LRESULT
)WIN_Handle32( LOWORD(p16
->lResult
) );
2546 NCCALCSIZE_PARAMS
*nc32
;
2547 NCCALCSIZE_PARAMS16
*nc
= MapSL(p16
->lParam
);
2548 UnMapLS( p16
->lParam
);
2549 p16
->lParam
= *(LPARAM
*)(nc
+ 1);
2550 nc32
= (NCCALCSIZE_PARAMS
*)(p16
->lParam
);
2551 CONV_RECT16TO32( &nc
->rgrc
[0], &nc32
->rgrc
[0] );
2554 WINDOWPOS16
*pos
= MapSL(nc
->lppos
);
2555 UnMapLS( nc
->lppos
);
2556 CONV_RECT16TO32( &nc
->rgrc
[1], &nc32
->rgrc
[1] );
2557 CONV_RECT16TO32( &nc
->rgrc
[2], &nc32
->rgrc
[2] );
2558 STRUCT32_WINDOWPOS16to32( pos
, nc32
->lppos
);
2559 HeapFree( GetProcessHeap(), 0, pos
);
2561 HeapFree( GetProcessHeap(), 0, nc
);
2567 CREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2568 UnMapLS( p16
->lParam
);
2569 UnMapLS( cs
->lpszName
);
2570 UnMapLS( cs
->lpszClass
);
2571 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2573 MDICREATESTRUCT16
*mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs
->lpCreateParams
);
2574 UnMapLS( cs
->lpCreateParams
);
2575 UnMapLS( mdi_cs16
->szTitle
);
2576 UnMapLS( mdi_cs16
->szClass
);
2577 HeapFree(GetProcessHeap(), 0, mdi_cs16
);
2579 HeapFree( GetProcessHeap(), 0, cs
);
2582 case WM_WINDOWPOSCHANGING
:
2583 case WM_WINDOWPOSCHANGED
:
2585 WINDOWPOS16
*wp
= MapSL(p16
->lParam
);
2586 UnMapLS( p16
->lParam
);
2587 p16
->lParam
= *(LPARAM
*)(wp
+ 1);
2588 STRUCT32_WINDOWPOS16to32( wp
, (WINDOWPOS
*)p16
->lParam
);
2589 HeapFree( GetProcessHeap(), 0, wp
);
2593 UnMapLS(p16
->lParam
);
2598 LPMSG16 msg16
= MapSL(p16
->lParam
);
2600 UnMapLS( p16
->lParam
);
2601 msgp16
.wParam
=msg16
->wParam
;
2602 msgp16
.lParam
=msg16
->lParam
;
2603 WINPROC_UnmapMsg32ATo16(((LPMSG
)lParam
)->hwnd
, ((LPMSG
)lParam
)->message
,
2604 ((LPMSG
)lParam
)->wParam
, ((LPMSG
)lParam
)->lParam
,
2606 HeapFree( GetProcessHeap(), 0, msg16
);
2611 MDINEXTMENU
*next
= (MDINEXTMENU
*)lParam
;
2612 next
->hmenuNext
= HMENU_32( LOWORD(p16
->lResult
) );
2613 next
->hwndNext
= WIN_Handle32( HIWORD(p16
->lResult
) );
2621 /**********************************************************************
2622 * WINPROC_MapMsg32WTo16
2624 * Map a message from 32-bit Unicode to 16-bit.
2625 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
2627 INT
WINPROC_MapMsg32WTo16( HWND hwnd
, UINT msg32
, WPARAM wParam32
,
2628 UINT16
*pmsg16
, WPARAM16
*pwparam16
,
2634 *pmsg16
= LOWORD(msg32
);
2635 *pwparam16
= LOWORD(wParam32
);
2640 case LB_FINDSTRINGEXACT
:
2641 case LB_INSERTSTRING
:
2642 case LB_SELECTSTRING
:
2645 *plparam
= map_str_32W_to_16( (LPWSTR
)*plparam
);
2646 *pmsg16
= (UINT16
)msg32
+ (LB_ADDSTRING16
- LB_ADDSTRING
);
2651 case CB_FINDSTRINGEXACT
:
2652 case CB_INSERTSTRING
:
2653 case CB_SELECTSTRING
:
2655 *plparam
= map_str_32W_to_16( (LPWSTR
)*plparam
);
2656 *pmsg16
= (UINT16
)msg32
+ (CB_ADDSTRING16
- CB_ADDSTRING
);
2663 CREATESTRUCTW
*cs32
= (CREATESTRUCTW
*)*plparam
;
2665 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(CREATESTRUCT16
) ))) return -1;
2666 STRUCT32_CREATESTRUCT32Ato16( (CREATESTRUCTA
*)cs32
, cs
);
2667 cs
->lpszName
= map_str_32W_to_16( cs32
->lpszName
);
2668 cs
->lpszClass
= map_str_32W_to_16( cs32
->lpszClass
);
2670 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2672 MDICREATESTRUCT16
*mdi_cs16
;
2673 MDICREATESTRUCTW
*mdi_cs
= (MDICREATESTRUCTW
*)cs32
->lpCreateParams
;
2674 mdi_cs16
= HeapAlloc(GetProcessHeap(), 0, sizeof(*mdi_cs16
));
2677 HeapFree(GetProcessHeap(), 0, cs
);
2680 STRUCT32_MDICREATESTRUCT32Ato16((MDICREATESTRUCTA
*)mdi_cs
, mdi_cs16
);
2681 mdi_cs16
->szTitle
= map_str_32W_to_16(mdi_cs
->szTitle
);
2682 mdi_cs16
->szClass
= map_str_32W_to_16(mdi_cs
->szClass
);
2683 cs
->lpCreateParams
= MapLS(mdi_cs16
);
2685 *plparam
= MapLS(cs
);
2690 MDICREATESTRUCT16
*cs
;
2691 MDICREATESTRUCTW
*cs32
= (MDICREATESTRUCTW
*)*plparam
;
2693 if (!(cs
= HeapAlloc( GetProcessHeap(), 0, sizeof(MDICREATESTRUCT16
) ))) return -1;
2694 STRUCT32_MDICREATESTRUCT32Ato16( (MDICREATESTRUCTA
*)cs32
, cs
);
2695 cs
->szTitle
= map_str_32W_to_16( cs32
->szTitle
);
2696 cs
->szClass
= map_str_32W_to_16( cs32
->szClass
);
2697 *plparam
= MapLS(cs
);
2701 case WM_WININICHANGE
:
2702 case WM_DEVMODECHANGE
:
2703 *plparam
= map_str_32W_to_16( (LPWSTR
)*plparam
);
2706 if ( WINPROC_TestLBForStr( hwnd
))
2708 LPSTR str
= HeapAlloc( GetProcessHeap(), 0, 256 ); /* FIXME: fixed sized buffer */
2709 if (!str
) return -1;
2710 *pmsg16
= LB_GETTEXT16
;
2711 *plparam
= (LPARAM
)MapLS(str
);
2715 if ( WINPROC_TestCBForStr( hwnd
))
2717 LPSTR str
= HeapAlloc( GetProcessHeap(), 0, 256 ); /* FIXME: fixed sized buffer */
2718 if (!str
) return -1;
2719 *pmsg16
= CB_GETLBTEXT16
;
2720 *plparam
= (LPARAM
)MapLS(str
);
2725 wch
= LOWORD(wParam32
);
2726 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
2728 *plparam
= MAKELPARAM( (HWND16
)*plparam
, HIWORD(wParam32
) );
2731 wch
= LOWORD(wParam32
);
2732 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
2734 *plparam
= MAKELPARAM( HIWORD(wParam32
), (HMENU16
)*plparam
);
2739 case WM_SYSDEADCHAR
:
2741 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, &ch
, 1, NULL
, NULL
);
2749 if (WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, ch
, 2, NULL
, NULL
) == 2)
2750 *pwparam16
= (ch
[0] << 8) | ch
[1];
2756 default: /* No Unicode translation needed (?) */
2757 return WINPROC_MapMsg32ATo16( hwnd
, msg32
, wParam32
, pmsg16
,
2758 pwparam16
, plparam
);
2763 /**********************************************************************
2764 * WINPROC_UnmapMsg32WTo16
2766 * Unmap a message that was mapped from 32-bit Unicode to 16-bit.
2768 void WINPROC_UnmapMsg32WTo16( HWND hwnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
,
2775 case LB_FINDSTRINGEXACT
:
2776 case LB_INSERTSTRING
:
2777 case LB_SELECTSTRING
:
2782 case CB_FINDSTRINGEXACT
:
2783 case CB_INSERTSTRING
:
2784 case CB_SELECTSTRING
:
2787 case WM_WININICHANGE
:
2788 case WM_DEVMODECHANGE
:
2789 unmap_str_32W_to_16( p16
->lParam
);
2794 CREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2795 UnMapLS( p16
->lParam
);
2796 unmap_str_32W_to_16( cs
->lpszName
);
2797 unmap_str_32W_to_16( cs
->lpszClass
);
2799 if (GetWindowLongW(hwnd
, GWL_EXSTYLE
) & WS_EX_MDICHILD
)
2801 MDICREATESTRUCT16
*mdi_cs16
= (MDICREATESTRUCT16
*)MapSL(cs
->lpCreateParams
);
2802 UnMapLS( cs
->lpCreateParams
);
2803 unmap_str_32W_to_16(mdi_cs16
->szTitle
);
2804 unmap_str_32W_to_16(mdi_cs16
->szClass
);
2805 HeapFree(GetProcessHeap(), 0, mdi_cs16
);
2807 HeapFree( GetProcessHeap(), 0, cs
);
2812 MDICREATESTRUCT16
*cs
= MapSL(p16
->lParam
);
2813 UnMapLS( p16
->lParam
);
2814 unmap_str_32W_to_16( cs
->szTitle
);
2815 unmap_str_32W_to_16( cs
->szClass
);
2816 HeapFree( GetProcessHeap(), 0, cs
);
2820 case WM_ASKCBFORMATNAME
:
2822 LPSTR str
= MapSL(p16
->lParam
);
2823 UnMapLS( p16
->lParam
);
2824 p16
->lParam
= *((LPARAM
*)str
- 1);
2825 MultiByteToWideChar( CP_ACP
, 0, str
, -1, (LPWSTR
)p16
->lParam
, 0x7fffffff );
2826 p16
->lResult
= strlenW( (LPWSTR
)p16
->lParam
);
2827 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
- 1 );
2831 if ( WINPROC_TestLBForStr( hwnd
))
2833 LPSTR str
= MapSL(p16
->lParam
);
2834 UnMapLS( p16
->lParam
);
2835 p16
->lResult
= MultiByteToWideChar( CP_ACP
, 0, str
, -1, (LPWSTR
)lParam
, 0x7fffffff ) - 1;
2836 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
);
2840 if ( WINPROC_TestCBForStr( hwnd
))
2842 LPSTR str
= MapSL(p16
->lParam
);
2843 UnMapLS( p16
->lParam
);
2844 p16
->lResult
= MultiByteToWideChar( CP_ACP
, 0, str
, -1, (LPWSTR
)lParam
, 0x7fffffff ) - 1;
2845 HeapFree( GetProcessHeap(), 0, (LPARAM
*)str
);
2849 WINPROC_UnmapMsg32ATo16( hwnd
, msg
, wParam
, lParam
, p16
);
2855 /**********************************************************************
2856 * WINPROC_CallProc32ATo32W
2858 * Call a window procedure, translating args from Ansi to Unicode.
2860 static LRESULT
WINPROC_CallProc32ATo32W( WNDPROC func
, HWND hwnd
,
2861 UINT msg
, WPARAM wParam
,
2867 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
2868 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2870 if( (unmap
= WINPROC_MapMsg32ATo32W( hwnd
, msg
, &wParam
, &lParam
)) == -1) {
2871 ERR_(msg
)("Message translation failed. (msg=%s,wp=%08x,lp=%08lx)\n",
2872 SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2875 result
= WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
2876 if (unmap
) result
= WINPROC_UnmapMsg32ATo32W( hwnd
, msg
, wParam
, lParam
, result
);
2881 /**********************************************************************
2882 * WINPROC_CallProc32WTo32A
2884 * Call a window procedure, translating args from Unicode to Ansi.
2886 static LRESULT
WINPROC_CallProc32WTo32A( WNDPROC func
, HWND hwnd
,
2887 UINT msg
, WPARAM wParam
,
2893 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
2894 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2896 if ((unmap
= WINPROC_MapMsg32WTo32A( hwnd
, msg
, &wParam
, &lParam
)) == -1) {
2897 ERR_(msg
)("Message translation failed. (msg=%s,wp=%08x,lp=%08lx)\n",
2898 SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2901 result
= WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
2902 if( unmap
) result
= WINPROC_UnmapMsg32WTo32A( hwnd
, msg
, wParam
, lParam
, result
);
2907 /**********************************************************************
2908 * __wine_call_wndproc_32A (USER.1010)
2910 LRESULT WINAPI
__wine_call_wndproc_32A( HWND16 hwnd
, UINT16 msg
, WPARAM16 wParam
, LPARAM lParam
,
2916 HWND hwnd32
= WIN_Handle32( hwnd
);
2918 if (WINPROC_MapMsg16To32A( hwnd32
, msg
, wParam
, &msg32
, &wParam32
, &lParam
) == -1)
2920 result
= WINPROC_CallWndProc( func
, hwnd32
, msg32
, wParam32
, lParam
);
2921 return WINPROC_UnmapMsg16To32A( hwnd32
, msg32
, wParam32
, lParam
, result
);
2925 /**********************************************************************
2926 * __wine_call_wndproc_32W (USER.1011)
2928 LRESULT WINAPI
__wine_call_wndproc_32W( HWND16 hwnd
, UINT16 msg
, WPARAM16 wParam
, LPARAM lParam
,
2934 HWND hwnd32
= WIN_Handle32( hwnd
);
2936 if (WINPROC_MapMsg16To32W( hwnd32
, msg
, wParam
, &msg32
, &wParam32
, &lParam
) == -1)
2938 result
= WINPROC_CallWndProc( func
, hwnd32
, msg32
, wParam32
, lParam
);
2939 return WINPROC_UnmapMsg16To32W( hwnd32
, msg32
, wParam32
, lParam
, result
);
2943 /**********************************************************************
2944 * WINPROC_CallProc32ATo16
2946 * Call a 16-bit window procedure, translating the 32-bit args.
2948 static LRESULT WINAPI
WINPROC_CallProc32ATo16( WNDPROC16 func
, HWND hwnd
,
2949 UINT msg
, WPARAM wParam
,
2955 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
2956 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2958 mp16
.lParam
= lParam
;
2959 if (WINPROC_MapMsg32ATo16( hwnd
, msg
, wParam
, &msg16
, &mp16
.wParam
, &mp16
.lParam
) == -1)
2961 mp16
.lResult
= WINPROC_CallWndProc16( func
, HWND_16(hwnd
), msg16
,
2962 mp16
.wParam
, mp16
.lParam
);
2963 WINPROC_UnmapMsg32ATo16( hwnd
, msg
, wParam
, lParam
, &mp16
);
2964 return mp16
.lResult
;
2968 /**********************************************************************
2969 * WINPROC_CallProc32WTo16
2971 * Call a 16-bit window procedure, translating the 32-bit args.
2973 static LRESULT WINAPI
WINPROC_CallProc32WTo16( WNDPROC16 func
, HWND hwnd
,
2974 UINT msg
, WPARAM wParam
,
2980 TRACE_(msg
)("func %p (hwnd=%p,msg=%s,wp=%08x,lp=%08lx)\n",
2981 func
, hwnd
, SPY_GetMsgName(msg
, hwnd
), wParam
, lParam
);
2983 mp16
.lParam
= lParam
;
2984 if (WINPROC_MapMsg32WTo16( hwnd
, msg
, wParam
, &msg16
, &mp16
.wParam
,
2985 &mp16
.lParam
) == -1)
2987 mp16
.lResult
= WINPROC_CallWndProc16( func
, HWND_16(hwnd
), msg16
,
2988 mp16
.wParam
, mp16
.lParam
);
2989 WINPROC_UnmapMsg32WTo16( hwnd
, msg
, wParam
, lParam
, &mp16
);
2990 return mp16
.lResult
;
2994 /**********************************************************************
2995 * CallWindowProc (USER.122)
2997 LRESULT WINAPI
CallWindowProc16( WNDPROC16 func
, HWND16 hwnd
, UINT16 msg
,
2998 WPARAM16 wParam
, LPARAM lParam
)
3002 if (!func
) return 0;
3004 if (!(proc
= WINPROC_GetPtr( (WNDPROC
)func
)))
3005 return WINPROC_CallWndProc16( func
, hwnd
, msg
, wParam
, lParam
);
3008 func
= WINPROC_GetProc( (WNDPROC
)proc
, WIN_PROC_16
);
3009 return WINPROC_CallWndProc16( func
, hwnd
, msg
, wParam
, lParam
);
3015 if (!proc
->thunk
.t_from32
.proc
) return 0;
3016 return WINPROC_CallWndProc16( proc
->thunk
.t_from32
.proc
,
3017 hwnd
, msg
, wParam
, lParam
);
3019 if (!proc
->thunk
.t_from16
.proc
) return 0;
3020 return __wine_call_wndproc_32A( hwnd
, msg
, wParam
, lParam
, proc
->thunk
.t_from16
.proc
);
3022 if (!proc
->thunk
.t_from16
.proc
) return 0;
3023 return __wine_call_wndproc_32W( hwnd
, msg
, wParam
, lParam
, proc
->thunk
.t_from16
.proc
);
3025 WARN_(relay
)("Invalid proc %p\n", proc
);
3031 /**********************************************************************
3032 * CallWindowProcA (USER32.@)
3034 * The CallWindowProc() function invokes the windows procedure _func_,
3035 * with _hwnd_ as the target window, the message specified by _msg_, and
3036 * the message parameters _wParam_ and _lParam_.
3038 * Some kinds of argument conversion may be done, I'm not sure what.
3040 * CallWindowProc() may be used for windows subclassing. Use
3041 * SetWindowLong() to set a new windows procedure for windows of the
3042 * subclass, and handle subclassed messages in the new windows
3043 * procedure. The new windows procedure may then use CallWindowProc()
3044 * with _func_ set to the parent class's windows procedure to dispatch
3045 * the message to the superclass.
3049 * The return value is message dependent.
3055 LRESULT WINAPI
CallWindowProcA(
3056 WNDPROC func
, /* [in] window procedure */
3057 HWND hwnd
, /* [in] target window */
3058 UINT msg
, /* [in] message */
3059 WPARAM wParam
, /* [in] message dependent parameter */
3060 LPARAM lParam
/* [in] message dependent parameter */
3064 if (!func
) return 0;
3066 if (!(proc
= WINPROC_GetPtr( func
)))
3067 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3070 func
= WINPROC_GetProc( (WNDPROC
)proc
, WIN_PROC_32A
);
3071 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3077 if (!proc
->thunk
.t_from32
.proc
) return 0;
3078 return WINPROC_CallProc32ATo16( proc
->thunk
.t_from32
.proc
,
3079 hwnd
, msg
, wParam
, lParam
);
3081 if (!proc
->thunk
.t_from16
.proc
) return 0;
3082 return WINPROC_CallWndProc( proc
->thunk
.t_from16
.proc
,
3083 hwnd
, msg
, wParam
, lParam
);
3085 if (!proc
->thunk
.t_from16
.proc
) return 0;
3086 return WINPROC_CallProc32ATo32W( proc
->thunk
.t_from16
.proc
,
3087 hwnd
, msg
, wParam
, lParam
);
3089 WARN_(relay
)("Invalid proc %p\n", proc
);
3095 /**********************************************************************
3096 * CallWindowProcW (USER32.@)
3098 LRESULT WINAPI
CallWindowProcW( WNDPROC func
, HWND hwnd
, UINT msg
,
3099 WPARAM wParam
, LPARAM lParam
)
3103 if (!func
) return 0;
3105 if (!(proc
= WINPROC_GetPtr( (WNDPROC
)func
)))
3106 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3109 func
= WINPROC_GetProc( (WNDPROC
)proc
, WIN_PROC_32W
);
3110 return WINPROC_CallWndProc( func
, hwnd
, msg
, wParam
, lParam
);
3116 if (!proc
->thunk
.t_from32
.proc
) return 0;
3117 return WINPROC_CallProc32WTo16( proc
->thunk
.t_from32
.proc
,
3118 hwnd
, msg
, wParam
, lParam
);
3120 if (!proc
->thunk
.t_from16
.proc
) return 0;
3121 return WINPROC_CallProc32WTo32A( proc
->thunk
.t_from16
.proc
,
3122 hwnd
, msg
, wParam
, lParam
);
3124 if (!proc
->thunk
.t_from16
.proc
) return 0;
3125 return WINPROC_CallWndProc( proc
->thunk
.t_from16
.proc
,
3126 hwnd
, msg
, wParam
, lParam
);
3128 WARN_(relay
)("Invalid proc %p\n", proc
);