blob: 1681dbece242c9635854d1a9cf0a54e0347fa24c [file] [log] [blame]
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001/*
2 * Window procedure callbacks
3 *
4 * Copyright 1995 Martin von Loewis
5 * Copyright 1996 Alexandre Julliard
6 */
7
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00008#include <string.h>
Marcus Meissner61afa331999-02-22 10:16:00 +00009#include "wine/winbase16.h"
10#include "winuser.h"
Ulrich Weigandc50a1d01999-08-15 12:45:01 +000011#include "stackframe.h"
12#include "builtin16.h"
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +000013#include "heap.h"
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000014#include "selectors.h"
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +000015#include "struct32.h"
16#include "win.h"
Alexandre Julliard2d93d001996-05-21 15:01:41 +000017#include "winproc.h"
Alexandre Julliard06c275a1999-05-02 14:32:27 +000018#include "debugtools.h"
Alexandre Julliardd30dfd21998-09-27 18:28:36 +000019#include "spy.h"
Juergen Schmied4a84dc21998-10-23 12:04:25 +000020#include "commctrl.h"
Alexandre Julliard638f1691999-01-17 16:32:32 +000021#include "task.h"
22#include "thread.h"
Alexandre Julliard2d93d001996-05-21 15:01:41 +000023
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000024DECLARE_DEBUG_CHANNEL(msg)
25DECLARE_DEBUG_CHANNEL(relay)
26DECLARE_DEBUG_CHANNEL(win)
27
Alexandre Julliard889f7421997-04-15 17:19:52 +000028/* Window procedure 16-to-32-bit thunk,
Alexandre Julliarddf2673b1997-03-29 17:20:20 +000029 * see BuildSpec16Files() in tools/build.c */
30
Ulrich Weigandc50a1d01999-08-15 12:45:01 +000031#include "pshpack1.h"
Alexandre Julliard2d93d001996-05-21 15:01:41 +000032typedef struct
33{
Ulrich Weigandc50a1d01999-08-15 12:45:01 +000034 WORD pushw_bp; /* pushw %bp */
Alexandre Julliard3051b641996-07-05 17:14:13 +000035 BYTE pushl_func; /* pushl $proc */
Ulrich Weigandc50a1d01999-08-15 12:45:01 +000036 WNDPROC proc;
37 WORD pushw_ax; /* pushw %ax */
38 BYTE pushl_relay; /* pushl $relay */
39 void (*relay)(); /* WINPROC_Thunk16To32A/W() */
40 BYTE lcall; /* lcall cs:glue */
41 void (*glue)(); /* CallFrom16Long */
42 WORD cs; /* __FLATCS */
43 WORD lret; /* lret $10 */
44 WORD nArgs;
Alexandre Julliard3051b641996-07-05 17:14:13 +000045} WINPROC_THUNK_FROM16;
Ulrich Weigandc50a1d01999-08-15 12:45:01 +000046#include "poppack.h"
Alexandre Julliard3051b641996-07-05 17:14:13 +000047
Alexandre Julliarddf2673b1997-03-29 17:20:20 +000048/* Window procedure 32-to-16-bit thunk,
49 * see BuildSpec32Files() in tools/build.c */
50
Alexandre Julliard3051b641996-07-05 17:14:13 +000051typedef struct
52{
53 BYTE popl_eax; /* popl %eax (return address) */
Alexandre Julliardca22b331996-07-12 19:02:39 +000054 BYTE pushl_func; /* pushl $proc */
Alexandre Julliard3051b641996-07-05 17:14:13 +000055 WNDPROC16 proc WINE_PACKED;
56 BYTE pushl_eax; /* pushl %eax */
Alexandre Julliardca22b331996-07-12 19:02:39 +000057 BYTE jmp; /* jmp relay (relative jump)*/
Alexandre Julliarddf2673b1997-03-29 17:20:20 +000058 void (*relay)() WINE_PACKED; /* WINPROC_CallProc32ATo16() */
Alexandre Julliard3051b641996-07-05 17:14:13 +000059} WINPROC_THUNK_FROM32;
60
Alexandre Julliardca22b331996-07-12 19:02:39 +000061/* Simple jmp to call 32-bit procedure directly */
62typedef struct
63{
64 BYTE jmp; /* jmp proc (relative jump) */
Alexandre Julliarda3960291999-02-26 11:11:13 +000065 WNDPROC proc WINE_PACKED;
Alexandre Julliardca22b331996-07-12 19:02:39 +000066} WINPROC_JUMP;
67
Alexandre Julliard3051b641996-07-05 17:14:13 +000068typedef union
69{
70 WINPROC_THUNK_FROM16 t_from16;
71 WINPROC_THUNK_FROM32 t_from32;
72} WINPROC_THUNK;
73
74typedef struct tagWINDOWPROC
75{
76 WINPROC_THUNK thunk; /* Thunk */
Alexandre Julliardca22b331996-07-12 19:02:39 +000077 WINPROC_JUMP jmp; /* Jump */
Alexandre Julliard3051b641996-07-05 17:14:13 +000078 struct tagWINDOWPROC *next; /* Next window proc */
Alexandre Julliarda3960291999-02-26 11:11:13 +000079 UINT magic; /* Magic number */
Alexandre Julliard3051b641996-07-05 17:14:13 +000080 WINDOWPROCTYPE type; /* Function type */
Alexandre Julliarddf2673b1997-03-29 17:20:20 +000081 WINDOWPROCUSER user; /* Function user */
Alexandre Julliard2d93d001996-05-21 15:01:41 +000082} WINDOWPROC;
83
Alexandre Julliard1e9ac791996-06-06 18:38:27 +000084#define WINPROC_MAGIC ('W' | ('P' << 8) | ('R' << 16) | ('C' << 24))
Alexandre Julliard2d93d001996-05-21 15:01:41 +000085
Alexandre Julliard3051b641996-07-05 17:14:13 +000086#define WINPROC_THUNKPROC(pproc) \
87 (((pproc)->type == WIN_PROC_16) ? \
88 (WNDPROC16)((pproc)->thunk.t_from32.proc) : \
89 (WNDPROC16)((pproc)->thunk.t_from16.proc))
Alexandre Julliard2d93d001996-05-21 15:01:41 +000090
Alexandre Julliarda3960291999-02-26 11:11:13 +000091static LRESULT WINAPI WINPROC_CallProc32ATo16( WNDPROC16 func, HWND hwnd,
92 UINT msg, WPARAM wParam,
Alexandre Julliard77b99181997-09-14 17:17:23 +000093 LPARAM lParam );
Alexandre Julliarda3960291999-02-26 11:11:13 +000094static LRESULT WINAPI WINPROC_CallProc32WTo16( WNDPROC16 func, HWND hwnd,
95 UINT msg, WPARAM wParam,
Alexandre Julliard77b99181997-09-14 17:17:23 +000096 LPARAM lParam );
Ulrich Weigandc50a1d01999-08-15 12:45:01 +000097static LRESULT WINAPI WINPROC_Thunk16To32A( WNDPROC func, LPBYTE args );
98static LRESULT WINAPI WINPROC_Thunk16To32W( WNDPROC func, LPBYTE args );
Alexandre Julliard3051b641996-07-05 17:14:13 +000099
Alexandre Julliarda3960291999-02-26 11:11:13 +0000100static HANDLE WinProcHeap;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000101
Alexandre Julliard84c70f51997-05-09 08:40:27 +0000102
Alexandre Julliard3051b641996-07-05 17:14:13 +0000103/**********************************************************************
104 * WINPROC_Init
105 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000106BOOL WINPROC_Init(void)
Alexandre Julliard3051b641996-07-05 17:14:13 +0000107{
108 WinProcHeap = HeapCreate( HEAP_WINE_SEGPTR | HEAP_WINE_CODESEG, 0, 0 );
109 if (!WinProcHeap)
110 {
Alexandre Julliard06c275a1999-05-02 14:32:27 +0000111 WARN_(relay)("Unable to create winproc heap\n" );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000112 return FALSE;
113 }
114 return TRUE;
115}
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000116
117
118/**********************************************************************
Alexandre Julliard84c70f51997-05-09 08:40:27 +0000119 * WINPROC_CallWndProc32
120 *
121 * Call a 32-bit WndProc.
122 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000123static LRESULT WINPROC_CallWndProc( WNDPROC proc, HWND hwnd, UINT msg,
124 WPARAM wParam, LPARAM lParam )
Alexandre Julliard84c70f51997-05-09 08:40:27 +0000125{
Francois Boisvertd96bc151999-04-02 10:34:43 +0000126 LRESULT retvalue;
127 int iWndsLocks;
128
Alexandre Julliard06c275a1999-05-02 14:32:27 +0000129 TRACE_(relay)("(wndproc=%p,hwnd=%08x,msg=%s,wp=%08x,lp=%08lx)\n",
Alexandre Julliardd30dfd21998-09-27 18:28:36 +0000130 proc, hwnd, SPY_GetMsgName(msg), wParam, lParam );
Francois Boisvertd96bc151999-04-02 10:34:43 +0000131 /* To avoid any deadlocks, all the locks on the windows structures
132 must be suspended before the control is passed to the application */
133 iWndsLocks = WIN_SuspendWndsLock();
134 retvalue = proc( hwnd, msg, wParam, lParam );
135 WIN_RestoreWndsLock(iWndsLocks);
136 return retvalue;
Alexandre Julliard84c70f51997-05-09 08:40:27 +0000137}
138
Ulrich Weigandc50a1d01999-08-15 12:45:01 +0000139/***********************************************************************
140 * WINPROC_CallWndProc16
141 *
142 * Call a 16-bit window procedure
143 */
144static LRESULT WINAPI WINPROC_CallWndProc16( WNDPROC16 proc, HWND16 hwnd,
145 UINT16 msg, WPARAM16 wParam,
146 LPARAM lParam )
147{
148 CONTEXT86 context;
149 LRESULT ret;
150 WORD *args;
151 WND *wndPtr = WIN_FindWndPtr( hwnd );
152 DWORD offset = 0;
153 TEB *teb = NtCurrentTeb();
154 int iWndsLocks;
155
156 /* Window procedures want ax = hInstance, ds = es = ss */
157
158 memset(&context, '\0', sizeof(context));
159 DS_reg(&context) = SELECTOROF(teb->cur_stack);
160 ES_reg(&context) = DS_reg(&context);
161 EAX_reg(&context) = wndPtr ? wndPtr->hInstance : DS_reg(&context);
162 CS_reg(&context) = SELECTOROF(proc);
163 EIP_reg(&context) = OFFSETOF(proc);
164 EBP_reg(&context) = OFFSETOF(teb->cur_stack)
165 + (WORD)&((STACK16FRAME*)0)->bp;
166
167 WIN_ReleaseWndPtr(wndPtr);
168
169 if (lParam)
170 {
171 /* Some programs (eg. the "Undocumented Windows" examples, JWP) only
172 work if structures passed in lParam are placed in the stack/data
173 segment. Programmers easily make the mistake of converting lParam
174 to a near rather than a far pointer, since Windows apparently
175 allows this. We copy the structures to the 16 bit stack; this is
176 ugly but makes these programs work. */
177 switch (msg)
178 {
179 case WM_CREATE:
180 case WM_NCCREATE:
181 offset = sizeof(CREATESTRUCT16); break;
182 case WM_DRAWITEM:
183 offset = sizeof(DRAWITEMSTRUCT16); break;
184 case WM_COMPAREITEM:
185 offset = sizeof(COMPAREITEMSTRUCT16); break;
186 }
187 if (offset)
188 {
189 void *s = PTR_SEG_TO_LIN(lParam);
190 lParam = stack16_push( offset );
191 memcpy( PTR_SEG_TO_LIN(lParam), s, offset );
192 }
193 }
194
195 iWndsLocks = WIN_SuspendWndsLock();
196
197 args = (WORD *)THREAD_STACK16(teb) - 5;
198 args[0] = LOWORD(lParam);
199 args[1] = HIWORD(lParam);
200 args[2] = wParam;
201 args[3] = msg;
202 args[4] = hwnd;
203
204 ret = CallTo16RegisterShort( &context, 5 * sizeof(WORD) );
205 if (offset) stack16_pop( offset );
206
207 WIN_RestoreWndsLock(iWndsLocks);
208
209 return ret;
210}
211
Alexandre Julliard84c70f51997-05-09 08:40:27 +0000212
213/**********************************************************************
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000214 * WINPROC_GetPtr
215 *
216 * Return a pointer to the win proc.
217 */
Alexandre Julliard3051b641996-07-05 17:14:13 +0000218static WINDOWPROC *WINPROC_GetPtr( WNDPROC16 handle )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000219{
Alexandre Julliardca22b331996-07-12 19:02:39 +0000220 BYTE *ptr;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000221 WINDOWPROC *proc;
222
223 /* Check for a linear pointer */
224
225 if (HEAP_IsInsideHeap( WinProcHeap, 0, (LPVOID)handle ))
226 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000227 ptr = (BYTE *)handle;
228 /* First check if it is the jmp address */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000229 if (*ptr == 0xe9 /* jmp */) ptr -= (int)&((WINDOWPROC *)0)->jmp -
230 (int)&((WINDOWPROC *)0)->thunk;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000231 /* Now it must be the thunk address */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000232 if (*ptr == 0x58 /* popl eax */) ptr -= (int)&((WINDOWPROC *)0)->thunk;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000233 /* Now we have a pointer to the WINDOWPROC struct */
234 if (((WINDOWPROC *)ptr)->magic == WINPROC_MAGIC)
235 return (WINDOWPROC *)ptr;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000236 }
237
238 /* Check for a segmented pointer */
239
Alexandre Julliard8bbf8181996-09-13 16:50:47 +0000240 if (!IsBadReadPtr16((SEGPTR)handle,sizeof(WINDOWPROC)-sizeof(proc->thunk)))
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000241 {
Alexandre Julliardca22b331996-07-12 19:02:39 +0000242 ptr = (BYTE *)PTR_SEG_TO_LIN(handle);
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +0000243 if (!HEAP_IsInsideHeap( WinProcHeap, 0, ptr )) return NULL;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000244 /* It must be the thunk address */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000245 if (*ptr == 0x58 /* popl eax */) ptr -= (int)&((WINDOWPROC *)0)->thunk;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000246 /* Now we have a pointer to the WINDOWPROC struct */
247 if (((WINDOWPROC *)ptr)->magic == WINPROC_MAGIC)
248 return (WINDOWPROC *)ptr;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000249 }
250
251 return NULL;
252}
253
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000254
255/**********************************************************************
256 * WINPROC_AllocWinProc
257 *
258 * Allocate a new window procedure.
259 */
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000260static WINDOWPROC *WINPROC_AllocWinProc( WNDPROC16 func, WINDOWPROCTYPE type,
261 WINDOWPROCUSER user )
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000262{
Alexandre Julliard3051b641996-07-05 17:14:13 +0000263 WINDOWPROC *proc, *oldproc;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000264
Alexandre Julliard3051b641996-07-05 17:14:13 +0000265 /* Allocate a window procedure */
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000266
267 if (!(proc = HeapAlloc( WinProcHeap, 0, sizeof(WINDOWPROC) ))) return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000268
269 /* Check if the function is already a win proc */
270
271 if ((oldproc = WINPROC_GetPtr( func )))
272 {
273 *proc = *oldproc;
274 }
275 else
276 {
277 switch(type)
278 {
279 case WIN_PROC_16:
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000280 proc->thunk.t_from32.popl_eax = 0x58; /* popl %eax */
281 proc->thunk.t_from32.pushl_func = 0x68; /* pushl $proc */
282 proc->thunk.t_from32.proc = func;
283 proc->thunk.t_from32.pushl_eax = 0x50; /* pushl %eax */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000284 proc->thunk.t_from32.jmp = 0xe9; /* jmp relay*/
285 proc->thunk.t_from32.relay = /* relative jump */
Alexandre Julliard77b99181997-09-14 17:17:23 +0000286 (void(*)())((DWORD)WINPROC_CallProc32ATo16 -
Alexandre Julliard3051b641996-07-05 17:14:13 +0000287 (DWORD)(&proc->thunk.t_from32.relay + 1));
288 break;
289 case WIN_PROC_32A:
Alexandre Julliard3051b641996-07-05 17:14:13 +0000290 case WIN_PROC_32W:
Ulrich Weigandc50a1d01999-08-15 12:45:01 +0000291 proc->thunk.t_from16.pushw_bp = 0x5566; /* pushw %bp */
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000292 proc->thunk.t_from16.pushl_func = 0x68; /* pushl $proc */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000293 proc->thunk.t_from16.proc = (FARPROC)func;
Ulrich Weigandc50a1d01999-08-15 12:45:01 +0000294 proc->thunk.t_from16.pushw_ax = 0x5066; /* pushw %ax */
295 proc->thunk.t_from16.pushl_relay = 0x68; /* pushl $relay */
296 proc->thunk.t_from16.relay = (type == WIN_PROC_32A) ?
297 (void(*)())WINPROC_Thunk16To32A :
298 (void(*)())WINPROC_Thunk16To32W;
299 proc->thunk.t_from16.lcall = 0x9a; /* lcall cs:glue */
300 proc->thunk.t_from16.glue = (void*)CallFrom16Long;
Alexandre Julliarda0b2b1d1997-11-16 17:38:29 +0000301 GET_CS(proc->thunk.t_from16.cs);
Ulrich Weigandc50a1d01999-08-15 12:45:01 +0000302 proc->thunk.t_from16.lret = 0xca66;
303 proc->thunk.t_from16.nArgs = 10;
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000304 proc->jmp.jmp = 0xe9;
Alexandre Julliardca22b331996-07-12 19:02:39 +0000305 /* Fixup relative jump */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000306 proc->jmp.proc = (WNDPROC)((DWORD)func -
Alexandre Julliardca22b331996-07-12 19:02:39 +0000307 (DWORD)(&proc->jmp.proc + 1));
Alexandre Julliard3051b641996-07-05 17:14:13 +0000308 break;
309 default:
310 /* Should not happen */
311 break;
312 }
313 proc->magic = WINPROC_MAGIC;
314 proc->type = type;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000315 proc->user = user;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000316 }
317 proc->next = NULL;
Alexandre Julliard06c275a1999-05-02 14:32:27 +0000318 TRACE_(win)("(%08x,%d): returning %08x\n",
Alexandre Julliarda3960291999-02-26 11:11:13 +0000319 (UINT)func, type, (UINT)proc );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000320 return proc;
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000321}
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +0000322
323
324/**********************************************************************
Alexandre Julliard3051b641996-07-05 17:14:13 +0000325 * WINPROC_GetProc
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000326 *
Alexandre Julliard3051b641996-07-05 17:14:13 +0000327 * Get a window procedure pointer that can be passed to the Windows program.
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000328 */
Alexandre Julliard3051b641996-07-05 17:14:13 +0000329WNDPROC16 WINPROC_GetProc( HWINDOWPROC proc, WINDOWPROCTYPE type )
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000330{
Alexandre Julliard21979011997-03-05 08:22:35 +0000331 if (!proc) return NULL;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000332 if (type == WIN_PROC_16) /* We want a 16:16 address */
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000333 {
Alexandre Julliard3051b641996-07-05 17:14:13 +0000334 if (((WINDOWPROC *)proc)->type == WIN_PROC_16)
335 return ((WINDOWPROC *)proc)->thunk.t_from32.proc;
336 else
Alexandre Julliardca22b331996-07-12 19:02:39 +0000337 return (WNDPROC16)HEAP_GetSegptr( WinProcHeap, 0,
338 &((WINDOWPROC *)proc)->thunk );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000339 }
Alexandre Julliard3051b641996-07-05 17:14:13 +0000340 else /* We want a 32-bit address */
341 {
342 if (((WINDOWPROC *)proc)->type == WIN_PROC_16)
Alexandre Julliardca22b331996-07-12 19:02:39 +0000343 return (WNDPROC16)&((WINDOWPROC *)proc)->thunk;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000344 else if (type != ((WINDOWPROC *)proc)->type)
345 /* Have to return the jmp address if types don't match */
346 return (WNDPROC16)&((WINDOWPROC *)proc)->jmp;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000347 else
Alexandre Julliard46ea8b31998-05-03 19:01:20 +0000348 /* Some Win16 programs want to get back the proc they set */
349 return (WNDPROC16)((WINDOWPROC *)proc)->thunk.t_from16.proc;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000350 }
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000351}
352
353
354/**********************************************************************
Alexandre Julliard3051b641996-07-05 17:14:13 +0000355 * WINPROC_SetProc
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000356 *
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000357 * Set the window procedure for a window or class. There are
358 * three tree classes of winproc callbacks:
359 *
360 * 1) class -> wp - not subclassed
361 * class -> wp -> wp -> wp -> wp - SetClassLong()
362 * / /
363 * 2) window -' / - not subclassed
364 * window -> wp -> wp ' - SetWindowLong()
365 *
366 * 3) timer -> wp - SetTimer()
367 *
368 * Initially, winproc of the window points to the current winproc
369 * thunk of its class. Subclassing prepends a new thunk to the
370 * window winproc chain at the head of the list. Thus, window thunk
371 * list includes class thunks and the latter are preserved when the
372 * window is destroyed.
373 *
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000374 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000375BOOL WINPROC_SetProc( HWINDOWPROC *pFirst, WNDPROC16 func,
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000376 WINDOWPROCTYPE type, WINDOWPROCUSER user )
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000377{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000378 BOOL bRecycle = FALSE;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000379 WINDOWPROC *proc, **ppPrev;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000380
Alexandre Julliard3051b641996-07-05 17:14:13 +0000381 /* Check if function is already in the list */
382
383 ppPrev = (WINDOWPROC **)pFirst;
384 proc = WINPROC_GetPtr( func );
385 while (*ppPrev)
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000386 {
Alexandre Julliard3051b641996-07-05 17:14:13 +0000387 if (proc)
388 {
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000389 if (*ppPrev == proc)
390 {
391 if ((*ppPrev)->user != user)
392 {
393 /* terminal thunk is being restored */
394
395 WINPROC_FreeProc( *pFirst, (*ppPrev)->user );
396 *(WINDOWPROC **)pFirst = *ppPrev;
397 return TRUE;
398 }
399 bRecycle = TRUE;
400 break;
401 }
Alexandre Julliard3051b641996-07-05 17:14:13 +0000402 }
403 else
404 {
405 if (((*ppPrev)->type == type) &&
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000406 (func == WINPROC_THUNKPROC(*ppPrev)))
407 {
408 bRecycle = TRUE;
409 break;
410 }
Alexandre Julliard3051b641996-07-05 17:14:13 +0000411 }
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000412
413 /* WPF_CLASS thunk terminates window thunk list */
414 if ((*ppPrev)->user != user) break;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000415 ppPrev = &(*ppPrev)->next;
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000416 }
Alexandre Julliard3051b641996-07-05 17:14:13 +0000417
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000418 if (bRecycle)
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000419 {
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000420 /* Extract this thunk from the list */
Alexandre Julliard3051b641996-07-05 17:14:13 +0000421 proc = *ppPrev;
422 *ppPrev = proc->next;
423 }
424 else /* Allocate a new one */
425 {
426 if (proc) /* Was already a win proc */
427 {
428 type = proc->type;
429 func = WINPROC_THUNKPROC(proc);
430 }
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000431 proc = WINPROC_AllocWinProc( func, type, user );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000432 if (!proc) return FALSE;
433 }
434
435 /* Add the win proc at the head of the list */
436
Alexandre Julliard06c275a1999-05-02 14:32:27 +0000437 TRACE_(win)("(%08x,%08x,%d): res=%08x\n",
Alexandre Julliarda3960291999-02-26 11:11:13 +0000438 (UINT)*pFirst, (UINT)func, type, (UINT)proc );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000439 proc->next = *(WINDOWPROC **)pFirst;
440 *(WINDOWPROC **)pFirst = proc;
441 return TRUE;
442}
443
444
445/**********************************************************************
446 * WINPROC_FreeProc
447 *
448 * Free a list of win procs.
449 */
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000450void WINPROC_FreeProc( HWINDOWPROC proc, WINDOWPROCUSER user )
Alexandre Julliard3051b641996-07-05 17:14:13 +0000451{
452 while (proc)
453 {
454 WINDOWPROC *next = ((WINDOWPROC *)proc)->next;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +0000455 if (((WINDOWPROC *)proc)->user != user) break;
Alexandre Julliard06c275a1999-05-02 14:32:27 +0000456 TRACE_(win)("freeing %08x\n", (UINT)proc);
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000457 HeapFree( WinProcHeap, 0, proc );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000458 proc = next;
Alexandre Julliard2d93d001996-05-21 15:01:41 +0000459 }
460}
461
462
463/**********************************************************************
Alexandre Julliard3051b641996-07-05 17:14:13 +0000464 * WINPROC_GetProcType
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000465 *
466 * Return the window procedure type.
467 */
Alexandre Julliard3051b641996-07-05 17:14:13 +0000468WINDOWPROCTYPE WINPROC_GetProcType( HWINDOWPROC proc )
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000469{
Alexandre Julliard3051b641996-07-05 17:14:13 +0000470 if (!proc ||
471 (((WINDOWPROC *)proc)->magic != WINPROC_MAGIC))
472 return WIN_PROC_INVALID;
473 return ((WINDOWPROC *)proc)->type;
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000474}
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000475/**********************************************************************
476 * WINPROC_TestCBForStr
477 *
478 * Return TRUE if the lparam is a string
479 */
Patrik Stridvall1ed4ecf1999-06-26 14:58:24 +0000480static BOOL WINPROC_TestCBForStr ( HWND hwnd )
Francois Boisvert6b1b41c1999-03-14 17:25:32 +0000481{
482 BOOL retvalue;
483 WND * wnd = WIN_FindWndPtr(hwnd);
484 retvalue = ( !(LOWORD(wnd->dwStyle) & (CBS_OWNERDRAWFIXED | CBS_OWNERDRAWVARIABLE)) ||
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000485 (LOWORD(wnd->dwStyle) & CBS_HASSTRINGS) );
Francois Boisvert6b1b41c1999-03-14 17:25:32 +0000486 WIN_ReleaseWndPtr(wnd);
487 return retvalue;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000488}
489/**********************************************************************
490 * WINPROC_TestLBForStr
491 *
492 * Return TRUE if the lparam is a string
493 */
Patrik Stridvall1ed4ecf1999-06-26 14:58:24 +0000494static BOOL WINPROC_TestLBForStr ( HWND hwnd )
Francois Boisvert6b1b41c1999-03-14 17:25:32 +0000495{
496 BOOL retvalue;
497 WND * wnd = WIN_FindWndPtr(hwnd);
498 retvalue = ( !(LOWORD(wnd->dwStyle) & (LBS_OWNERDRAWFIXED | LBS_OWNERDRAWVARIABLE)) ||
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000499 (LOWORD(wnd->dwStyle) & LBS_HASSTRINGS) );
Francois Boisvert6b1b41c1999-03-14 17:25:32 +0000500 WIN_ReleaseWndPtr(wnd);
501 return retvalue;
502
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000503}
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000504/**********************************************************************
Alexandre Julliard3051b641996-07-05 17:14:13 +0000505 * WINPROC_MapMsg32ATo32W
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000506 *
Alexandre Julliard3051b641996-07-05 17:14:13 +0000507 * Map a message from Ansi to Unicode.
508 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
Juergen Schmied36636ed1998-11-15 16:53:34 +0000509 *
510 * FIXME:
511 * WM_CHAR, WM_CHARTOITEM, WM_DEADCHAR, WM_MENUCHAR, WM_SYSCHAR, WM_SYSDEADCHAR
512 *
513 * FIXME:
514 * WM_GETTEXT/WM_SETTEXT and static control with SS_ICON style:
515 * the first four bytes are the handle of the icon
516 * when the WM_SETTEXT message has been used to set the icon
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000517 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000518INT WINPROC_MapMsg32ATo32W( HWND hwnd, UINT msg, WPARAM wParam, LPARAM *plparam )
Juergen Schmied36636ed1998-11-15 16:53:34 +0000519{
520 switch(msg)
Alexandre Julliard3051b641996-07-05 17:14:13 +0000521 {
522 case WM_GETTEXT:
523 {
524 LPARAM *ptr = (LPARAM *)HeapAlloc( SystemHeap, 0,
525 wParam * sizeof(WCHAR) + sizeof(LPARAM) );
526 if (!ptr) return -1;
527 *ptr++ = *plparam; /* Store previous lParam */
528 *plparam = (LPARAM)ptr;
529 }
530 return 1;
Juergen Schmiedd3258fc1999-03-12 17:13:54 +0000531 /* lparam is string (0-terminated) */
Alexandre Julliard3051b641996-07-05 17:14:13 +0000532 case WM_SETTEXT:
Juergen Schmiedd3258fc1999-03-12 17:13:54 +0000533 case WM_WININICHANGE:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000534 case CB_DIR:
535 case CB_FINDSTRING:
536 case CB_FINDSTRINGEXACT:
537 case CB_SELECTSTRING:
538 case LB_DIR:
539 case LB_ADDFILE:
540 case LB_FINDSTRING:
541 case LB_SELECTSTRING:
542 case EM_REPLACESEL:
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000543 *plparam = (LPARAM)HEAP_strdupAtoW( SystemHeap, 0, (LPCSTR)*plparam );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000544 return (*plparam ? 1 : -1);
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000545
Alexandre Julliard3051b641996-07-05 17:14:13 +0000546 case WM_NCCREATE:
547 case WM_CREATE:
548 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000549 CREATESTRUCTW *cs = (CREATESTRUCTW *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +0000550 sizeof(*cs) );
551 if (!cs) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000552 *cs = *(CREATESTRUCTW *)*plparam;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000553 if (HIWORD(cs->lpszName))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000554 cs->lpszName = HEAP_strdupAtoW( SystemHeap, 0,
555 (LPCSTR)cs->lpszName );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000556 if (HIWORD(cs->lpszClass))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000557 cs->lpszClass = HEAP_strdupAtoW( SystemHeap, 0,
558 (LPCSTR)cs->lpszClass );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000559 *plparam = (LPARAM)cs;
560 }
561 return 1;
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000562 case WM_MDICREATE:
563 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000564 MDICREATESTRUCTW *cs =
565 (MDICREATESTRUCTW *)HeapAlloc( SystemHeap, 0, sizeof(*cs) );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000566 if (!cs) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000567 *cs = *(MDICREATESTRUCTW *)*plparam;
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000568 if (HIWORD(cs->szClass))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000569 cs->szClass = HEAP_strdupAtoW( SystemHeap, 0,
570 (LPCSTR)cs->szClass );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000571 if (HIWORD(cs->szTitle))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000572 cs->szTitle = HEAP_strdupAtoW( SystemHeap, 0,
573 (LPCSTR)cs->szTitle );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000574 *plparam = (LPARAM)cs;
575 }
576 return 1;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000577
578/* Listbox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000579 case LB_ADDSTRING:
580 case LB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000581 if ( WINPROC_TestLBForStr( hwnd ))
582 *plparam = (LPARAM)HEAP_strdupAtoW( SystemHeap, 0, (LPCSTR)*plparam );
583 return (*plparam ? 1 : -1);
584
Alexandre Julliarda3960291999-02-26 11:11:13 +0000585 case LB_GETTEXT: /* fixme: fixed sized buffer */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000586 { if ( WINPROC_TestLBForStr( hwnd ))
587 { LPARAM *ptr = (LPARAM *)HeapAlloc( SystemHeap, 0, 256 * sizeof(WCHAR) + sizeof(LPARAM) );
588 if (!ptr) return -1;
589 *ptr++ = *plparam; /* Store previous lParam */
590 *plparam = (LPARAM)ptr;
591 }
592 }
593 return 1;
594
595/* Combobox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000596 case CB_ADDSTRING:
597 case CB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000598 if ( WINPROC_TestCBForStr( hwnd ))
599 *plparam = (LPARAM)HEAP_strdupAtoW( SystemHeap, 0, (LPCSTR)*plparam );
600 return (*plparam ? 1 : -1);
601
Alexandre Julliarda3960291999-02-26 11:11:13 +0000602 case CB_GETLBTEXT: /* fixme: fixed sized buffer */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000603 { if ( WINPROC_TestCBForStr( hwnd ))
604 { LPARAM *ptr = (LPARAM *)HeapAlloc( SystemHeap, 0, 256 * sizeof(WCHAR) + sizeof(LPARAM) );
605 if (!ptr) return -1;
606 *ptr++ = *plparam; /* Store previous lParam */
607 *plparam = (LPARAM)ptr;
608 }
609 }
610 return 1;
611
612/* Multiline edit */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000613 case EM_GETLINE:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000614 { WORD len = (WORD)*plparam;
615 LPARAM *ptr = (LPARAM *) HEAP_xalloc( SystemHeap, 0, sizeof(LPARAM) + sizeof (WORD) + len*sizeof(WCHAR) );
616 if (!ptr) return -1;
617 *ptr++ = *plparam; /* Store previous lParam */
Patrik Stridvalla9a671d1999-04-25 19:01:52 +0000618 *((WORD *) ptr) = len; /* Store the length */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000619 *plparam = (LPARAM)ptr;
620 }
621 return 1;
622
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000623 case WM_ASKCBFORMATNAME:
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000624 case WM_DEVMODECHANGE:
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000625 case WM_PAINTCLIPBOARD:
626 case WM_SIZECLIPBOARD:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000627 case EM_SETPASSWORDCHAR:
Alexandre Julliard06c275a1999-05-02 14:32:27 +0000628 FIXME_(msg)("message %s (0x%x) needs translation, please report\n", SPY_GetMsgName(msg), msg );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000629 return -1;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000630 default: /* No translation needed */
631 return 0;
632 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000633}
634
635
636/**********************************************************************
Alexandre Julliard3051b641996-07-05 17:14:13 +0000637 * WINPROC_UnmapMsg32ATo32W
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000638 *
Alexandre Julliard3051b641996-07-05 17:14:13 +0000639 * Unmap a message that was mapped from Ansi to Unicode.
Alexandre Julliard1e9ac791996-06-06 18:38:27 +0000640 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000641void WINPROC_UnmapMsg32ATo32W( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
Juergen Schmied36636ed1998-11-15 16:53:34 +0000642{
643 switch(msg)
Alexandre Julliard3051b641996-07-05 17:14:13 +0000644 {
645 case WM_GETTEXT:
646 {
647 LPARAM *ptr = (LPARAM *)lParam - 1;
Juergen Schmied36636ed1998-11-15 16:53:34 +0000648 lstrcpynWtoA( (LPSTR)*ptr, (LPWSTR)lParam, wParam );
Juergen Schmied4a84dc21998-10-23 12:04:25 +0000649 HeapFree( SystemHeap, 0, ptr );
650 }
651 break;
652
Alexandre Julliard3051b641996-07-05 17:14:13 +0000653 case WM_NCCREATE:
654 case WM_CREATE:
655 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000656 CREATESTRUCTW *cs = (CREATESTRUCTW *)lParam;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000657 if (HIWORD(cs->lpszName))
658 HeapFree( SystemHeap, 0, (LPVOID)cs->lpszName );
659 if (HIWORD(cs->lpszClass))
660 HeapFree( SystemHeap, 0, (LPVOID)cs->lpszClass );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000661 HeapFree( SystemHeap, 0, cs );
662 }
663 break;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000664
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000665 case WM_MDICREATE:
666 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000667 MDICREATESTRUCTW *cs = (MDICREATESTRUCTW *)lParam;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000668 if (HIWORD(cs->szTitle))
669 HeapFree( SystemHeap, 0, (LPVOID)cs->szTitle );
670 if (HIWORD(cs->szClass))
671 HeapFree( SystemHeap, 0, (LPVOID)cs->szClass );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000672 HeapFree( SystemHeap, 0, cs );
673 }
674 break;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000675
676 case WM_SETTEXT:
Juergen Schmiedd3258fc1999-03-12 17:13:54 +0000677 case WM_WININICHANGE:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000678 case CB_DIR:
679 case CB_FINDSTRING:
680 case CB_FINDSTRINGEXACT:
681 case CB_SELECTSTRING:
682 case LB_DIR:
683 case LB_ADDFILE:
684 case LB_FINDSTRING:
685 case LB_SELECTSTRING:
686 case EM_REPLACESEL:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000687 HeapFree( SystemHeap, 0, (void *)lParam );
688 break;
689
690/* Listbox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000691 case LB_ADDSTRING:
692 case LB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000693 if ( WINPROC_TestLBForStr( hwnd ))
694 HeapFree( SystemHeap, 0, (void *)lParam );
695 break;
696
Alexandre Julliarda3960291999-02-26 11:11:13 +0000697 case LB_GETTEXT:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000698 { if ( WINPROC_TestLBForStr( hwnd ))
699 { LPARAM *ptr = (LPARAM *)lParam - 1;
700 lstrcpyWtoA( (LPSTR)*ptr, (LPWSTR)(lParam) );
701 HeapFree( SystemHeap, 0, ptr );
702 }
703 }
704 break;
705
706/* Combobox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000707 case CB_ADDSTRING:
708 case CB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000709 if ( WINPROC_TestCBForStr( hwnd ))
710 HeapFree( SystemHeap, 0, (void *)lParam );
711 break;
712
Alexandre Julliarda3960291999-02-26 11:11:13 +0000713 case CB_GETLBTEXT:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000714 { if ( WINPROC_TestCBForStr( hwnd ))
715 { LPARAM *ptr = (LPARAM *)lParam - 1;
716 lstrcpyWtoA( (LPSTR)*ptr, (LPWSTR)(lParam) );
717 HeapFree( SystemHeap, 0, ptr );
718 }
719 }
720 break;
721
722/* Multiline edit */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000723 case EM_GETLINE:
Juergen Schmiedafd55801999-01-31 09:18:58 +0000724 { LPARAM * ptr = (LPARAM *)lParam - 1; /* get the old lParam */
725 WORD len = *(WORD *) lParam;
726 lstrcpynWtoA( (LPSTR)*ptr , (LPWSTR)lParam, len );
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000727 HeapFree( SystemHeap, 0, ptr );
728 }
729 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000730 }
731}
732
733
734/**********************************************************************
735 * WINPROC_MapMsg32WTo32A
736 *
737 * Map a message from Unicode to Ansi.
738 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
739 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000740INT WINPROC_MapMsg32WTo32A( HWND hwnd, UINT msg, WPARAM wParam, LPARAM *plparam )
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000741{ switch(msg)
Alexandre Julliard3051b641996-07-05 17:14:13 +0000742 {
743 case WM_GETTEXT:
744 {
745 LPARAM *ptr = (LPARAM *)HeapAlloc( SystemHeap, 0,
746 wParam + sizeof(LPARAM) );
747 if (!ptr) return -1;
748 *ptr++ = *plparam; /* Store previous lParam */
749 *plparam = (LPARAM)ptr;
750 }
751 return 1;
Juergen Schmied4a84dc21998-10-23 12:04:25 +0000752
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000753 case WM_SETTEXT:
Juergen Schmiedd3258fc1999-03-12 17:13:54 +0000754 case WM_WININICHANGE:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000755 case CB_DIR:
756 case CB_FINDSTRING:
757 case CB_FINDSTRINGEXACT:
758 case CB_SELECTSTRING:
759 case LB_DIR:
760 case LB_ADDFILE:
761 case LB_FINDSTRING:
762 case LB_SELECTSTRING:
763 case EM_REPLACESEL:
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000764 *plparam = (LPARAM)HEAP_strdupWtoA( SystemHeap, 0, (LPCWSTR)*plparam );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000765 return (*plparam ? 1 : -1);
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000766
Alexandre Julliard3051b641996-07-05 17:14:13 +0000767 case WM_NCCREATE:
768 case WM_CREATE:
769 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000770 CREATESTRUCTA *cs = (CREATESTRUCTA *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +0000771 sizeof(*cs) );
772 if (!cs) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000773 *cs = *(CREATESTRUCTA *)*plparam;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000774 if (HIWORD(cs->lpszName))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000775 cs->lpszName = HEAP_strdupWtoA( SystemHeap, 0,
776 (LPCWSTR)cs->lpszName );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000777 if (HIWORD(cs->lpszClass))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000778 cs->lpszClass = HEAP_strdupWtoA( SystemHeap, 0,
779 (LPCWSTR)cs->lpszClass);
Alexandre Julliard3051b641996-07-05 17:14:13 +0000780 *plparam = (LPARAM)cs;
781 }
782 return 1;
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000783 case WM_MDICREATE:
784 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000785 MDICREATESTRUCTA *cs =
786 (MDICREATESTRUCTA *)HeapAlloc( SystemHeap, 0, sizeof(*cs) );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000787 if (!cs) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +0000788 *cs = *(MDICREATESTRUCTA *)*plparam;
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000789 if (HIWORD(cs->szTitle))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000790 cs->szTitle = HEAP_strdupWtoA( SystemHeap, 0,
791 (LPCWSTR)cs->szTitle );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000792 if (HIWORD(cs->szClass))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000793 cs->szClass = HEAP_strdupWtoA( SystemHeap, 0,
794 (LPCWSTR)cs->szClass );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000795 *plparam = (LPARAM)cs;
796 }
797 return 1;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000798
799/* Listbox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000800 case LB_ADDSTRING:
801 case LB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000802 if ( WINPROC_TestLBForStr( hwnd ))
803 *plparam = (LPARAM)HEAP_strdupWtoA( SystemHeap, 0, (LPCWSTR)*plparam );
804 return (*plparam ? 1 : -1);
805
Alexandre Julliarda3960291999-02-26 11:11:13 +0000806 case LB_GETTEXT: /* fixme: fixed sized buffer */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000807 { if ( WINPROC_TestLBForStr( hwnd ))
808 { LPARAM *ptr = (LPARAM *)HeapAlloc( SystemHeap, 0, 256 + sizeof(LPARAM) );
809 if (!ptr) return -1;
810 *ptr++ = *plparam; /* Store previous lParam */
811 *plparam = (LPARAM)ptr;
812 }
813 }
814 return 1;
815
816/* Combobox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000817 case CB_ADDSTRING:
818 case CB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000819 if ( WINPROC_TestCBForStr( hwnd ))
820 *plparam = (LPARAM)HEAP_strdupWtoA( SystemHeap, 0, (LPCWSTR)*plparam );
821 return (*plparam ? 1 : -1);
822
Alexandre Julliarda3960291999-02-26 11:11:13 +0000823 case CB_GETLBTEXT: /* fixme: fixed sized buffer */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000824 { if ( WINPROC_TestCBForStr( hwnd ))
825 { LPARAM *ptr = (LPARAM *)HeapAlloc( SystemHeap, 0, 256 + sizeof(LPARAM) );
826 if (!ptr) return -1;
827 *ptr++ = *plparam; /* Store previous lParam */
828 *plparam = (LPARAM)ptr;
829 }
830 }
831 return 1;
832
833/* Multiline edit */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000834 case EM_GETLINE:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000835 { WORD len = (WORD)*plparam;
836 LPARAM *ptr = (LPARAM *) HEAP_xalloc( SystemHeap, 0, sizeof(LPARAM) + sizeof (WORD) + len*sizeof(CHAR) );
837 if (!ptr) return -1;
838 *ptr++ = *plparam; /* Store previous lParam */
Patrik Stridvalla9a671d1999-04-25 19:01:52 +0000839 *((WORD *) ptr) = len; /* Store the length */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000840 *plparam = (LPARAM)ptr;
841 }
842 return 1;
843
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000844 case WM_ASKCBFORMATNAME:
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000845 case WM_DEVMODECHANGE:
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000846 case WM_PAINTCLIPBOARD:
847 case WM_SIZECLIPBOARD:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000848 case EM_SETPASSWORDCHAR:
Alexandre Julliard06c275a1999-05-02 14:32:27 +0000849 FIXME_(msg)("message %s (%04x) needs translation, please report\n",SPY_GetMsgName(msg),msg );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000850 return -1;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000851 default: /* No translation needed */
852 return 0;
853 }
854}
855
856
857/**********************************************************************
858 * WINPROC_UnmapMsg32WTo32A
859 *
860 * Unmap a message that was mapped from Unicode to Ansi.
861 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000862void WINPROC_UnmapMsg32WTo32A( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
Juergen Schmied36636ed1998-11-15 16:53:34 +0000863{
864 switch(msg)
Alexandre Julliard3051b641996-07-05 17:14:13 +0000865 {
866 case WM_GETTEXT:
867 {
868 LPARAM *ptr = (LPARAM *)lParam - 1;
Juergen Schmied36636ed1998-11-15 16:53:34 +0000869 lstrcpynAtoW( (LPWSTR)*ptr, (LPSTR)lParam, wParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000870 HeapFree( SystemHeap, 0, ptr );
871 }
872 break;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000873
874 case WM_SETTEXT:
Juergen Schmiedd3258fc1999-03-12 17:13:54 +0000875 case WM_WININICHANGE:
Alexandre Julliarda3960291999-02-26 11:11:13 +0000876 case CB_DIR:
877 case CB_FINDSTRING:
878 case CB_FINDSTRINGEXACT:
879 case CB_SELECTSTRING:
880 case LB_DIR:
881 case LB_ADDFILE:
882 case LB_FINDSTRING:
883 case LB_SELECTSTRING:
884 case EM_REPLACESEL:
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000885 HeapFree( SystemHeap, 0, (void *)lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000886 break;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000887
Alexandre Julliard3051b641996-07-05 17:14:13 +0000888 case WM_NCCREATE:
889 case WM_CREATE:
890 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000891 CREATESTRUCTA *cs = (CREATESTRUCTA *)lParam;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000892 if (HIWORD(cs->lpszName))
893 HeapFree( SystemHeap, 0, (LPVOID)cs->lpszName );
894 if (HIWORD(cs->lpszClass))
895 HeapFree( SystemHeap, 0, (LPVOID)cs->lpszClass );
Alexandre Julliard3051b641996-07-05 17:14:13 +0000896 HeapFree( SystemHeap, 0, cs );
897 }
898 break;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000899
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000900 case WM_MDICREATE:
901 {
Alexandre Julliarda3960291999-02-26 11:11:13 +0000902 MDICREATESTRUCTA *cs = (MDICREATESTRUCTA *)lParam;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +0000903 if (HIWORD(cs->szTitle))
904 HeapFree( SystemHeap, 0, (LPVOID)cs->szTitle );
905 if (HIWORD(cs->szClass))
906 HeapFree( SystemHeap, 0, (LPVOID)cs->szClass );
Alexandre Julliard18f92e71996-07-17 20:02:21 +0000907 HeapFree( SystemHeap, 0, cs );
908 }
909 break;
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000910
911/* Listbox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000912 case LB_ADDSTRING:
913 case LB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000914 if ( WINPROC_TestLBForStr( hwnd ))
915 HeapFree( SystemHeap, 0, (void *)lParam );
916 break;
917
Alexandre Julliarda3960291999-02-26 11:11:13 +0000918 case LB_GETTEXT:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000919 { if ( WINPROC_TestLBForStr( hwnd ))
920 { LPARAM *ptr = (LPARAM *)lParam - 1;
921 lstrcpyAtoW( (LPWSTR)*ptr, (LPSTR)(lParam) );
922 HeapFree( SystemHeap, 0, ptr );
923 }
924 }
925 break;
926
927/* Combobox */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000928 case CB_ADDSTRING:
929 case CB_INSERTSTRING:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000930 if ( WINPROC_TestCBForStr( hwnd ))
931 HeapFree( SystemHeap, 0, (void *)lParam );
932 break;
933
Alexandre Julliarda3960291999-02-26 11:11:13 +0000934 case CB_GETLBTEXT:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000935 { if ( WINPROC_TestCBForStr( hwnd ))
936 { LPARAM *ptr = (LPARAM *)lParam - 1;
937 lstrcpyAtoW( (LPWSTR)*ptr, (LPSTR)(lParam) );
938 HeapFree( SystemHeap, 0, ptr );
939 }
940 }
941 break;
942
943/* Multiline edit */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000944 case EM_GETLINE:
Juergen Schmiedafd55801999-01-31 09:18:58 +0000945 { LPARAM * ptr = (LPARAM *)lParam - 1; /* get the old lparam */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000946 WORD len = *(WORD *)ptr;
Juergen Schmiedafd55801999-01-31 09:18:58 +0000947 lstrcpynAtoW( (LPWSTR) *ptr, (LPSTR)lParam, len );
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000948 HeapFree( SystemHeap, 0, ptr );
949 }
950 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000951 }
952}
953
954
955/**********************************************************************
956 * WINPROC_MapMsg16To32A
957 *
958 * Map a message from 16- to 32-bit Ansi.
959 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
960 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000961INT WINPROC_MapMsg16To32A( UINT16 msg16, WPARAM16 wParam16, UINT *pmsg32,
962 WPARAM *pwparam32, LPARAM *plparam )
Alexandre Julliard3051b641996-07-05 17:14:13 +0000963{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000964 *pmsg32 = (UINT)msg16;
965 *pwparam32 = (WPARAM)wParam16;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000966 switch(msg16)
967 {
968 case WM_ACTIVATE:
969 case WM_CHARTOITEM:
970 case WM_COMMAND:
Alexandre Julliard3051b641996-07-05 17:14:13 +0000971 case WM_VKEYTOITEM:
Alexandre Julliard3051b641996-07-05 17:14:13 +0000972 *pwparam32 = MAKEWPARAM( wParam16, HIWORD(*plparam) );
Alexandre Julliarda3960291999-02-26 11:11:13 +0000973 *plparam = (LPARAM)(HWND)LOWORD(*plparam);
Alexandre Julliard3051b641996-07-05 17:14:13 +0000974 return 0;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000975 case WM_HSCROLL:
976 case WM_VSCROLL:
977 *pwparam32 = MAKEWPARAM( wParam16, LOWORD(*plparam) );
Alexandre Julliarda3960291999-02-26 11:11:13 +0000978 *plparam = (LPARAM)(HWND)HIWORD(*plparam);
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000979 return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000980 case WM_CTLCOLOR:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +0000981 if ( HIWORD(*plparam) > CTLCOLOR_STATIC ) return -1;
Alexandre Julliard3051b641996-07-05 17:14:13 +0000982 *pmsg32 = WM_CTLCOLORMSGBOX + HIWORD(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000983 *pwparam32 = (WPARAM)(HDC)wParam16;
984 *plparam = (LPARAM)(HWND)LOWORD(*plparam);
Alexandre Julliard3051b641996-07-05 17:14:13 +0000985 return 0;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000986 case WM_COMPAREITEM:
987 {
988 COMPAREITEMSTRUCT16* cis16 = (COMPAREITEMSTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +0000989 COMPAREITEMSTRUCT *cis = (COMPAREITEMSTRUCT *)
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000990 HeapAlloc(SystemHeap, 0, sizeof(*cis));
991 if (!cis) return -1;
992 cis->CtlType = cis16->CtlType;
993 cis->CtlID = cis16->CtlID;
994 cis->hwndItem = cis16->hwndItem;
995 cis->itemID1 = cis16->itemID1;
996 cis->itemData1 = cis16->itemData1;
997 cis->itemID2 = cis16->itemID2;
998 cis->itemData2 = cis16->itemData2;
999 cis->dwLocaleId = 0; /* FIXME */
1000 *plparam = (LPARAM)cis;
1001 }
1002 return 1;
1003 case WM_DELETEITEM:
1004 {
1005 DELETEITEMSTRUCT16* dis16 = (DELETEITEMSTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001006 DELETEITEMSTRUCT *dis = (DELETEITEMSTRUCT *)
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001007 HeapAlloc(SystemHeap, 0, sizeof(*dis));
1008 if (!dis) return -1;
1009 dis->CtlType = dis16->CtlType;
1010 dis->CtlID = dis16->CtlID;
1011 dis->hwndItem = dis16->hwndItem;
1012 dis->itemData = dis16->itemData;
1013 *plparam = (LPARAM)dis;
1014 }
1015 return 1;
1016 case WM_MEASUREITEM:
1017 {
1018 MEASUREITEMSTRUCT16* mis16 = (MEASUREITEMSTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001019 MEASUREITEMSTRUCT *mis = (MEASUREITEMSTRUCT *)
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001020 HeapAlloc(SystemHeap, 0,
1021 sizeof(*mis) + sizeof(LPARAM));
1022 if (!mis) return -1;
1023 mis->CtlType = mis16->CtlType;
1024 mis->CtlID = mis16->CtlID;
1025 mis->itemID = mis16->itemID;
1026 mis->itemWidth = mis16->itemWidth;
1027 mis->itemHeight = mis16->itemHeight;
1028 mis->itemData = mis16->itemData;
1029 *(LPARAM *)(mis + 1) = *plparam; /* Store the previous lParam */
1030 *plparam = (LPARAM)mis;
1031 }
1032 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001033 case WM_DRAWITEM:
1034 {
1035 DRAWITEMSTRUCT16* dis16 = (DRAWITEMSTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001036 DRAWITEMSTRUCT *dis = (DRAWITEMSTRUCT*)HeapAlloc(SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001037 sizeof(*dis));
1038 if (!dis) return -1;
1039 dis->CtlType = dis16->CtlType;
1040 dis->CtlID = dis16->CtlID;
1041 dis->itemID = dis16->itemID;
1042 dis->itemAction = dis16->itemAction;
1043 dis->itemState = dis16->itemState;
1044 dis->hwndItem = dis16->hwndItem;
1045 dis->hDC = dis16->hDC;
1046 dis->itemData = dis16->itemData;
1047 CONV_RECT16TO32( &dis16->rcItem, &dis->rcItem );
1048 *plparam = (LPARAM)dis;
1049 }
1050 return 1;
1051 case WM_GETMINMAXINFO:
1052 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001053 MINMAXINFO *mmi = (MINMAXINFO *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001054 sizeof(*mmi) + sizeof(LPARAM));
1055 if (!mmi) return -1;
1056 STRUCT32_MINMAXINFO16to32( (MINMAXINFO16*)PTR_SEG_TO_LIN(*plparam),
1057 mmi );
1058 *(LPARAM *)(mmi + 1) = *plparam; /* Store the previous lParam */
1059 *plparam = (LPARAM)mmi;
1060 }
1061 return 1;
1062 case WM_GETTEXT:
Ove Kaaven748acbb1998-11-01 15:27:12 +00001063 case WM_SETTEXT:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001064 *plparam = (LPARAM)PTR_SEG_TO_LIN(*plparam);
1065 return 0;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001066 case WM_MDICREATE:
1067 {
1068 MDICREATESTRUCT16 *cs16 =
1069 (MDICREATESTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001070 MDICREATESTRUCTA *cs =
1071 (MDICREATESTRUCTA *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001072 sizeof(*cs) + sizeof(LPARAM) );
1073 if (!cs) return -1;
1074 STRUCT32_MDICREATESTRUCT16to32A( cs16, cs );
1075 cs->szTitle = (LPCSTR)PTR_SEG_TO_LIN(cs16->szTitle);
1076 cs->szClass = (LPCSTR)PTR_SEG_TO_LIN(cs16->szClass);
1077 *(LPARAM *)(cs + 1) = *plparam; /* Store the previous lParam */
1078 *plparam = (LPARAM)cs;
1079 }
1080 return 1;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001081 case WM_MDIGETACTIVE:
Alexandre Julliarda3960291999-02-26 11:11:13 +00001082 *plparam = (LPARAM)HeapAlloc( SystemHeap, 0, sizeof(BOOL) );
1083 *(BOOL*)(*plparam) = 0;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001084 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001085 case WM_MDISETMENU:
Alexandre Julliard85ed45e1998-08-22 19:03:56 +00001086 if(wParam16==TRUE)
1087 *pmsg32=WM_MDIREFRESHMENU;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001088 *pwparam32 = (WPARAM)(HMENU)LOWORD(*plparam);
1089 *plparam = (LPARAM)(HMENU)HIWORD(*plparam);
Alexandre Julliard3051b641996-07-05 17:14:13 +00001090 return 0;
1091 case WM_MENUCHAR:
1092 case WM_MENUSELECT:
1093 *pwparam32 = MAKEWPARAM( wParam16, LOWORD(*plparam) );
Alexandre Julliarda3960291999-02-26 11:11:13 +00001094 *plparam = (LPARAM)(HMENU)HIWORD(*plparam);
Alexandre Julliard3051b641996-07-05 17:14:13 +00001095 return 0;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001096 case WM_MDIACTIVATE:
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001097 if( *plparam )
1098 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001099 *pwparam32 = (WPARAM)(HWND)HIWORD(*plparam);
1100 *plparam = (LPARAM)(HWND)LOWORD(*plparam);
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001101 }
1102 else /* message sent to MDI client */
1103 *pwparam32 = wParam16;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001104 return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001105 case WM_NCCALCSIZE:
1106 {
1107 NCCALCSIZE_PARAMS16 *nc16;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001108 NCCALCSIZE_PARAMS *nc;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001109
Alexandre Julliarda3960291999-02-26 11:11:13 +00001110 nc = (NCCALCSIZE_PARAMS *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001111 sizeof(*nc) + sizeof(LPARAM) );
1112 if (!nc) return -1;
1113 nc16 = (NCCALCSIZE_PARAMS16 *)PTR_SEG_TO_LIN(*plparam);
1114 CONV_RECT16TO32( &nc16->rgrc[0], &nc->rgrc[0] );
1115 if (wParam16)
1116 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001117 nc->lppos = (WINDOWPOS *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001118 sizeof(*nc->lppos) );
1119 CONV_RECT16TO32( &nc16->rgrc[1], &nc->rgrc[1] );
1120 CONV_RECT16TO32( &nc16->rgrc[2], &nc->rgrc[2] );
1121 if (nc->lppos) STRUCT32_WINDOWPOS16to32( (WINDOWPOS16 *)PTR_SEG_TO_LIN(nc16->lppos), nc->lppos );
1122 }
1123 *(LPARAM *)(nc + 1) = *plparam; /* Store the previous lParam */
1124 *plparam = (LPARAM)nc;
1125 }
1126 return 1;
1127 case WM_NCCREATE:
1128 case WM_CREATE:
1129 {
1130 CREATESTRUCT16 *cs16 = (CREATESTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001131 CREATESTRUCTA *cs = (CREATESTRUCTA *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001132 sizeof(*cs) + sizeof(LPARAM) );
1133 if (!cs) return -1;
1134 STRUCT32_CREATESTRUCT16to32A( cs16, cs );
1135 cs->lpszName = (LPCSTR)PTR_SEG_TO_LIN(cs16->lpszName);
1136 cs->lpszClass = (LPCSTR)PTR_SEG_TO_LIN(cs16->lpszClass);
1137 *(LPARAM *)(cs + 1) = *plparam; /* Store the previous lParam */
1138 *plparam = (LPARAM)cs;
1139 }
1140 return 1;
1141 case WM_PARENTNOTIFY:
1142 if ((wParam16 == WM_CREATE) || (wParam16 == WM_DESTROY))
1143 {
1144 *pwparam32 = MAKEWPARAM( wParam16, HIWORD(*plparam) );
Alexandre Julliarda3960291999-02-26 11:11:13 +00001145 *plparam = (LPARAM)(HWND)LOWORD(*plparam);
Alexandre Julliard3051b641996-07-05 17:14:13 +00001146 }
Alexandre Julliard3051b641996-07-05 17:14:13 +00001147 return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001148 case WM_WINDOWPOSCHANGING:
1149 case WM_WINDOWPOSCHANGED:
1150 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001151 WINDOWPOS *wp = (WINDOWPOS *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001152 sizeof(*wp) + sizeof(LPARAM) );
1153 if (!wp) return -1;
1154 STRUCT32_WINDOWPOS16to32( (WINDOWPOS16 *)PTR_SEG_TO_LIN(*plparam),
1155 wp );
1156 *(LPARAM *)(wp + 1) = *plparam; /* Store the previous lParam */
1157 *plparam = (LPARAM)wp;
1158 }
1159 return 1;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001160 case WM_GETDLGCODE:
Alexandre Julliard463b7131998-11-01 16:23:54 +00001161 if (*plparam)
Ove Kaaven748acbb1998-11-01 15:27:12 +00001162 {
1163 LPMSG16 msg16 = (LPMSG16)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001164 LPMSG msg32 = (LPMSG)HeapAlloc( SystemHeap, 0, sizeof(MSG) );
Ove Kaaven748acbb1998-11-01 15:27:12 +00001165
1166 if (!msg32) return -1;
1167 msg32->hwnd = msg16->hwnd;
1168 msg32->lParam = msg16->lParam;
1169 msg32->time = msg16->time;
1170 CONV_POINT16TO32(&msg16->pt,&msg32->pt);
1171 /* this is right, right? */
1172 if (WINPROC_MapMsg16To32A(msg16->message,msg16->wParam,
1173 &msg32->message,&msg32->wParam,
1174 &msg32->lParam)<0) {
1175 HeapFree( SystemHeap, 0, msg32 );
1176 return -1;
1177 }
1178 *plparam = (LPARAM)msg32;
Alexandre Julliard463b7131998-11-01 16:23:54 +00001179 return 1;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001180 }
Alexandre Julliard463b7131998-11-01 16:23:54 +00001181 else return 0;
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001182 case WM_NOTIFY:
1183 *plparam = (LPARAM)PTR_SEG_TO_LIN(*plparam);
1184 return 1;
Alexandre Julliard638f1691999-01-17 16:32:32 +00001185 case WM_ACTIVATEAPP:
1186 if (*plparam)
1187 { /* We need this when SetActiveWindow sends a Sendmessage16() to
1188 a 32bit window. Might be superflous with 32bit interprocess
1189 message queues.
1190 */
1191 HTASK16 htask = (HTASK16) *plparam;
Alexandre Julliard0a860a01999-06-22 11:43:42 +00001192 DWORD idThread = (DWORD)((TDB*)GlobalLock16(htask))->teb->tid;
Alexandre Julliard638f1691999-01-17 16:32:32 +00001193 *plparam = (LPARAM) idThread;
1194 }
1195 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001196 case WM_ASKCBFORMATNAME:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001197 case WM_DEVMODECHANGE:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001198 case WM_PAINTCLIPBOARD:
1199 case WM_SIZECLIPBOARD:
1200 case WM_WININICHANGE:
Alexandre Julliard06c275a1999-05-02 14:32:27 +00001201 FIXME_(msg)("message %04x needs translation\n",msg16 );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001202 return -1;
1203
1204 default: /* No translation needed */
1205 return 0;
1206 }
1207}
1208
1209
1210/**********************************************************************
1211 * WINPROC_UnmapMsg16To32A
1212 *
1213 * Unmap a message that was mapped from 16- to 32-bit Ansi.
1214 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001215LRESULT WINPROC_UnmapMsg16To32A( HWND16 hwnd, UINT msg, WPARAM wParam, LPARAM lParam,
Alexandre Julliard491502b1997-11-01 19:08:16 +00001216 LRESULT result )
Alexandre Julliard3051b641996-07-05 17:14:13 +00001217{
1218 switch(msg)
1219 {
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001220 case WM_COMPAREITEM:
1221 case WM_DELETEITEM:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001222 case WM_DRAWITEM:
1223 HeapFree( SystemHeap, 0, (LPVOID)lParam );
1224 break;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001225 case WM_MEASUREITEM:
1226 {
1227 MEASUREITEMSTRUCT16 *mis16;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001228 MEASUREITEMSTRUCT *mis = (MEASUREITEMSTRUCT *)lParam;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001229 lParam = *(LPARAM *)(mis + 1);
1230 mis16 = (MEASUREITEMSTRUCT16 *)PTR_SEG_TO_LIN(lParam);
1231 mis16->itemWidth = (UINT16)mis->itemWidth;
1232 mis16->itemHeight = (UINT16)mis->itemHeight;
1233 HeapFree( SystemHeap, 0, mis );
1234 }
1235 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001236 case WM_GETMINMAXINFO:
1237 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001238 MINMAXINFO *mmi = (MINMAXINFO *)lParam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001239 lParam = *(LPARAM *)(mmi + 1);
1240 STRUCT32_MINMAXINFO32to16( mmi,
1241 (MINMAXINFO16 *)PTR_SEG_TO_LIN(lParam));
1242 HeapFree( SystemHeap, 0, mmi );
1243 }
1244 break;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001245 case WM_MDICREATE:
1246 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001247 MDICREATESTRUCTA *cs = (MDICREATESTRUCTA *)lParam;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001248 lParam = *(LPARAM *)(cs + 1);
1249 STRUCT32_MDICREATESTRUCT32Ato16( cs,
1250 (MDICREATESTRUCT16 *)PTR_SEG_TO_LIN(lParam) );
1251 HeapFree( SystemHeap, 0, cs );
1252 }
1253 break;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001254 case WM_MDIGETACTIVE:
Alexandre Julliarda3960291999-02-26 11:11:13 +00001255 result = MAKELONG( LOWORD(result), (BOOL16)(*(BOOL *)lParam) );
1256 HeapFree( SystemHeap, 0, (BOOL *)lParam );
Alexandre Julliard491502b1997-11-01 19:08:16 +00001257 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001258 case WM_NCCALCSIZE:
1259 {
1260 NCCALCSIZE_PARAMS16 *nc16;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001261 NCCALCSIZE_PARAMS *nc = (NCCALCSIZE_PARAMS *)lParam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001262 lParam = *(LPARAM *)(nc + 1);
1263 nc16 = (NCCALCSIZE_PARAMS16 *)PTR_SEG_TO_LIN(lParam);
1264 CONV_RECT32TO16( &nc->rgrc[0], &nc16->rgrc[0] );
1265 if (wParam)
1266 {
1267 CONV_RECT32TO16( &nc->rgrc[1], &nc16->rgrc[1] );
1268 CONV_RECT32TO16( &nc->rgrc[2], &nc16->rgrc[2] );
1269 if (nc->lppos)
1270 {
1271 STRUCT32_WINDOWPOS32to16( nc->lppos,
1272 (WINDOWPOS16 *)PTR_SEG_TO_LIN(nc16->lppos));
1273 HeapFree( SystemHeap, 0, nc->lppos );
1274 }
1275 }
1276 HeapFree( SystemHeap, 0, nc );
1277 }
1278 break;
1279 case WM_NCCREATE:
1280 case WM_CREATE:
1281 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001282 CREATESTRUCTA *cs = (CREATESTRUCTA *)lParam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001283 lParam = *(LPARAM *)(cs + 1);
1284 STRUCT32_CREATESTRUCT32Ato16( cs,
1285 (CREATESTRUCT16 *)PTR_SEG_TO_LIN(lParam) );
1286 HeapFree( SystemHeap, 0, cs );
1287 }
1288 break;
1289 case WM_WINDOWPOSCHANGING:
1290 case WM_WINDOWPOSCHANGED:
1291 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001292 WINDOWPOS *wp = (WINDOWPOS *)lParam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001293 lParam = *(LPARAM *)(wp + 1);
1294 STRUCT32_WINDOWPOS32to16(wp,(WINDOWPOS16 *)PTR_SEG_TO_LIN(lParam));
1295 HeapFree( SystemHeap, 0, wp );
1296 }
1297 break;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001298 case WM_GETDLGCODE:
Alexandre Julliard463b7131998-11-01 16:23:54 +00001299 if (lParam)
Ove Kaaven748acbb1998-11-01 15:27:12 +00001300 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001301 LPMSG msg32 = (LPMSG)lParam;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001302
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00001303 WINPROC_UnmapMsg16To32A( hwnd, msg32->message, msg32->wParam, msg32->lParam,
Ove Kaaven748acbb1998-11-01 15:27:12 +00001304 result);
1305 HeapFree( SystemHeap, 0, msg32 );
1306 }
1307 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001308 }
Alexandre Julliard491502b1997-11-01 19:08:16 +00001309 return result;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001310}
1311
1312
1313/**********************************************************************
1314 * WINPROC_MapMsg16To32W
1315 *
1316 * Map a message from 16- to 32-bit Unicode.
1317 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1318 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001319INT WINPROC_MapMsg16To32W( HWND16 hwnd, UINT16 msg16, WPARAM16 wParam16, UINT *pmsg32,
1320 WPARAM *pwparam32, LPARAM *plparam )
Alexandre Julliard3051b641996-07-05 17:14:13 +00001321{
1322 switch(msg16)
1323 {
1324 case WM_GETTEXT:
1325 case WM_SETTEXT:
1326 *plparam = (LPARAM)PTR_SEG_TO_LIN(*plparam);
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00001327 return WINPROC_MapMsg32ATo32W( hwnd, *pmsg32, *pwparam32, plparam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001328 case WM_NCCREATE:
1329 case WM_CREATE:
1330 {
1331 CREATESTRUCT16 *cs16 = (CREATESTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001332 CREATESTRUCTW *cs = (CREATESTRUCTW *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001333 sizeof(*cs) + sizeof(LPARAM) );
1334 if (!cs) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001335 STRUCT32_CREATESTRUCT16to32A( cs16, (CREATESTRUCTA *)cs );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001336 cs->lpszName = (LPCWSTR)PTR_SEG_TO_LIN(cs16->lpszName);
1337 cs->lpszClass = (LPCWSTR)PTR_SEG_TO_LIN(cs16->lpszClass);
1338 if (HIWORD(cs->lpszName))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001339 cs->lpszName = HEAP_strdupAtoW( SystemHeap, 0,
1340 (LPCSTR)cs->lpszName );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001341 if (HIWORD(cs->lpszClass))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001342 cs->lpszClass = HEAP_strdupAtoW( SystemHeap, 0,
1343 (LPCSTR)cs->lpszClass );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001344 *(LPARAM *)(cs + 1) = *plparam; /* Store the previous lParam */
1345 *plparam = (LPARAM)cs;
1346 }
1347 return 1;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001348 case WM_MDICREATE:
1349 {
1350 MDICREATESTRUCT16 *cs16 =
1351 (MDICREATESTRUCT16 *)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001352 MDICREATESTRUCTW *cs =
1353 (MDICREATESTRUCTW *)HeapAlloc( SystemHeap, 0,
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001354 sizeof(*cs) + sizeof(LPARAM) );
1355 if (!cs) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001356 STRUCT32_MDICREATESTRUCT16to32A( cs16, (MDICREATESTRUCTA *)cs );
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001357 cs->szTitle = (LPCWSTR)PTR_SEG_TO_LIN(cs16->szTitle);
1358 cs->szClass = (LPCWSTR)PTR_SEG_TO_LIN(cs16->szClass);
1359 if (HIWORD(cs->szTitle))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001360 cs->szTitle = HEAP_strdupAtoW( SystemHeap, 0,
1361 (LPCSTR)cs->szTitle );
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001362 if (HIWORD(cs->szClass))
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001363 cs->szClass = HEAP_strdupAtoW( SystemHeap, 0,
1364 (LPCSTR)cs->szClass );
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001365 *(LPARAM *)(cs + 1) = *plparam; /* Store the previous lParam */
1366 *plparam = (LPARAM)cs;
1367 }
1368 return 1;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001369 case WM_GETDLGCODE:
Alexandre Julliard463b7131998-11-01 16:23:54 +00001370 if (*plparam)
Ove Kaaven748acbb1998-11-01 15:27:12 +00001371 {
1372 LPMSG16 msg16 = (LPMSG16)PTR_SEG_TO_LIN(*plparam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001373 LPMSG msg32 = (LPMSG)HeapAlloc( SystemHeap, 0, sizeof(MSG) );
Ove Kaaven748acbb1998-11-01 15:27:12 +00001374
1375 if (!msg32) return -1;
1376 msg32->hwnd = msg16->hwnd;
1377 msg32->lParam = msg16->lParam;
1378 msg32->time = msg16->time;
1379 CONV_POINT16TO32(&msg16->pt,&msg32->pt);
1380 /* this is right, right? */
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00001381 if (WINPROC_MapMsg16To32W(hwnd, msg16->message,msg16->wParam,
Ove Kaaven748acbb1998-11-01 15:27:12 +00001382 &msg32->message,&msg32->wParam,
1383 &msg32->lParam)<0) {
1384 HeapFree( SystemHeap, 0, msg32 );
1385 return -1;
1386 }
1387 *plparam = (LPARAM)msg32;
Alexandre Julliard463b7131998-11-01 16:23:54 +00001388 return 1;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001389 }
Alexandre Julliard463b7131998-11-01 16:23:54 +00001390 else return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001391 default: /* No Unicode translation needed */
1392 return WINPROC_MapMsg16To32A( msg16, wParam16, pmsg32,
1393 pwparam32, plparam );
1394 }
1395}
1396
1397
1398/**********************************************************************
1399 * WINPROC_UnmapMsg16To32W
1400 *
1401 * Unmap a message that was mapped from 16- to 32-bit Unicode.
1402 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001403LRESULT WINPROC_UnmapMsg16To32W( HWND16 hwnd, UINT msg, WPARAM wParam, LPARAM lParam,
Alexandre Julliard491502b1997-11-01 19:08:16 +00001404 LRESULT result )
Alexandre Julliard3051b641996-07-05 17:14:13 +00001405{
1406 switch(msg)
1407 {
1408 case WM_GETTEXT:
1409 case WM_SETTEXT:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00001410 WINPROC_UnmapMsg32ATo32W( hwnd, msg, wParam, lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001411 break;
1412 case WM_NCCREATE:
1413 case WM_CREATE:
1414 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001415 CREATESTRUCTW *cs = (CREATESTRUCTW *)lParam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001416 lParam = *(LPARAM *)(cs + 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001417 STRUCT32_CREATESTRUCT32Ato16( (CREATESTRUCTA *)cs,
Alexandre Julliard3051b641996-07-05 17:14:13 +00001418 (CREATESTRUCT16 *)PTR_SEG_TO_LIN(lParam) );
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001419 if (HIWORD(cs->lpszName))
1420 HeapFree( SystemHeap, 0, (LPVOID)cs->lpszName );
1421 if (HIWORD(cs->lpszClass))
1422 HeapFree( SystemHeap, 0, (LPVOID)cs->lpszClass );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001423 HeapFree( SystemHeap, 0, cs );
1424 }
1425 break;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001426 case WM_MDICREATE:
1427 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001428 MDICREATESTRUCTW *cs = (MDICREATESTRUCTW *)lParam;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001429 lParam = *(LPARAM *)(cs + 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001430 STRUCT32_MDICREATESTRUCT32Ato16( (MDICREATESTRUCTA *)cs,
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001431 (MDICREATESTRUCT16 *)PTR_SEG_TO_LIN(lParam) );
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00001432 if (HIWORD(cs->szTitle))
1433 HeapFree( SystemHeap, 0, (LPVOID)cs->szTitle );
1434 if (HIWORD(cs->szClass))
1435 HeapFree( SystemHeap, 0, (LPVOID)cs->szClass );
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001436 HeapFree( SystemHeap, 0, cs );
1437 }
1438 break;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001439 case WM_GETDLGCODE:
Alexandre Julliard463b7131998-11-01 16:23:54 +00001440 if (lParam)
Ove Kaaven748acbb1998-11-01 15:27:12 +00001441 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001442 LPMSG msg32 = (LPMSG)lParam;
Ove Kaaven748acbb1998-11-01 15:27:12 +00001443
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00001444 WINPROC_UnmapMsg16To32W( hwnd, msg32->message, msg32->wParam, msg32->lParam,
Ove Kaaven748acbb1998-11-01 15:27:12 +00001445 result);
1446 HeapFree( SystemHeap, 0, msg32 );
1447 }
1448 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001449 default:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00001450 return WINPROC_UnmapMsg16To32A( hwnd, msg, wParam, lParam, result );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001451 }
Alexandre Julliard491502b1997-11-01 19:08:16 +00001452 return result;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001453}
1454
1455
1456/**********************************************************************
1457 * WINPROC_MapMsg32ATo16
1458 *
1459 * Map a message from 32-bit Ansi to 16-bit.
1460 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
1461 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001462INT WINPROC_MapMsg32ATo16( HWND hwnd, UINT msg32, WPARAM wParam32,
Alexandre Julliard491502b1997-11-01 19:08:16 +00001463 UINT16 *pmsg16, WPARAM16 *pwparam16,
1464 LPARAM *plparam )
Alexandre Julliard3051b641996-07-05 17:14:13 +00001465{
1466 *pmsg16 = (UINT16)msg32;
1467 *pwparam16 = (WPARAM16)LOWORD(wParam32);
1468 switch(msg32)
1469 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001470 case BM_GETCHECK:
1471 case BM_SETCHECK:
1472 case BM_GETSTATE:
1473 case BM_SETSTATE:
1474 case BM_SETSTYLE:
1475 *pmsg16 = (UINT16)msg32 + (BM_GETCHECK16 - BM_GETCHECK);
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +00001476 return 0;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001477
Alexandre Julliarda3960291999-02-26 11:11:13 +00001478 case EM_GETSEL:
1479 case EM_GETRECT:
1480 case EM_SETRECT:
1481 case EM_SETRECTNP:
1482 case EM_SCROLL:
1483 case EM_LINESCROLL:
1484 case EM_SCROLLCARET:
1485 case EM_GETMODIFY:
1486 case EM_SETMODIFY:
1487 case EM_GETLINECOUNT:
1488 case EM_LINEINDEX:
1489 case EM_SETHANDLE:
1490 case EM_GETHANDLE:
1491 case EM_GETTHUMB:
1492 case EM_LINELENGTH:
1493 case EM_REPLACESEL:
1494 case EM_GETLINE:
1495 case EM_LIMITTEXT:
1496 case EM_CANUNDO:
1497 case EM_UNDO:
1498 case EM_FMTLINES:
1499 case EM_LINEFROMCHAR:
1500 case EM_SETTABSTOPS:
1501 case EM_SETPASSWORDCHAR:
1502 case EM_EMPTYUNDOBUFFER:
1503 case EM_GETFIRSTVISIBLELINE:
1504 case EM_SETREADONLY:
1505 case EM_SETWORDBREAKPROC:
1506 case EM_GETWORDBREAKPROC:
1507 case EM_GETPASSWORDCHAR:
1508 *pmsg16 = (UINT16)msg32 + (EM_GETSEL16 - EM_GETSEL);
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001509 return 0;
1510
Alexandre Julliarda3960291999-02-26 11:11:13 +00001511 case LB_CARETOFF:
1512 case LB_CARETON:
1513 case LB_DELETESTRING:
1514 case LB_GETANCHORINDEX:
1515 case LB_GETCARETINDEX:
1516 case LB_GETCOUNT:
1517 case LB_GETCURSEL:
1518 case LB_GETHORIZONTALEXTENT:
1519 case LB_GETITEMDATA:
1520 case LB_GETITEMHEIGHT:
1521 case LB_GETSEL:
1522 case LB_GETSELCOUNT:
1523 case LB_GETTEXTLEN:
1524 case LB_GETTOPINDEX:
1525 case LB_RESETCONTENT:
1526 case LB_SELITEMRANGE:
1527 case LB_SELITEMRANGEEX:
1528 case LB_SETANCHORINDEX:
1529 case LB_SETCARETINDEX:
1530 case LB_SETCOLUMNWIDTH:
1531 case LB_SETCURSEL:
1532 case LB_SETHORIZONTALEXTENT:
1533 case LB_SETITEMDATA:
1534 case LB_SETITEMHEIGHT:
1535 case LB_SETSEL:
1536 case LB_SETTOPINDEX:
1537 *pmsg16 = (UINT16)msg32 + (LB_ADDSTRING16 - LB_ADDSTRING);
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001538 return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001539 case CB_DELETESTRING:
1540 case CB_GETCOUNT:
1541 case CB_GETLBTEXTLEN:
1542 case CB_LIMITTEXT:
1543 case CB_RESETCONTENT:
1544 case CB_SETEDITSEL:
1545 case CB_GETCURSEL:
1546 case CB_SETCURSEL:
1547 case CB_SHOWDROPDOWN:
1548 case CB_SETITEMDATA:
1549 case CB_SETITEMHEIGHT:
1550 case CB_GETITEMHEIGHT:
1551 case CB_SETEXTENDEDUI:
1552 case CB_GETEXTENDEDUI:
1553 case CB_GETDROPPEDSTATE:
1554 *pmsg16 = (UINT16)msg32 + (CB_GETEDITSEL16 - CB_GETEDITSEL);
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001555 return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001556 case CB_GETEDITSEL:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001557 *pmsg16 = CB_GETEDITSEL16;
1558 return 1;
1559
Alexandre Julliarda3960291999-02-26 11:11:13 +00001560 case LB_ADDSTRING:
1561 case LB_FINDSTRING:
1562 case LB_FINDSTRINGEXACT:
1563 case LB_INSERTSTRING:
1564 case LB_SELECTSTRING:
1565 case LB_DIR:
1566 case LB_ADDFILE:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001567 {
1568 LPSTR str = SEGPTR_STRDUP( (LPSTR)*plparam );
1569 if (!str) return -1;
1570 *plparam = (LPARAM)SEGPTR_GET(str);
1571 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00001572 *pmsg16 = (UINT16)msg32 + (LB_ADDSTRING16 - LB_ADDSTRING);
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001573 return 1;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001574
Alexandre Julliarda3960291999-02-26 11:11:13 +00001575 case CB_ADDSTRING:
1576 case CB_FINDSTRING:
1577 case CB_FINDSTRINGEXACT:
1578 case CB_INSERTSTRING:
1579 case CB_SELECTSTRING:
1580 case CB_DIR:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001581 {
1582 LPSTR str = SEGPTR_STRDUP( (LPSTR)*plparam );
1583 if (!str) return -1;
1584 *plparam = (LPARAM)SEGPTR_GET(str);
1585 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00001586 *pmsg16 = (UINT16)msg32 + (CB_GETEDITSEL16 - CB_GETEDITSEL);
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001587 return 1;
1588
Alexandre Julliarda3960291999-02-26 11:11:13 +00001589 case LB_GETITEMRECT:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001590 {
1591 RECT16 *rect;
1592 rect = (RECT16 *)SEGPTR_ALLOC( sizeof(RECT16) + sizeof(LPARAM) );
1593 if (!rect) return -1;
1594 *(LPARAM *)(rect + 1) = *plparam; /* Store the previous lParam */
1595 *plparam = (LPARAM)SEGPTR_GET(rect);
1596 }
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001597 *pmsg16 = LB_GETITEMRECT16;
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001598 return 1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001599 case LB_GETSELITEMS:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001600 {
1601 LPINT16 items;
1602 *pwparam16 = (WPARAM16)MIN( wParam32, 0x7f80 ); /* Must be < 64K */
1603 if (!(items = SEGPTR_ALLOC( *pwparam16 * sizeof(INT16)
1604 + sizeof(LPARAM)))) return -1;
1605 *((LPARAM *)items)++ = *plparam; /* Store the previous lParam */
1606 *plparam = (LPARAM)SEGPTR_GET(items);
1607 }
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001608 *pmsg16 = LB_GETSELITEMS16;
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001609 return 1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001610 case LB_SETTABSTOPS:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001611 if (wParam32)
1612 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001613 INT i;
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001614 LPINT16 stops;
1615 *pwparam16 = (WPARAM16)MIN( wParam32, 0x7f80 ); /* Must be < 64K */
1616 if (!(stops = SEGPTR_ALLOC( *pwparam16 * sizeof(INT16)
1617 + sizeof(LPARAM)))) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001618 for (i = 0; i < *pwparam16; i++) stops[i] = *((LPINT)*plparam+i);
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001619 *plparam = (LPARAM)SEGPTR_GET(stops);
1620 return 1;
1621 }
1622 *pmsg16 = LB_SETTABSTOPS16;
1623 return 0;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001624
Alexandre Julliarda3960291999-02-26 11:11:13 +00001625 case CB_GETDROPPEDCONTROLRECT:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001626 {
1627 RECT16 *rect;
1628 rect = (RECT16 *)SEGPTR_ALLOC( sizeof(RECT16) + sizeof(LPARAM) );
1629 if (!rect) return -1;
1630 *(LPARAM *)(rect + 1) = *plparam; /* Store the previous lParam */
1631 *plparam = (LPARAM)SEGPTR_GET(rect);
1632 }
1633 *pmsg16 = CB_GETDROPPEDCONTROLRECT16;
1634 return 1;
1635
Alexandre Julliarda3960291999-02-26 11:11:13 +00001636 case LB_GETTEXT:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001637 *plparam = (LPARAM)MapLS( (LPVOID)(*plparam) );
1638 *pmsg16 = LB_GETTEXT16;
1639 return 1;
1640
Alexandre Julliarda3960291999-02-26 11:11:13 +00001641 case CB_GETLBTEXT:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001642 *plparam = (LPARAM)MapLS( (LPVOID)(*plparam) );
1643 *pmsg16 = CB_GETLBTEXT16;
1644 return 1;
1645
Alexandre Julliarda3960291999-02-26 11:11:13 +00001646 case EM_SETSEL:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001647 *pwparam16 = 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001648 *plparam = MAKELONG( (INT16)(INT)wParam32, (INT16)*plparam );
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001649 *pmsg16 = EM_SETSEL16;
1650 return 0;
1651
Alexandre Julliard3051b641996-07-05 17:14:13 +00001652 case WM_ACTIVATE:
1653 case WM_CHARTOITEM:
1654 case WM_COMMAND:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001655 case WM_VKEYTOITEM:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001656 *plparam = MAKELPARAM( (HWND16)*plparam, HIWORD(wParam32) );
1657 return 0;
Alexandre Julliardca22b331996-07-12 19:02:39 +00001658 case WM_HSCROLL:
1659 case WM_VSCROLL:
1660 *plparam = MAKELPARAM( HIWORD(wParam32), (HWND16)*plparam );
1661 return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001662 case WM_CTLCOLORMSGBOX:
1663 case WM_CTLCOLOREDIT:
1664 case WM_CTLCOLORLISTBOX:
1665 case WM_CTLCOLORBTN:
1666 case WM_CTLCOLORDLG:
1667 case WM_CTLCOLORSCROLLBAR:
1668 case WM_CTLCOLORSTATIC:
1669 *pmsg16 = WM_CTLCOLOR;
1670 *plparam = MAKELPARAM( (HWND16)*plparam,
1671 (WORD)msg32 - WM_CTLCOLORMSGBOX );
1672 return 0;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001673 case WM_COMPAREITEM:
1674 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001675 COMPAREITEMSTRUCT *cis32 = (COMPAREITEMSTRUCT *)*plparam;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001676 COMPAREITEMSTRUCT16 *cis = SEGPTR_NEW(COMPAREITEMSTRUCT16);
1677 if (!cis) return -1;
1678 cis->CtlType = (UINT16)cis32->CtlType;
1679 cis->CtlID = (UINT16)cis32->CtlID;
1680 cis->hwndItem = (HWND16)cis32->hwndItem;
1681 cis->itemID1 = (UINT16)cis32->itemID1;
1682 cis->itemData1 = cis32->itemData1;
1683 cis->itemID2 = (UINT16)cis32->itemID2;
1684 cis->itemData2 = cis32->itemData2;
1685 *plparam = (LPARAM)SEGPTR_GET(cis);
1686 }
1687 return 1;
1688 case WM_DELETEITEM:
1689 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001690 DELETEITEMSTRUCT *dis32 = (DELETEITEMSTRUCT *)*plparam;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001691 DELETEITEMSTRUCT16 *dis = SEGPTR_NEW(DELETEITEMSTRUCT16);
1692 if (!dis) return -1;
1693 dis->CtlType = (UINT16)dis32->CtlType;
1694 dis->CtlID = (UINT16)dis32->CtlID;
1695 dis->itemID = (UINT16)dis32->itemID;
1696 dis->hwndItem = (HWND16)dis32->hwndItem;
1697 dis->itemData = dis32->itemData;
1698 *plparam = (LPARAM)SEGPTR_GET(dis);
1699 }
1700 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001701 case WM_DRAWITEM:
1702 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001703 DRAWITEMSTRUCT *dis32 = (DRAWITEMSTRUCT *)*plparam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001704 DRAWITEMSTRUCT16 *dis = SEGPTR_NEW(DRAWITEMSTRUCT16);
1705 if (!dis) return -1;
1706 dis->CtlType = (UINT16)dis32->CtlType;
1707 dis->CtlID = (UINT16)dis32->CtlID;
1708 dis->itemID = (UINT16)dis32->itemID;
1709 dis->itemAction = (UINT16)dis32->itemAction;
1710 dis->itemState = (UINT16)dis32->itemState;
1711 dis->hwndItem = (HWND16)dis32->hwndItem;
1712 dis->hDC = (HDC16)dis32->hDC;
1713 dis->itemData = dis32->itemData;
1714 CONV_RECT32TO16( &dis32->rcItem, &dis->rcItem );
1715 *plparam = (LPARAM)SEGPTR_GET(dis);
1716 }
1717 return 1;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001718 case WM_MEASUREITEM:
1719 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001720 MEASUREITEMSTRUCT *mis32 = (MEASUREITEMSTRUCT *)*plparam;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001721 MEASUREITEMSTRUCT16 *mis = (MEASUREITEMSTRUCT16 *)
1722 SEGPTR_ALLOC(sizeof(*mis)+sizeof(LPARAM));
1723 if (!mis) return -1;
1724 mis->CtlType = (UINT16)mis32->CtlType;
1725 mis->CtlID = (UINT16)mis32->CtlID;
1726 mis->itemID = (UINT16)mis32->itemID;
1727 mis->itemWidth = (UINT16)mis32->itemWidth;
1728 mis->itemHeight = (UINT16)mis32->itemHeight;
1729 mis->itemData = mis32->itemData;
1730 *(LPARAM *)(mis + 1) = *plparam; /* Store the previous lParam */
1731 *plparam = (LPARAM)SEGPTR_GET(mis);
1732 }
1733 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001734 case WM_GETMINMAXINFO:
1735 {
1736 MINMAXINFO16 *mmi = (MINMAXINFO16 *)SEGPTR_ALLOC( sizeof(*mmi) +
1737 sizeof(LPARAM) );
1738 if (!mmi) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001739 STRUCT32_MINMAXINFO32to16( (MINMAXINFO *)*plparam, mmi );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001740 *(LPARAM *)(mmi + 1) = *plparam; /* Store the previous lParam */
1741 *plparam = (LPARAM)SEGPTR_GET(mmi);
1742 }
1743 return 1;
1744 case WM_GETTEXT:
1745 {
1746 LPSTR str;
1747 *pwparam16 = (WPARAM16)MIN( wParam32, 0xff80 ); /* Must be < 64K */
1748 if (!(str = SEGPTR_ALLOC(*pwparam16 + sizeof(LPARAM)))) return -1;
1749 *((LPARAM *)str)++ = *plparam; /* Store the previous lParam */
1750 *plparam = (LPARAM)SEGPTR_GET(str);
1751 }
1752 return 1;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001753 case WM_MDICREATE:
1754 {
1755 MDICREATESTRUCT16 *cs;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001756 MDICREATESTRUCTA *cs32 = (MDICREATESTRUCTA *)*plparam;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001757 LPSTR name, cls;
1758
1759 if (!(cs = SEGPTR_NEW(MDICREATESTRUCT16))) return -1;
1760 STRUCT32_MDICREATESTRUCT32Ato16( cs32, cs );
1761 name = SEGPTR_STRDUP( cs32->szTitle );
1762 cls = SEGPTR_STRDUP( cs32->szClass );
1763 cs->szTitle = SEGPTR_GET(name);
1764 cs->szClass = SEGPTR_GET(cls);
1765 *plparam = (LPARAM)SEGPTR_GET(cs);
1766 }
1767 return 1;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001768 case WM_MDIGETACTIVE:
1769 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001770 case WM_MDISETMENU:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001771 *plparam = MAKELPARAM( (HMENU16)LOWORD(wParam32),
1772 (HMENU16)LOWORD(*plparam) );
Alexandre Julliard491502b1997-11-01 19:08:16 +00001773 *pwparam16 = (*plparam == 0);
Alexandre Julliard3051b641996-07-05 17:14:13 +00001774 return 0;
1775 case WM_MENUCHAR:
1776 case WM_MENUSELECT:
1777 *plparam = MAKELPARAM( HIWORD(wParam32), (HMENU16)*plparam );
1778 return 0;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001779 case WM_MDIACTIVATE:
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001780 {
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001781 WND *tempWnd = WIN_FindWndPtr(hwnd);
1782 if( WIDGETS_IsControl(tempWnd, BIC32_MDICLIENT) )
1783 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001784 *pwparam16 = (HWND)wParam32;
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001785 *plparam = 0;
1786 }
1787 else
1788 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001789 *pwparam16 = ((HWND)*plparam == hwnd);
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001790 *plparam = MAKELPARAM( (HWND16)LOWORD(*plparam),
1791 (HWND16)LOWORD(wParam32) );
1792 }
Francois Boisvert6b1b41c1999-03-14 17:25:32 +00001793 WIN_ReleaseWndPtr(tempWnd);
1794 }
Alexandre Julliard491502b1997-11-01 19:08:16 +00001795 return 0;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001796 case WM_NCCALCSIZE:
1797 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001798 NCCALCSIZE_PARAMS *nc32 = (NCCALCSIZE_PARAMS *)*plparam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001799 NCCALCSIZE_PARAMS16 *nc = (NCCALCSIZE_PARAMS16 *)SEGPTR_ALLOC( sizeof(*nc) + sizeof(LPARAM) );
1800 if (!nc) return -1;
1801
1802 CONV_RECT32TO16( &nc32->rgrc[0], &nc->rgrc[0] );
1803 if (wParam32)
1804 {
1805 WINDOWPOS16 *wp;
1806 CONV_RECT32TO16( &nc32->rgrc[1], &nc->rgrc[1] );
1807 CONV_RECT32TO16( &nc32->rgrc[2], &nc->rgrc[2] );
1808 if (!(wp = SEGPTR_NEW(WINDOWPOS16)))
1809 {
1810 SEGPTR_FREE(nc);
1811 return -1;
1812 }
1813 STRUCT32_WINDOWPOS32to16( nc32->lppos, wp );
1814 nc->lppos = SEGPTR_GET(wp);
1815 }
1816 *(LPARAM *)(nc + 1) = *plparam; /* Store the previous lParam */
1817 *plparam = (LPARAM)SEGPTR_GET(nc);
1818 }
1819 return 1;
1820 case WM_NCCREATE:
1821 case WM_CREATE:
1822 {
1823 CREATESTRUCT16 *cs;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001824 CREATESTRUCTA *cs32 = (CREATESTRUCTA *)*plparam;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001825 LPSTR name, cls;
1826
1827 if (!(cs = SEGPTR_NEW(CREATESTRUCT16))) return -1;
1828 STRUCT32_CREATESTRUCT32Ato16( cs32, cs );
1829 name = SEGPTR_STRDUP( cs32->lpszName );
1830 cls = SEGPTR_STRDUP( cs32->lpszClass );
1831 cs->lpszName = SEGPTR_GET(name);
1832 cs->lpszClass = SEGPTR_GET(cls);
1833 *plparam = (LPARAM)SEGPTR_GET(cs);
1834 }
1835 return 1;
1836 case WM_PARENTNOTIFY:
1837 if ((LOWORD(wParam32)==WM_CREATE) || (LOWORD(wParam32)==WM_DESTROY))
1838 *plparam = MAKELPARAM( (HWND16)*plparam, HIWORD(wParam32));
1839 /* else nothing to do */
1840 return 0;
Alexandre Julliarddadf78f1998-05-17 17:13:43 +00001841 case WM_NOTIFY:
1842 *plparam = MapLS( (NMHDR *)*plparam ); /* NMHDR is already 32-bit */
1843 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001844 case WM_SETTEXT:
1845 {
1846 LPSTR str = SEGPTR_STRDUP( (LPSTR)*plparam );
1847 if (!str) return -1;
1848 *plparam = (LPARAM)SEGPTR_GET(str);
1849 }
1850 return 1;
1851 case WM_WINDOWPOSCHANGING:
1852 case WM_WINDOWPOSCHANGED:
1853 {
1854 WINDOWPOS16 *wp = (WINDOWPOS16 *)SEGPTR_ALLOC( sizeof(*wp) +
1855 sizeof(LPARAM) );
1856 if (!wp) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001857 STRUCT32_WINDOWPOS32to16( (WINDOWPOS *)*plparam, wp );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001858 *(LPARAM *)(wp + 1) = *plparam; /* Store the previous lParam */
1859 *plparam = (LPARAM)SEGPTR_GET(wp);
1860 }
1861 return 1;
Rein Klazescb505621998-11-07 12:24:21 +00001862 case WM_GETDLGCODE:
1863 if (*plparam) {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001864 LPMSG msg32 = (LPMSG) *plparam;
Rein Klazescb505621998-11-07 12:24:21 +00001865 LPMSG16 msg16 = (LPMSG16) SEGPTR_NEW( MSG16 );
1866
1867 if (!msg16) return -1;
1868 msg16->hwnd = msg32->hwnd;
1869 msg16->lParam = msg32->lParam;
1870 msg16->time = msg32->time;
1871 CONV_POINT32TO16(&msg32->pt,&msg16->pt);
1872 /* this is right, right? */
1873 if (WINPROC_MapMsg32ATo16(msg32->hwnd,msg32->message,msg32->wParam,
1874 &msg16->message,&msg16->wParam, &msg16->lParam)<0) {
1875 SEGPTR_FREE( msg16 );
1876 return -1;
1877 }
1878 *plparam = (LPARAM)SEGPTR_GET(msg16);
1879 return 1;
1880 }
1881 return 0;
1882
Alexandre Julliard638f1691999-01-17 16:32:32 +00001883 case WM_ACTIVATEAPP:
Alexandre Julliard8da12c41999-01-17 16:55:11 +00001884 if (*plparam) {
Alexandre Julliard0a860a01999-06-22 11:43:42 +00001885 *plparam = (LPARAM)THREAD_IdToTEB((DWORD) *plparam)->htask16;
Alexandre Julliard8da12c41999-01-17 16:55:11 +00001886 }
1887 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001888 case WM_ASKCBFORMATNAME:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001889 case WM_DEVMODECHANGE:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001890 case WM_PAINTCLIPBOARD:
1891 case WM_SIZECLIPBOARD:
1892 case WM_WININICHANGE:
Alexandre Julliard06c275a1999-05-02 14:32:27 +00001893 FIXME_(msg)("message %04x needs translation\n", msg32 );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001894 return -1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001895 default: /* No translation needed */
1896 return 0;
1897 }
1898}
1899
1900
1901/**********************************************************************
1902 * WINPROC_UnmapMsg32ATo16
1903 *
1904 * Unmap a message that was mapped from 32-bit Ansi to 16-bit.
1905 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001906void WINPROC_UnmapMsg32ATo16( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam,
Alexandre Julliard491502b1997-11-01 19:08:16 +00001907 MSGPARAM16* p16 )
Alexandre Julliard3051b641996-07-05 17:14:13 +00001908{
1909 switch(msg)
1910 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001911 case LB_ADDFILE:
1912 case LB_ADDSTRING:
1913 case LB_DIR:
1914 case LB_FINDSTRING:
1915 case LB_FINDSTRINGEXACT:
1916 case LB_INSERTSTRING:
1917 case LB_SELECTSTRING:
1918 case LB_SETTABSTOPS:
1919 case CB_ADDSTRING:
1920 case CB_FINDSTRING:
1921 case CB_FINDSTRINGEXACT:
1922 case CB_INSERTSTRING:
1923 case CB_SELECTSTRING:
1924 case CB_DIR:
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001925 case WM_COMPAREITEM:
1926 case WM_DELETEITEM:
Alexandre Julliard3051b641996-07-05 17:14:13 +00001927 case WM_DRAWITEM:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001928 case WM_SETTEXT:
Alexandre Julliard889f7421997-04-15 17:19:52 +00001929 SEGPTR_FREE( PTR_SEG_TO_LIN(p16->lParam) );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001930 break;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001931
Alexandre Julliarda3960291999-02-26 11:11:13 +00001932 case CB_GETDROPPEDCONTROLRECT:
1933 case LB_GETITEMRECT:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001934 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00001935 RECT16 *rect = (RECT16 *)PTR_SEG_TO_LIN(p16->lParam);
1936 p16->lParam = *(LPARAM *)(rect + 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001937 CONV_RECT16TO32( rect, (RECT *)(p16->lParam));
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001938 SEGPTR_FREE( rect );
1939 }
1940 break;
Alexandre Julliarda3960291999-02-26 11:11:13 +00001941 case LB_GETSELITEMS:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001942 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00001943 INT i;
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001944 LPINT16 items = (LPINT16)PTR_SEG_TO_LIN(lParam);
Alexandre Julliard889f7421997-04-15 17:19:52 +00001945 p16->lParam = *((LPARAM *)items - 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001946 for (i = 0; i < p16->wParam; i++) *((LPINT)(p16->lParam) + i) = items[i];
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00001947 SEGPTR_FREE( (LPARAM *)items - 1 );
1948 }
1949 break;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001950
Alexandre Julliarda3960291999-02-26 11:11:13 +00001951 case CB_GETEDITSEL:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001952 if( wParam )
Alexandre Julliarda3960291999-02-26 11:11:13 +00001953 *((LPUINT)(wParam)) = LOWORD(p16->lResult);
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001954 if( lParam )
Alexandre Julliarda3960291999-02-26 11:11:13 +00001955 *((LPUINT)(lParam)) = HIWORD(p16->lResult); /* FIXME: substract 1? */
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001956 break;
1957
Alexandre Julliarda3960291999-02-26 11:11:13 +00001958 case LB_GETTEXT:
1959 case CB_GETLBTEXT:
Alexandre Julliard889f7421997-04-15 17:19:52 +00001960 UnMapLS( (SEGPTR)(p16->lParam) );
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00001961 break;
1962
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001963 case WM_MEASUREITEM:
1964 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00001965 MEASUREITEMSTRUCT16 *mis = (MEASUREITEMSTRUCT16 *)PTR_SEG_TO_LIN(p16->lParam);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001966 MEASUREITEMSTRUCT *mis32 = *(MEASUREITEMSTRUCT **)(mis + 1);
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +00001967 mis32->itemWidth = mis->itemWidth;
1968 mis32->itemHeight = mis->itemHeight;
1969 SEGPTR_FREE(mis);
1970 }
1971 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00001972 case WM_GETMINMAXINFO:
1973 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00001974 MINMAXINFO16 *mmi = (MINMAXINFO16 *)PTR_SEG_TO_LIN(p16->lParam);
1975 p16->lParam = *(LPARAM *)(mmi + 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001976 STRUCT32_MINMAXINFO16to32( mmi, (MINMAXINFO *)(p16->lParam) );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001977 SEGPTR_FREE(mmi);
1978 }
1979 break;
1980 case WM_GETTEXT:
1981 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00001982 LPSTR str = (LPSTR)PTR_SEG_TO_LIN(p16->lParam);
1983 p16->lParam = *((LPARAM *)str - 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00001984 lstrcpynA( (LPSTR)(p16->lParam), str, p16->wParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00001985 SEGPTR_FREE( (LPARAM *)str - 1 );
1986 }
1987 break;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001988 case WM_MDICREATE:
1989 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00001990 MDICREATESTRUCT16 *cs = (MDICREATESTRUCT16*)PTR_SEG_TO_LIN(p16->lParam);
Alexandre Julliard18f92e71996-07-17 20:02:21 +00001991 SEGPTR_FREE( PTR_SEG_TO_LIN(cs->szTitle) );
1992 SEGPTR_FREE( PTR_SEG_TO_LIN(cs->szClass) );
1993 SEGPTR_FREE( cs );
1994 }
1995 break;
Alexandre Julliard491502b1997-11-01 19:08:16 +00001996 case WM_MDIGETACTIVE:
Alexandre Julliarda3960291999-02-26 11:11:13 +00001997 if (lParam) *(BOOL *)lParam = (BOOL16)HIWORD(p16->lResult);
1998 p16->lResult = (HWND)LOWORD(p16->lResult);
Alexandre Julliard491502b1997-11-01 19:08:16 +00001999 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00002000 case WM_NCCALCSIZE:
2001 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002002 NCCALCSIZE_PARAMS *nc32;
Alexandre Julliard889f7421997-04-15 17:19:52 +00002003 NCCALCSIZE_PARAMS16 *nc = (NCCALCSIZE_PARAMS16 *)PTR_SEG_TO_LIN(p16->lParam);
2004 p16->lParam = *(LPARAM *)(nc + 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002005 nc32 = (NCCALCSIZE_PARAMS *)(p16->lParam);
Alexandre Julliard3051b641996-07-05 17:14:13 +00002006 CONV_RECT16TO32( &nc->rgrc[0], &nc32->rgrc[0] );
Alexandre Julliard889f7421997-04-15 17:19:52 +00002007 if (p16->wParam)
Alexandre Julliard3051b641996-07-05 17:14:13 +00002008 {
2009 CONV_RECT16TO32( &nc->rgrc[1], &nc32->rgrc[1] );
2010 CONV_RECT16TO32( &nc->rgrc[2], &nc32->rgrc[2] );
2011 STRUCT32_WINDOWPOS16to32( (WINDOWPOS16 *)PTR_SEG_TO_LIN(nc->lppos),
2012 nc32->lppos );
2013 SEGPTR_FREE( PTR_SEG_TO_LIN(nc->lppos) );
2014 }
2015 SEGPTR_FREE(nc);
2016 }
2017 break;
2018 case WM_NCCREATE:
2019 case WM_CREATE:
2020 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00002021 CREATESTRUCT16 *cs = (CREATESTRUCT16 *)PTR_SEG_TO_LIN(p16->lParam);
Alexandre Julliard3051b641996-07-05 17:14:13 +00002022 SEGPTR_FREE( PTR_SEG_TO_LIN(cs->lpszName) );
2023 SEGPTR_FREE( PTR_SEG_TO_LIN(cs->lpszClass) );
2024 SEGPTR_FREE( cs );
2025 }
2026 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00002027 case WM_WINDOWPOSCHANGING:
2028 case WM_WINDOWPOSCHANGED:
2029 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00002030 WINDOWPOS16 *wp = (WINDOWPOS16 *)PTR_SEG_TO_LIN(p16->lParam);
2031 p16->lParam = *(LPARAM *)(wp + 1);
Alexandre Julliarda3960291999-02-26 11:11:13 +00002032 STRUCT32_WINDOWPOS16to32( wp, (WINDOWPOS *)p16->lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002033 SEGPTR_FREE(wp);
2034 }
2035 break;
Alexandre Julliarddadf78f1998-05-17 17:13:43 +00002036 case WM_NOTIFY:
2037 UnMapLS(p16->lParam);
2038 break;
Rein Klazescb505621998-11-07 12:24:21 +00002039 case WM_GETDLGCODE:
2040 if (p16->lParam)
2041 {
2042 LPMSG16 msg16 = (LPMSG16)PTR_SEG_TO_LIN(p16->lParam);
2043 MSGPARAM16 msgp16;
2044 msgp16.wParam=msg16->wParam;
2045 msgp16.lParam=msg16->lParam;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002046 WINPROC_UnmapMsg32ATo16(((LPMSG)lParam)->hwnd, ((LPMSG)lParam)->message,
2047 ((LPMSG)lParam)->wParam, ((LPMSG)lParam)->lParam,
Rein Klazescb505621998-11-07 12:24:21 +00002048 &msgp16 );
2049 SEGPTR_FREE(msg16);
2050 }
2051 break;
Alexandre Julliard3051b641996-07-05 17:14:13 +00002052 }
2053}
2054
2055
2056/**********************************************************************
2057 * WINPROC_MapMsg32WTo16
2058 *
2059 * Map a message from 32-bit Unicode to 16-bit.
2060 * Return value is -1 on error, 0 if OK, 1 if an UnmapMsg call is needed.
2061 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002062INT WINPROC_MapMsg32WTo16( HWND hwnd, UINT msg32, WPARAM wParam32,
Alexandre Julliard491502b1997-11-01 19:08:16 +00002063 UINT16 *pmsg16, WPARAM16 *pwparam16,
2064 LPARAM *plparam )
Alexandre Julliard3051b641996-07-05 17:14:13 +00002065{
2066 switch(msg32)
2067 {
Alexandre Julliarda3960291999-02-26 11:11:13 +00002068 case LB_ADDSTRING:
2069 case LB_FINDSTRING:
2070 case LB_FINDSTRINGEXACT:
2071 case LB_INSERTSTRING:
2072 case LB_SELECTSTRING:
2073 case LB_DIR:
2074 case LB_ADDFILE:
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002075 {
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00002076 LPSTR str = SEGPTR_STRDUP_WtoA( (LPWSTR)*plparam );
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002077 if (!str) return -1;
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002078 *pwparam16 = (WPARAM16)LOWORD(wParam32);
2079 *plparam = (LPARAM)SEGPTR_GET(str);
2080 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00002081 *pmsg16 = (UINT16)msg32 + (LB_ADDSTRING16 - LB_ADDSTRING);
Alexandre Julliardda0cfb31996-12-01 17:17:47 +00002082 return 1;
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00002083
Alexandre Julliarda3960291999-02-26 11:11:13 +00002084 case CB_ADDSTRING:
2085 case CB_FINDSTRING:
2086 case CB_FINDSTRINGEXACT:
2087 case CB_INSERTSTRING:
2088 case CB_SELECTSTRING:
2089 case CB_DIR:
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00002090 {
2091 LPSTR str = SEGPTR_STRDUP_WtoA( (LPWSTR)*plparam );
2092 if (!str) return -1;
2093 *pwparam16 = (WPARAM16)LOWORD(wParam32);
2094 *plparam = (LPARAM)SEGPTR_GET(str);
2095 }
Alexandre Julliarda3960291999-02-26 11:11:13 +00002096 *pmsg16 = (UINT16)msg32 + (CB_ADDSTRING16 - CB_ADDSTRING);
Alexandre Julliarddf2673b1997-03-29 17:20:20 +00002097 return 1;
2098
Alexandre Julliard3051b641996-07-05 17:14:13 +00002099 case WM_NCCREATE:
2100 case WM_CREATE:
2101 {
2102 CREATESTRUCT16 *cs;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002103 CREATESTRUCTW *cs32 = (CREATESTRUCTW *)*plparam;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00002104 LPSTR name, cls;
Alexandre Julliard3051b641996-07-05 17:14:13 +00002105
2106 if (!(cs = SEGPTR_NEW(CREATESTRUCT16))) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002107 STRUCT32_CREATESTRUCT32Ato16( (CREATESTRUCTA *)cs32, cs );
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00002108 name = SEGPTR_STRDUP_WtoA( cs32->lpszName );
2109 cls = SEGPTR_STRDUP_WtoA( cs32->lpszClass );
2110 cs->lpszName = SEGPTR_GET(name);
2111 cs->lpszClass = SEGPTR_GET(cls);
Alexandre Julliard3051b641996-07-05 17:14:13 +00002112 *pmsg16 = (UINT16)msg32;
2113 *pwparam16 = (WPARAM16)LOWORD(wParam32);
2114 *plparam = (LPARAM)SEGPTR_GET(cs);
2115 }
2116 return 1;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00002117 case WM_MDICREATE:
2118 {
2119 MDICREATESTRUCT16 *cs;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002120 MDICREATESTRUCTW *cs32 = (MDICREATESTRUCTW *)*plparam;
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00002121 LPSTR name, cls;
Alexandre Julliard18f92e71996-07-17 20:02:21 +00002122
2123 if (!(cs = SEGPTR_NEW(MDICREATESTRUCT16))) return -1;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002124 STRUCT32_MDICREATESTRUCT32Ato16( (MDICREATESTRUCTA *)cs32, cs );
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00002125 name = SEGPTR_STRDUP_WtoA( cs32->szTitle );
2126 cls = SEGPTR_STRDUP_WtoA( cs32->szClass );
2127 cs->szTitle = SEGPTR_GET(name);
2128 cs->szClass = SEGPTR_GET(cls);
Alexandre Julliard18f92e71996-07-17 20:02:21 +00002129 *pmsg16 = (UINT16)msg32;
2130 *pwparam16 = (WPARAM16)LOWORD(wParam32);
2131 *plparam = (LPARAM)SEGPTR_GET(cs);
2132 }
2133 return 1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00002134 case WM_SETTEXT:
2135 {
Alexandre Julliard7ebe1a41996-12-22 18:27:48 +00002136 LPSTR str = SEGPTR_STRDUP_WtoA( (LPWSTR)*plparam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002137 if (!str) return -1;
Alexandre Julliard3051b641996-07-05 17:14:13 +00002138 *pmsg16 = (UINT16)msg32;
2139 *pwparam16 = (WPARAM16)LOWORD(wParam32);
2140 *plparam = (LPARAM)SEGPTR_GET(str);
2141 }
2142 return 1;
2143 default: /* No Unicode translation needed */
Alexandre Julliard491502b1997-11-01 19:08:16 +00002144 return WINPROC_MapMsg32ATo16( hwnd, msg32, wParam32, pmsg16,
Alexandre Julliard3051b641996-07-05 17:14:13 +00002145 pwparam16, plparam );
2146 }
2147}
2148
2149
2150/**********************************************************************
2151 * WINPROC_UnmapMsg32WTo16
2152 *
2153 * Unmap a message that was mapped from 32-bit Unicode to 16-bit.
2154 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002155void WINPROC_UnmapMsg32WTo16( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam,
Alexandre Julliard491502b1997-11-01 19:08:16 +00002156 MSGPARAM16* p16 )
Alexandre Julliard3051b641996-07-05 17:14:13 +00002157{
2158 switch(msg)
2159 {
2160 case WM_GETTEXT:
2161 {
Alexandre Julliard889f7421997-04-15 17:19:52 +00002162 LPSTR str = (LPSTR)PTR_SEG_TO_LIN(p16->lParam);
2163 p16->lParam = *((LPARAM *)str - 1);
2164 lstrcpyAtoW( (LPWSTR)(p16->lParam), str );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002165 SEGPTR_FREE( (LPARAM *)str - 1 );
2166 }
2167 break;
2168 default:
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002169 WINPROC_UnmapMsg32ATo16( hwnd, msg, wParam, lParam, p16 );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002170 break;
2171 }
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002172}
2173
2174
2175/**********************************************************************
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002176 * WINPROC_CallProc32ATo32W
2177 *
2178 * Call a window procedure, translating args from Ansi to Unicode.
2179 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002180static LRESULT WINPROC_CallProc32ATo32W( WNDPROC func, HWND hwnd,
2181 UINT msg, WPARAM wParam,
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002182 LPARAM lParam )
2183{
2184 LRESULT result;
2185
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002186 if (WINPROC_MapMsg32ATo32W( hwnd, msg, wParam, &lParam ) == -1) return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002187 result = WINPROC_CallWndProc( func, hwnd, msg, wParam, lParam );
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002188 WINPROC_UnmapMsg32ATo32W( hwnd, msg, wParam, lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002189 return result;
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002190}
2191
2192
2193/**********************************************************************
2194 * WINPROC_CallProc32WTo32A
2195 *
2196 * Call a window procedure, translating args from Unicode to Ansi.
2197 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002198static LRESULT WINPROC_CallProc32WTo32A( WNDPROC func, HWND hwnd,
2199 UINT msg, WPARAM wParam,
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002200 LPARAM lParam )
2201{
2202 LRESULT result;
2203
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002204 if (WINPROC_MapMsg32WTo32A( hwnd, msg, wParam, &lParam ) == -1) return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002205 result = WINPROC_CallWndProc( func, hwnd, msg, wParam, lParam );
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002206 WINPROC_UnmapMsg32WTo32A( hwnd, msg, wParam, lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002207 return result;
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002208}
2209
2210
2211/**********************************************************************
2212 * WINPROC_CallProc16To32A
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002213 *
2214 * Call a 32-bit window procedure, translating the 16-bit args.
2215 */
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002216static LRESULT WINPROC_CallProc16To32A( WNDPROC func, HWND16 hwnd,
2217 UINT16 msg, WPARAM16 wParam,
2218 LPARAM lParam )
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002219{
2220 LRESULT result;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002221 UINT msg32;
2222 WPARAM wParam32;
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002223
Alexandre Julliard3051b641996-07-05 17:14:13 +00002224 if (WINPROC_MapMsg16To32A( msg, wParam, &msg32, &wParam32, &lParam ) == -1)
2225 return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002226 result = WINPROC_CallWndProc( func, hwnd, msg32, wParam32, lParam );
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002227 return WINPROC_UnmapMsg16To32A( hwnd, msg32, wParam32, lParam, result );
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002228}
2229
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002230/**********************************************************************
2231 * WINPROC_Thunk16To32A
2232 */
2233static LRESULT WINAPI WINPROC_Thunk16To32A( WNDPROC func, LPBYTE args )
2234{
2235 HWND16 hwnd = *(HWND16 *)( args+8 );
2236 UINT16 msg = *(HWND16 *)( args+6 );
2237 WPARAM16 wParam = *(HWND16 *)( args+4 );
2238 LPARAM lParam = *(LPARAM *)( args+0 );
2239
2240 return WINPROC_CallProc16To32A( func, hwnd, msg, wParam, lParam );
2241}
2242
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002243
2244/**********************************************************************
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002245 * WINPROC_CallProc16To32W
2246 *
2247 * Call a 32-bit window procedure, translating the 16-bit args.
2248 */
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002249static LRESULT WINPROC_CallProc16To32W( WNDPROC func, HWND16 hwnd,
2250 UINT16 msg, WPARAM16 wParam,
2251 LPARAM lParam )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002252{
Alexandre Julliard3051b641996-07-05 17:14:13 +00002253 LRESULT result;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002254 UINT msg32;
2255 WPARAM wParam32;
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002256
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002257 if (WINPROC_MapMsg16To32W( hwnd, msg, wParam, &msg32, &wParam32, &lParam ) == -1)
Alexandre Julliard3051b641996-07-05 17:14:13 +00002258 return 0;
Francois Boisvertd96bc151999-04-02 10:34:43 +00002259
Alexandre Julliarda3960291999-02-26 11:11:13 +00002260 result = WINPROC_CallWndProc( func, hwnd, msg32, wParam32, lParam );
Francois Boisvertd96bc151999-04-02 10:34:43 +00002261
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002262 return WINPROC_UnmapMsg16To32W( hwnd, msg32, wParam32, lParam, result );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002263}
2264
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002265/**********************************************************************
2266 * WINPROC_Thunk16To32W
2267 */
2268static LRESULT WINAPI WINPROC_Thunk16To32W( WNDPROC func, LPBYTE args )
2269{
2270 HWND16 hwnd = *(HWND16 *)( args+8 );
2271 UINT16 msg = *(HWND16 *)( args+6 );
2272 WPARAM16 wParam = *(HWND16 *)( args+4 );
2273 LPARAM lParam = *(LPARAM *)( args+0 );
2274
2275 return WINPROC_CallProc16To32W( func, hwnd, msg, wParam, lParam );
2276}
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002277
2278/**********************************************************************
2279 * WINPROC_CallProc32ATo16
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002280 *
2281 * Call a 16-bit window procedure, translating the 32-bit args.
2282 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002283static LRESULT WINAPI WINPROC_CallProc32ATo16( WNDPROC16 func, HWND hwnd,
2284 UINT msg, WPARAM wParam,
Alexandre Julliard77b99181997-09-14 17:17:23 +00002285 LPARAM lParam )
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002286{
Alexandre Julliard3051b641996-07-05 17:14:13 +00002287 UINT16 msg16;
Alexandre Julliard889f7421997-04-15 17:19:52 +00002288 MSGPARAM16 mp16;
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002289
Alexandre Julliard889f7421997-04-15 17:19:52 +00002290 mp16.lParam = lParam;
Alexandre Julliard491502b1997-11-01 19:08:16 +00002291 if (WINPROC_MapMsg32ATo16( hwnd, msg, wParam,
2292 &msg16, &mp16.wParam, &mp16.lParam ) == -1)
Alexandre Julliard3051b641996-07-05 17:14:13 +00002293 return 0;
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002294 mp16.lResult = WINPROC_CallWndProc16( func, hwnd, msg16,
2295 mp16.wParam, mp16.lParam );
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002296 WINPROC_UnmapMsg32ATo16( hwnd, msg, wParam, lParam, &mp16 );
Alexandre Julliard889f7421997-04-15 17:19:52 +00002297 return mp16.lResult;
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002298}
2299
2300
2301/**********************************************************************
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002302 * WINPROC_CallProc32WTo16
2303 *
2304 * Call a 16-bit window procedure, translating the 32-bit args.
2305 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002306static LRESULT WINAPI WINPROC_CallProc32WTo16( WNDPROC16 func, HWND hwnd,
2307 UINT msg, WPARAM wParam,
Alexandre Julliard77b99181997-09-14 17:17:23 +00002308 LPARAM lParam )
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002309{
Alexandre Julliard3051b641996-07-05 17:14:13 +00002310 UINT16 msg16;
Alexandre Julliard889f7421997-04-15 17:19:52 +00002311 MSGPARAM16 mp16;
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002312
Alexandre Julliard889f7421997-04-15 17:19:52 +00002313 mp16.lParam = lParam;
Alexandre Julliard491502b1997-11-01 19:08:16 +00002314 if (WINPROC_MapMsg32WTo16( hwnd, msg, wParam, &msg16, &mp16.wParam,
2315 &mp16.lParam ) == -1)
Alexandre Julliard3051b641996-07-05 17:14:13 +00002316 return 0;
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002317 mp16.lResult = WINPROC_CallWndProc16( func, hwnd, msg16,
2318 mp16.wParam, mp16.lParam );
Juergen Schmiedfdf6aa41998-11-08 16:28:49 +00002319 WINPROC_UnmapMsg32WTo16( hwnd, msg, wParam, lParam, &mp16 );
Alexandre Julliard889f7421997-04-15 17:19:52 +00002320 return mp16.lResult;
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002321}
2322
2323
2324/**********************************************************************
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002325 * CallWindowProc16 (USER.122)
2326 */
Alexandre Julliard670cdc41997-08-24 16:00:30 +00002327LRESULT WINAPI CallWindowProc16( WNDPROC16 func, HWND16 hwnd, UINT16 msg,
2328 WPARAM16 wParam, LPARAM lParam )
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002329{
Alexandre Julliard3051b641996-07-05 17:14:13 +00002330 WINDOWPROC *proc = WINPROC_GetPtr( func );
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002331
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002332 if (!proc)
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002333 return WINPROC_CallWndProc16( func, hwnd, msg, wParam, lParam );
Alexandre Julliard3db94ef1997-09-28 17:43:24 +00002334
Alexandre Julliard3051b641996-07-05 17:14:13 +00002335#if testing
Alexandre Julliard3db94ef1997-09-28 17:43:24 +00002336 func = WINPROC_GetProc( (HWINDOWPROC)proc, WIN_PROC_16 );
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002337 return WINPROC_CallWndProc16( func, hwnd, msg, wParam, lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002338#endif
2339
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002340 switch(proc->type)
2341 {
2342 case WIN_PROC_16:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002343 if (!proc->thunk.t_from32.proc) return 0;
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002344 return WINPROC_CallWndProc16( proc->thunk.t_from32.proc,
2345 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002346 case WIN_PROC_32A:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002347 if (!proc->thunk.t_from16.proc) return 0;
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002348 return WINPROC_CallProc16To32A( proc->thunk.t_from16.proc,
2349 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002350 case WIN_PROC_32W:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002351 if (!proc->thunk.t_from16.proc) return 0;
Ulrich Weigandc50a1d01999-08-15 12:45:01 +00002352 return WINPROC_CallProc16To32W( proc->thunk.t_from16.proc,
2353 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002354 default:
Alexandre Julliard06c275a1999-05-02 14:32:27 +00002355 WARN_(relay)("Invalid proc %p\n", proc );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002356 return 0;
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002357 }
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002358}
2359
2360
2361/**********************************************************************
Alexandre Julliard767e6f61998-08-09 12:47:43 +00002362 * CallWindowProc32A (USER32.18)
2363 *
2364 * The CallWindowProc() function invokes the windows procedure _func_,
2365 * with _hwnd_ as the target window, the message specified by _msg_, and
2366 * the message parameters _wParam_ and _lParam_.
2367 *
2368 * Some kinds of argument conversion may be done, I'm not sure what.
2369 *
2370 * CallWindowProc() may be used for windows subclassing. Use
2371 * SetWindowLong() to set a new windows procedure for windows of the
2372 * subclass, and handle subclassed messages in the new windows
2373 * procedure. The new windows procedure may then use CallWindowProc()
2374 * with _func_ set to the parent class's windows procedure to dispatch
2375 * the message to the superclass.
2376 *
2377 * RETURNS
2378 *
2379 * The return value is message dependent.
2380 *
2381 * CONFORMANCE
2382 *
2383 * ECMA-234, Win32
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002384 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002385LRESULT WINAPI CallWindowProcA(
2386 WNDPROC func, /* window procedure */
2387 HWND hwnd, /* target window */
2388 UINT msg, /* message */
2389 WPARAM wParam, /* message dependent parameter */
Alexandre Julliard767e6f61998-08-09 12:47:43 +00002390 LPARAM lParam /* message dependent parameter */
2391) {
Alexandre Julliard3051b641996-07-05 17:14:13 +00002392 WINDOWPROC *proc = WINPROC_GetPtr( (WNDPROC16)func );
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002393
Alexandre Julliarda3960291999-02-26 11:11:13 +00002394 if (!proc) return WINPROC_CallWndProc( func, hwnd, msg, wParam, lParam );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002395
Alexandre Julliard3051b641996-07-05 17:14:13 +00002396#if testing
2397 func = WINPROC_GetProc( (HWINDOWPROC)proc, WIN_PROC_32A );
Alexandre Julliarda3960291999-02-26 11:11:13 +00002398 return WINPROC_CallWndProc( func, hwnd, msg, wParam, lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002399#endif
2400
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002401 switch(proc->type)
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002402 {
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002403 case WIN_PROC_16:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002404 if (!proc->thunk.t_from32.proc) return 0;
2405 return WINPROC_CallProc32ATo16( proc->thunk.t_from32.proc,
2406 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002407 case WIN_PROC_32A:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002408 if (!proc->thunk.t_from16.proc) return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002409 return WINPROC_CallWndProc( proc->thunk.t_from16.proc,
Alexandre Julliard77b99181997-09-14 17:17:23 +00002410 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002411 case WIN_PROC_32W:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002412 if (!proc->thunk.t_from16.proc) return 0;
2413 return WINPROC_CallProc32ATo32W( proc->thunk.t_from16.proc,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002414 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002415 default:
Alexandre Julliard06c275a1999-05-02 14:32:27 +00002416 WARN_(relay)("Invalid proc %p\n", proc );
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002417 return 0;
2418 }
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002419}
2420
2421
2422/**********************************************************************
Alexandre Julliardc7c217b1998-04-13 12:21:30 +00002423 * CallWindowProc32W (USER32.19)
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002424 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00002425LRESULT WINAPI CallWindowProcW( WNDPROC func, HWND hwnd, UINT msg,
2426 WPARAM wParam, LPARAM lParam )
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002427{
Alexandre Julliard3051b641996-07-05 17:14:13 +00002428 WINDOWPROC *proc = WINPROC_GetPtr( (WNDPROC16)func );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002429
Alexandre Julliarda3960291999-02-26 11:11:13 +00002430 if (!proc) return WINPROC_CallWndProc( func, hwnd, msg, wParam, lParam );
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002431
Alexandre Julliard3051b641996-07-05 17:14:13 +00002432#if testing
2433 func = WINPROC_GetProc( (HWINDOWPROC)proc, WIN_PROC_32W );
Alexandre Julliarda3960291999-02-26 11:11:13 +00002434 return WINPROC_CallWndProc( func, hwnd, msg, wParam, lParam );
Alexandre Julliard3051b641996-07-05 17:14:13 +00002435#endif
2436
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002437 switch(proc->type)
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002438 {
2439 case WIN_PROC_16:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002440 if (!proc->thunk.t_from32.proc) return 0;
2441 return WINPROC_CallProc32WTo16( proc->thunk.t_from32.proc,
2442 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002443 case WIN_PROC_32A:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002444 if (!proc->thunk.t_from16.proc) return 0;
2445 return WINPROC_CallProc32WTo32A( proc->thunk.t_from16.proc,
Alexandre Julliard1e9ac791996-06-06 18:38:27 +00002446 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002447 case WIN_PROC_32W:
Alexandre Julliard3051b641996-07-05 17:14:13 +00002448 if (!proc->thunk.t_from16.proc) return 0;
Alexandre Julliarda3960291999-02-26 11:11:13 +00002449 return WINPROC_CallWndProc( proc->thunk.t_from16.proc,
Alexandre Julliard77b99181997-09-14 17:17:23 +00002450 hwnd, msg, wParam, lParam );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002451 default:
Alexandre Julliard06c275a1999-05-02 14:32:27 +00002452 WARN_(relay)("Invalid proc %p\n", proc );
Alexandre Julliard2d93d001996-05-21 15:01:41 +00002453 return 0;
2454 }
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00002455}