urlmon: Added TYMED_FILE support to CopyStgMedium.
[wine] / dlls / user32 / message.c
1 /*
2  * Window messaging support
3  *
4  * Copyright 2001 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <stdarg.h>
26
27 #include "ntstatus.h"
28 #define WIN32_NO_STATUS
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wingdi.h"
32 #include "winuser.h"
33 #include "winerror.h"
34 #include "winnls.h"
35 #include "dbt.h"
36 #include "dde.h"
37 #include "wine/unicode.h"
38 #include "wine/server.h"
39 #include "user_private.h"
40 #include "win.h"
41 #include "controls.h"
42 #include "wine/debug.h"
43
44 WINE_DEFAULT_DEBUG_CHANNEL(msg);
45 WINE_DECLARE_DEBUG_CHANNEL(relay);
46 WINE_DECLARE_DEBUG_CHANNEL(key);
47
48 #define WM_NCMOUSEFIRST WM_NCMOUSEMOVE
49 #define WM_NCMOUSELAST  (WM_NCMOUSEFIRST+(WM_MOUSELAST-WM_MOUSEFIRST))
50
51 #define MAX_PACK_COUNT 4
52 #define MAX_SENDMSG_RECURSION  64
53
54 #define SYS_TIMER_RATE  55   /* min. timer rate in ms (actually 54.925)*/
55
56 /* description of the data fields that need to be packed along with a sent message */
57 struct packed_message
58 {
59     int         count;
60     const void *data[MAX_PACK_COUNT];
61     size_t      size[MAX_PACK_COUNT];
62 };
63
64 /* info about the message currently being received by the current thread */
65 struct received_message_info
66 {
67     enum message_type type;
68     MSG               msg;
69     UINT              flags;  /* InSendMessageEx return flags */
70 };
71
72 /* structure to group all parameters for sent messages of the various kinds */
73 struct send_message_info
74 {
75     enum message_type type;
76     DWORD             dest_tid;
77     HWND              hwnd;
78     UINT              msg;
79     WPARAM            wparam;
80     LPARAM            lparam;
81     UINT              flags;      /* flags for SendMessageTimeout */
82     UINT              timeout;    /* timeout for SendMessageTimeout */
83     SENDASYNCPROC     callback;   /* callback function for SendMessageCallback */
84     ULONG_PTR         data;       /* callback data */
85     enum wm_char_mapping wm_char;
86 };
87
88
89 /* flag for messages that contain pointers */
90 /* 32 messages per entry, messages 0..31 map to bits 0..31 */
91
92 #define SET(msg) (1 << ((msg) & 31))
93
94 static const unsigned int message_pointer_flags[] =
95 {
96     /* 0x00 - 0x1f */
97     SET(WM_CREATE) | SET(WM_SETTEXT) | SET(WM_GETTEXT) |
98     SET(WM_WININICHANGE) | SET(WM_DEVMODECHANGE),
99     /* 0x20 - 0x3f */
100     SET(WM_GETMINMAXINFO) | SET(WM_DRAWITEM) | SET(WM_MEASUREITEM) | SET(WM_DELETEITEM) |
101     SET(WM_COMPAREITEM),
102     /* 0x40 - 0x5f */
103     SET(WM_WINDOWPOSCHANGING) | SET(WM_WINDOWPOSCHANGED) | SET(WM_COPYDATA) |
104     SET(WM_NOTIFY) | SET(WM_HELP),
105     /* 0x60 - 0x7f */
106     SET(WM_STYLECHANGING) | SET(WM_STYLECHANGED),
107     /* 0x80 - 0x9f */
108     SET(WM_NCCREATE) | SET(WM_NCCALCSIZE) | SET(WM_GETDLGCODE),
109     /* 0xa0 - 0xbf */
110     SET(EM_GETSEL) | SET(EM_GETRECT) | SET(EM_SETRECT) | SET(EM_SETRECTNP),
111     /* 0xc0 - 0xdf */
112     SET(EM_REPLACESEL) | SET(EM_GETLINE) | SET(EM_SETTABSTOPS),
113     /* 0xe0 - 0xff */
114     SET(SBM_GETRANGE) | SET(SBM_SETSCROLLINFO) | SET(SBM_GETSCROLLINFO) | SET(SBM_GETSCROLLBARINFO),
115     /* 0x100 - 0x11f */
116     0,
117     /* 0x120 - 0x13f */
118     0,
119     /* 0x140 - 0x15f */
120     SET(CB_GETEDITSEL) | SET(CB_ADDSTRING) | SET(CB_DIR) | SET(CB_GETLBTEXT) |
121     SET(CB_INSERTSTRING) | SET(CB_FINDSTRING) | SET(CB_SELECTSTRING) |
122     SET(CB_GETDROPPEDCONTROLRECT) | SET(CB_FINDSTRINGEXACT),
123     /* 0x160 - 0x17f */
124     0,
125     /* 0x180 - 0x19f */
126     SET(LB_ADDSTRING) | SET(LB_INSERTSTRING) | SET(LB_GETTEXT) | SET(LB_SELECTSTRING) |
127     SET(LB_DIR) | SET(LB_FINDSTRING) |
128     SET(LB_GETSELITEMS) | SET(LB_SETTABSTOPS) | SET(LB_ADDFILE) | SET(LB_GETITEMRECT),
129     /* 0x1a0 - 0x1bf */
130     SET(LB_FINDSTRINGEXACT),
131     /* 0x1c0 - 0x1df */
132     0,
133     /* 0x1e0 - 0x1ff */
134     0,
135     /* 0x200 - 0x21f */
136     SET(WM_NEXTMENU) | SET(WM_SIZING) | SET(WM_MOVING) | SET(WM_DEVICECHANGE),
137     /* 0x220 - 0x23f */
138     SET(WM_MDICREATE) | SET(WM_MDIGETACTIVE) | SET(WM_DROPOBJECT) |
139     SET(WM_QUERYDROPOBJECT) | SET(WM_DRAGLOOP) | SET(WM_DRAGSELECT) | SET(WM_DRAGMOVE),
140     /* 0x240 - 0x25f */
141     0,
142     /* 0x260 - 0x27f */
143     0,
144     /* 0x280 - 0x29f */
145     0,
146     /* 0x2a0 - 0x2bf */
147     0,
148     /* 0x2c0 - 0x2df */
149     0,
150     /* 0x2e0 - 0x2ff */
151     0,
152     /* 0x300 - 0x31f */
153     SET(WM_ASKCBFORMATNAME)
154 };
155
156 /* flags for messages that contain Unicode strings */
157 static const unsigned int message_unicode_flags[] =
158 {
159     /* 0x00 - 0x1f */
160     SET(WM_CREATE) | SET(WM_SETTEXT) | SET(WM_GETTEXT) | SET(WM_GETTEXTLENGTH) |
161     SET(WM_WININICHANGE) | SET(WM_DEVMODECHANGE),
162     /* 0x20 - 0x3f */
163     SET(WM_CHARTOITEM),
164     /* 0x40 - 0x5f */
165     0,
166     /* 0x60 - 0x7f */
167     0,
168     /* 0x80 - 0x9f */
169     SET(WM_NCCREATE),
170     /* 0xa0 - 0xbf */
171     0,
172     /* 0xc0 - 0xdf */
173     SET(EM_REPLACESEL) | SET(EM_GETLINE) | SET(EM_SETPASSWORDCHAR),
174     /* 0xe0 - 0xff */
175     0,
176     /* 0x100 - 0x11f */
177     SET(WM_CHAR) | SET(WM_DEADCHAR) | SET(WM_SYSCHAR) | SET(WM_SYSDEADCHAR),
178     /* 0x120 - 0x13f */
179     SET(WM_MENUCHAR),
180     /* 0x140 - 0x15f */
181     SET(CB_ADDSTRING) | SET(CB_DIR) | SET(CB_GETLBTEXT) | SET(CB_GETLBTEXTLEN) |
182     SET(CB_INSERTSTRING) | SET(CB_FINDSTRING) | SET(CB_SELECTSTRING) | SET(CB_FINDSTRINGEXACT),
183     /* 0x160 - 0x17f */
184     0,
185     /* 0x180 - 0x19f */
186     SET(LB_ADDSTRING) | SET(LB_INSERTSTRING) | SET(LB_GETTEXT) | SET(LB_GETTEXTLEN) |
187     SET(LB_SELECTSTRING) | SET(LB_DIR) | SET(LB_FINDSTRING) | SET(LB_ADDFILE),
188     /* 0x1a0 - 0x1bf */
189     SET(LB_FINDSTRINGEXACT),
190     /* 0x1c0 - 0x1df */
191     0,
192     /* 0x1e0 - 0x1ff */
193     0,
194     /* 0x200 - 0x21f */
195     0,
196     /* 0x220 - 0x23f */
197     SET(WM_MDICREATE),
198     /* 0x240 - 0x25f */
199     0,
200     /* 0x260 - 0x27f */
201     0,
202     /* 0x280 - 0x29f */
203     SET(WM_IME_CHAR),
204     /* 0x2a0 - 0x2bf */
205     0,
206     /* 0x2c0 - 0x2df */
207     0,
208     /* 0x2e0 - 0x2ff */
209     0,
210     /* 0x300 - 0x31f */
211     SET(WM_PAINTCLIPBOARD) | SET(WM_SIZECLIPBOARD) | SET(WM_ASKCBFORMATNAME)
212 };
213
214 /* check whether a given message type includes pointers */
215 static inline int is_pointer_message( UINT message )
216 {
217     if (message >= 8*sizeof(message_pointer_flags)) return FALSE;
218     return (message_pointer_flags[message / 32] & SET(message)) != 0;
219 }
220
221 /* check whether a given message type contains Unicode (or ASCII) chars */
222 static inline int is_unicode_message( UINT message )
223 {
224     if (message >= 8*sizeof(message_unicode_flags)) return FALSE;
225     return (message_unicode_flags[message / 32] & SET(message)) != 0;
226 }
227
228 #undef SET
229
230 /* add a data field to a packed message */
231 static inline void push_data( struct packed_message *data, const void *ptr, size_t size )
232 {
233     data->data[data->count] = ptr;
234     data->size[data->count] = size;
235     data->count++;
236 }
237
238 /* add a string to a packed message */
239 static inline void push_string( struct packed_message *data, LPCWSTR str )
240 {
241     push_data( data, str, (strlenW(str) + 1) * sizeof(WCHAR) );
242 }
243
244 /* retrieve a pointer to data from a packed message and increment the buffer pointer */
245 static inline void *get_data( void **buffer, size_t size )
246 {
247     void *ret = *buffer;
248     *buffer = (char *)*buffer + size;
249     return ret;
250 }
251
252 /* make sure that the buffer contains a valid null-terminated Unicode string */
253 static inline BOOL check_string( LPCWSTR str, size_t size )
254 {
255     for (size /= sizeof(WCHAR); size; size--, str++)
256         if (!*str) return TRUE;
257     return FALSE;
258 }
259
260 /* make sure that there is space for 'size' bytes in buffer, growing it if needed */
261 static inline void *get_buffer_space( void **buffer, size_t size )
262 {
263     void *ret;
264
265     if (*buffer)
266     {
267         if (!(ret = HeapReAlloc( GetProcessHeap(), 0, *buffer, size )))
268             HeapFree( GetProcessHeap(), 0, *buffer );
269     }
270     else ret = HeapAlloc( GetProcessHeap(), 0, size );
271
272     *buffer = ret;
273     return ret;
274 }
275
276 /* check whether a combobox expects strings or ids in CB_ADDSTRING/CB_INSERTSTRING */
277 static inline BOOL combobox_has_strings( HWND hwnd )
278 {
279     DWORD style = GetWindowLongA( hwnd, GWL_STYLE );
280     return (!(style & (CBS_OWNERDRAWFIXED | CBS_OWNERDRAWVARIABLE)) || (style & CBS_HASSTRINGS));
281 }
282
283 /* check whether a listbox expects strings or ids in LB_ADDSTRING/LB_INSERTSTRING */
284 static inline BOOL listbox_has_strings( HWND hwnd )
285 {
286     DWORD style = GetWindowLongA( hwnd, GWL_STYLE );
287     return (!(style & (LBS_OWNERDRAWFIXED | LBS_OWNERDRAWVARIABLE)) || (style & LBS_HASSTRINGS));
288 }
289
290 /* check whether message is in the range of keyboard messages */
291 static inline BOOL is_keyboard_message( UINT message )
292 {
293     return (message >= WM_KEYFIRST && message <= WM_KEYLAST);
294 }
295
296 /* check whether message is in the range of mouse messages */
297 static inline BOOL is_mouse_message( UINT message )
298 {
299     return ((message >= WM_NCMOUSEFIRST && message <= WM_NCMOUSELAST) ||
300             (message >= WM_MOUSEFIRST && message <= WM_MOUSELAST));
301 }
302
303 /* check whether message matches the specified hwnd filter */
304 static inline BOOL check_hwnd_filter( const MSG *msg, HWND hwnd_filter )
305 {
306     if (!hwnd_filter || hwnd_filter == GetDesktopWindow()) return TRUE;
307     return (msg->hwnd == hwnd_filter || IsChild( hwnd_filter, msg->hwnd ));
308 }
309
310 /* check for pending WM_CHAR message with DBCS trailing byte */
311 static inline BOOL get_pending_wmchar( MSG *msg, UINT first, UINT last, BOOL remove )
312 {
313     struct wm_char_mapping_data *data = get_user_thread_info()->wmchar_data;
314
315     if (!data || !data->get_msg.message) return FALSE;
316     if ((first || last) && (first > WM_CHAR || last < WM_CHAR)) return FALSE;
317     if (!msg) return FALSE;
318     *msg = data->get_msg;
319     if (remove) data->get_msg.message = 0;
320     return TRUE;
321 }
322
323 /***********************************************************************
324  *              broadcast_message_callback
325  *
326  * Helper callback for broadcasting messages.
327  */
328 static BOOL CALLBACK broadcast_message_callback( HWND hwnd, LPARAM lparam )
329 {
330     struct send_message_info *info = (struct send_message_info *)lparam;
331     if (!(GetWindowLongW( hwnd, GWL_STYLE ) & (WS_POPUP|WS_CAPTION))) return TRUE;
332     switch(info->type)
333     {
334     case MSG_UNICODE:
335         SendMessageTimeoutW( hwnd, info->msg, info->wparam, info->lparam,
336                              info->flags, info->timeout, NULL );
337         break;
338     case MSG_ASCII:
339         SendMessageTimeoutA( hwnd, info->msg, info->wparam, info->lparam,
340                              info->flags, info->timeout, NULL );
341         break;
342     case MSG_NOTIFY:
343         SendNotifyMessageW( hwnd, info->msg, info->wparam, info->lparam );
344         break;
345     case MSG_CALLBACK:
346         SendMessageCallbackW( hwnd, info->msg, info->wparam, info->lparam,
347                               info->callback, info->data );
348         break;
349     case MSG_POSTED:
350         PostMessageW( hwnd, info->msg, info->wparam, info->lparam );
351         break;
352     default:
353         ERR( "bad type %d\n", info->type );
354         break;
355     }
356     return TRUE;
357 }
358
359
360 /***********************************************************************
361  *              map_wparam_AtoW
362  *
363  * Convert the wparam of an ASCII message to Unicode.
364  */
365 BOOL map_wparam_AtoW( UINT message, WPARAM *wparam, enum wm_char_mapping mapping )
366 {
367     char ch[2];
368     WCHAR wch[2];
369
370     wch[0] = wch[1] = 0;
371     switch(message)
372     {
373     case WM_CHAR:
374         /* WM_CHAR is magic: a DBCS char can be sent/posted as two consecutive WM_CHAR
375          * messages, in which case the first char is stored, and the conversion
376          * to Unicode only takes place once the second char is sent/posted.
377          */
378         if (mapping != WMCHAR_MAP_NOMAPPING)
379         {
380             struct wm_char_mapping_data *data = get_user_thread_info()->wmchar_data;
381             BYTE low = LOBYTE(*wparam);
382
383             if (HIBYTE(*wparam))
384             {
385                 ch[0] = low;
386                 ch[1] = HIBYTE(*wparam);
387                 RtlMultiByteToUnicodeN( wch, sizeof(wch), NULL, ch, 2 );
388                 TRACE( "map %02x,%02x -> %04x mapping %u\n", (BYTE)ch[0], (BYTE)ch[1], wch[0], mapping );
389                 if (data) data->lead_byte[mapping] = 0;
390             }
391             else if (data && data->lead_byte[mapping])
392             {
393                 ch[0] = data->lead_byte[mapping];
394                 ch[1] = low;
395                 RtlMultiByteToUnicodeN( wch, sizeof(wch), NULL, ch, 2 );
396                 TRACE( "map stored %02x,%02x -> %04x mapping %u\n", (BYTE)ch[0], (BYTE)ch[1], wch[0], mapping );
397                 data->lead_byte[mapping] = 0;
398             }
399             else if (!IsDBCSLeadByte( low ))
400             {
401                 ch[0] = low;
402                 RtlMultiByteToUnicodeN( wch, sizeof(wch), NULL, ch, 1 );
403                 TRACE( "map %02x -> %04x\n", (BYTE)ch[0], wch[0] );
404                 if (data) data->lead_byte[mapping] = 0;
405             }
406             else  /* store it and wait for trail byte */
407             {
408                 if (!data)
409                 {
410                     if (!(data = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*data) )))
411                         return FALSE;
412                     get_user_thread_info()->wmchar_data = data;
413                 }
414                 TRACE( "storing lead byte %02x mapping %u\n", low, mapping );
415                 data->lead_byte[mapping] = low;
416                 return FALSE;
417             }
418             *wparam = MAKEWPARAM(wch[0], wch[1]);
419             break;
420         }
421         /* else fall through */
422     case WM_CHARTOITEM:
423     case EM_SETPASSWORDCHAR:
424     case WM_DEADCHAR:
425     case WM_SYSCHAR:
426     case WM_SYSDEADCHAR:
427     case WM_MENUCHAR:
428         ch[0] = LOBYTE(*wparam);
429         ch[1] = HIBYTE(*wparam);
430         RtlMultiByteToUnicodeN( wch, sizeof(wch), NULL, ch, 2 );
431         *wparam = MAKEWPARAM(wch[0], wch[1]);
432         break;
433     case WM_IME_CHAR:
434         ch[0] = HIBYTE(*wparam);
435         ch[1] = LOBYTE(*wparam);
436         if (ch[0]) RtlMultiByteToUnicodeN( wch, sizeof(wch[0]), NULL, ch, 2 );
437         else RtlMultiByteToUnicodeN( wch, sizeof(wch[0]), NULL, ch + 1, 1 );
438         *wparam = MAKEWPARAM(wch[0], HIWORD(*wparam));
439         break;
440     }
441     return TRUE;
442 }
443
444
445 /***********************************************************************
446  *              map_wparam_WtoA
447  *
448  * Convert the wparam of a Unicode message to ASCII.
449  */
450 static void map_wparam_WtoA( MSG *msg, BOOL remove )
451 {
452     BYTE ch[2];
453     WCHAR wch[2];
454     DWORD len;
455
456     switch(msg->message)
457     {
458     case WM_CHAR:
459         if (!HIWORD(msg->wParam))
460         {
461             wch[0] = LOWORD(msg->wParam);
462             ch[0] = ch[1] = 0;
463             RtlUnicodeToMultiByteN( (LPSTR)ch, 2, &len, wch, sizeof(wch[0]) );
464             if (len == 2)  /* DBCS char */
465             {
466                 struct wm_char_mapping_data *data = get_user_thread_info()->wmchar_data;
467                 if (!data)
468                 {
469                     if (!(data = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*data) ))) return;
470                     get_user_thread_info()->wmchar_data = data;
471                 }
472                 if (remove)
473                 {
474                     data->get_msg = *msg;
475                     data->get_msg.wParam = ch[1];
476                 }
477                 msg->wParam = ch[0];
478                 return;
479             }
480         }
481         /* else fall through */
482     case WM_CHARTOITEM:
483     case EM_SETPASSWORDCHAR:
484     case WM_DEADCHAR:
485     case WM_SYSCHAR:
486     case WM_SYSDEADCHAR:
487     case WM_MENUCHAR:
488         wch[0] = LOWORD(msg->wParam);
489         wch[1] = HIWORD(msg->wParam);
490         ch[0] = ch[1] = 0;
491         RtlUnicodeToMultiByteN( (LPSTR)ch, 2, NULL, wch, sizeof(wch) );
492         msg->wParam = MAKEWPARAM( ch[0] | (ch[1] << 8), 0 );
493         break;
494     case WM_IME_CHAR:
495         wch[0] = LOWORD(msg->wParam);
496         ch[0] = ch[1] = 0;
497         RtlUnicodeToMultiByteN( (LPSTR)ch, 2, &len, wch, sizeof(wch[0]) );
498         if (len == 2)
499             msg->wParam = MAKEWPARAM( (ch[0] << 8) | ch[1], HIWORD(msg->wParam) );
500         else
501             msg->wParam = MAKEWPARAM( ch[0], HIWORD(msg->wParam) );
502         break;
503     }
504 }
505
506
507 /***********************************************************************
508  *              pack_message
509  *
510  * Pack a message for sending to another process.
511  * Return the size of the data we expect in the message reply.
512  * Set data->count to -1 if there is an error.
513  */
514 static size_t pack_message( HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam,
515                             struct packed_message *data )
516 {
517     data->count = 0;
518     switch(message)
519     {
520     case WM_NCCREATE:
521     case WM_CREATE:
522     {
523         CREATESTRUCTW *cs = (CREATESTRUCTW *)lparam;
524         push_data( data, cs, sizeof(*cs) );
525         if (HIWORD(cs->lpszName)) push_string( data, cs->lpszName );
526         if (HIWORD(cs->lpszClass)) push_string( data, cs->lpszClass );
527         return sizeof(*cs);
528     }
529     case WM_GETTEXT:
530     case WM_ASKCBFORMATNAME:
531         return wparam * sizeof(WCHAR);
532     case WM_WININICHANGE:
533         if (lparam) push_string(data, (LPWSTR)lparam );
534         return 0;
535     case WM_SETTEXT:
536     case WM_DEVMODECHANGE:
537     case CB_DIR:
538     case LB_DIR:
539     case LB_ADDFILE:
540     case EM_REPLACESEL:
541         push_string( data, (LPWSTR)lparam );
542         return 0;
543     case WM_GETMINMAXINFO:
544         push_data( data, (MINMAXINFO *)lparam, sizeof(MINMAXINFO) );
545         return sizeof(MINMAXINFO);
546     case WM_DRAWITEM:
547         push_data( data, (DRAWITEMSTRUCT *)lparam, sizeof(DRAWITEMSTRUCT) );
548         return 0;
549     case WM_MEASUREITEM:
550         push_data( data, (MEASUREITEMSTRUCT *)lparam, sizeof(MEASUREITEMSTRUCT) );
551         return sizeof(MEASUREITEMSTRUCT);
552     case WM_DELETEITEM:
553         push_data( data, (DELETEITEMSTRUCT *)lparam, sizeof(DELETEITEMSTRUCT) );
554         return 0;
555     case WM_COMPAREITEM:
556         push_data( data, (COMPAREITEMSTRUCT *)lparam, sizeof(COMPAREITEMSTRUCT) );
557         return 0;
558     case WM_WINDOWPOSCHANGING:
559     case WM_WINDOWPOSCHANGED:
560         push_data( data, (WINDOWPOS *)lparam, sizeof(WINDOWPOS) );
561         return sizeof(WINDOWPOS);
562     case WM_COPYDATA:
563     {
564         COPYDATASTRUCT *cp = (COPYDATASTRUCT *)lparam;
565         push_data( data, cp, sizeof(*cp) );
566         if (cp->lpData) push_data( data, cp->lpData, cp->cbData );
567         return 0;
568     }
569     case WM_NOTIFY:
570         /* WM_NOTIFY cannot be sent across processes (MSDN) */
571         data->count = -1;
572         return 0;
573     case WM_HELP:
574         push_data( data, (HELPINFO *)lparam, sizeof(HELPINFO) );
575         return 0;
576     case WM_STYLECHANGING:
577     case WM_STYLECHANGED:
578         push_data( data, (STYLESTRUCT *)lparam, sizeof(STYLESTRUCT) );
579         return 0;
580     case WM_NCCALCSIZE:
581         if (!wparam)
582         {
583             push_data( data, (RECT *)lparam, sizeof(RECT) );
584             return sizeof(RECT);
585         }
586         else
587         {
588             NCCALCSIZE_PARAMS *nc = (NCCALCSIZE_PARAMS *)lparam;
589             push_data( data, nc, sizeof(*nc) );
590             push_data( data, nc->lppos, sizeof(*nc->lppos) );
591             return sizeof(*nc) + sizeof(*nc->lppos);
592         }
593     case WM_GETDLGCODE:
594         if (lparam) push_data( data, (MSG *)lparam, sizeof(MSG) );
595         return sizeof(MSG);
596     case SBM_SETSCROLLINFO:
597         push_data( data, (SCROLLINFO *)lparam, sizeof(SCROLLINFO) );
598         return 0;
599     case SBM_GETSCROLLINFO:
600         push_data( data, (SCROLLINFO *)lparam, sizeof(SCROLLINFO) );
601         return sizeof(SCROLLINFO);
602     case SBM_GETSCROLLBARINFO:
603     {
604         const SCROLLBARINFO *info = (const SCROLLBARINFO *)lparam;
605         size_t size = min( info->cbSize, sizeof(SCROLLBARINFO) );
606         push_data( data, info, size );
607         return size;
608     }
609     case EM_GETSEL:
610     case SBM_GETRANGE:
611     case CB_GETEDITSEL:
612     {
613         size_t size = 0;
614         if (wparam) size += sizeof(DWORD);
615         if (lparam) size += sizeof(DWORD);
616         return size;
617     }
618     case EM_GETRECT:
619     case LB_GETITEMRECT:
620     case CB_GETDROPPEDCONTROLRECT:
621         return sizeof(RECT);
622     case EM_SETRECT:
623     case EM_SETRECTNP:
624         push_data( data, (RECT *)lparam, sizeof(RECT) );
625         return 0;
626     case EM_GETLINE:
627     {
628         WORD *pw = (WORD *)lparam;
629         push_data( data, pw, sizeof(*pw) );
630         return *pw * sizeof(WCHAR);
631     }
632     case EM_SETTABSTOPS:
633     case LB_SETTABSTOPS:
634         if (wparam) push_data( data, (UINT *)lparam, sizeof(UINT) * wparam );
635         return 0;
636     case CB_ADDSTRING:
637     case CB_INSERTSTRING:
638     case CB_FINDSTRING:
639     case CB_FINDSTRINGEXACT:
640     case CB_SELECTSTRING:
641         if (combobox_has_strings( hwnd )) push_string( data, (LPWSTR)lparam );
642         return 0;
643     case CB_GETLBTEXT:
644         if (!combobox_has_strings( hwnd )) return sizeof(ULONG_PTR);
645         return (SendMessageW( hwnd, CB_GETLBTEXTLEN, wparam, 0 ) + 1) * sizeof(WCHAR);
646     case LB_ADDSTRING:
647     case LB_INSERTSTRING:
648     case LB_FINDSTRING:
649     case LB_FINDSTRINGEXACT:
650     case LB_SELECTSTRING:
651         if (listbox_has_strings( hwnd )) push_string( data, (LPWSTR)lparam );
652         return 0;
653     case LB_GETTEXT:
654         if (!listbox_has_strings( hwnd )) return sizeof(ULONG_PTR);
655         return (SendMessageW( hwnd, LB_GETTEXTLEN, wparam, 0 ) + 1) * sizeof(WCHAR);
656     case LB_GETSELITEMS:
657         return wparam * sizeof(UINT);
658     case WM_NEXTMENU:
659         push_data( data, (MDINEXTMENU *)lparam, sizeof(MDINEXTMENU) );
660         return sizeof(MDINEXTMENU);
661     case WM_SIZING:
662     case WM_MOVING:
663         push_data( data, (RECT *)lparam, sizeof(RECT) );
664         return sizeof(RECT);
665     case WM_MDICREATE:
666     {
667         MDICREATESTRUCTW *cs = (MDICREATESTRUCTW *)lparam;
668         push_data( data, cs, sizeof(*cs) );
669         if (HIWORD(cs->szTitle)) push_string( data, cs->szTitle );
670         if (HIWORD(cs->szClass)) push_string( data, cs->szClass );
671         return sizeof(*cs);
672     }
673     case WM_MDIGETACTIVE:
674         if (lparam) return sizeof(BOOL);
675         return 0;
676     case WM_DEVICECHANGE:
677     {
678         DEV_BROADCAST_HDR *header = (DEV_BROADCAST_HDR *)lparam;
679         push_data( data, header, header->dbch_size );
680         return 0;
681     }
682     case WM_WINE_SETWINDOWPOS:
683         push_data( data, (WINDOWPOS *)lparam, sizeof(WINDOWPOS) );
684         return 0;
685     case WM_WINE_KEYBOARD_LL_HOOK:
686     {
687         struct hook_extra_info *h_extra = (struct hook_extra_info *)lparam;
688         push_data( data, h_extra, sizeof(*h_extra) );
689         push_data( data, (LPVOID)h_extra->lparam, sizeof(KBDLLHOOKSTRUCT) );
690         return 0;
691     }
692     case WM_WINE_MOUSE_LL_HOOK:
693     {
694         struct hook_extra_info *h_extra = (struct hook_extra_info *)lparam;
695         push_data( data, h_extra, sizeof(*h_extra) );
696         push_data( data, (LPVOID)h_extra->lparam, sizeof(MSLLHOOKSTRUCT) );
697         return 0;
698     }
699     case WM_NCPAINT:
700         if (wparam <= 1) return 0;
701         FIXME( "WM_NCPAINT hdc packing not supported yet\n" );
702         data->count = -1;
703         return 0;
704     case WM_PAINT:
705         if (!wparam) return 0;
706         /* fall through */
707
708     /* these contain an HFONT */
709     case WM_SETFONT:
710     case WM_GETFONT:
711     /* these contain an HDC */
712     case WM_ERASEBKGND:
713     case WM_ICONERASEBKGND:
714     case WM_CTLCOLORMSGBOX:
715     case WM_CTLCOLOREDIT:
716     case WM_CTLCOLORLISTBOX:
717     case WM_CTLCOLORBTN:
718     case WM_CTLCOLORDLG:
719     case WM_CTLCOLORSCROLLBAR:
720     case WM_CTLCOLORSTATIC:
721     case WM_PRINT:
722     case WM_PRINTCLIENT:
723     /* these contain an HGLOBAL */
724     case WM_PAINTCLIPBOARD:
725     case WM_SIZECLIPBOARD:
726     /* these contain HICON */
727     case WM_GETICON:
728     case WM_SETICON:
729     case WM_QUERYDRAGICON:
730     case WM_QUERYPARKICON:
731     /* these contain pointers */
732     case WM_DROPOBJECT:
733     case WM_QUERYDROPOBJECT:
734     case WM_DRAGLOOP:
735     case WM_DRAGSELECT:
736     case WM_DRAGMOVE:
737         FIXME( "msg %x (%s) not supported yet\n", message, SPY_GetMsgName(message, hwnd) );
738         data->count = -1;
739         return 0;
740     }
741     return 0;
742 }
743
744
745 /***********************************************************************
746  *              unpack_message
747  *
748  * Unpack a message received from another process.
749  */
750 static BOOL unpack_message( HWND hwnd, UINT message, WPARAM *wparam, LPARAM *lparam,
751                             void **buffer, size_t size )
752 {
753     size_t minsize = 0;
754
755     switch(message)
756     {
757     case WM_NCCREATE:
758     case WM_CREATE:
759     {
760         CREATESTRUCTW *cs = *buffer;
761         WCHAR *str = (WCHAR *)(cs + 1);
762         if (size < sizeof(*cs)) return FALSE;
763         size -= sizeof(*cs);
764         if (HIWORD(cs->lpszName))
765         {
766             if (!check_string( str, size )) return FALSE;
767             cs->lpszName = str;
768             size -= (strlenW(str) + 1) * sizeof(WCHAR);
769             str += strlenW(str) + 1;
770         }
771         if (HIWORD(cs->lpszClass))
772         {
773             if (!check_string( str, size )) return FALSE;
774             cs->lpszClass = str;
775         }
776         break;
777     }
778     case WM_GETTEXT:
779     case WM_ASKCBFORMATNAME:
780         if (!get_buffer_space( buffer, (*wparam * sizeof(WCHAR)) )) return FALSE;
781         break;
782     case WM_WININICHANGE:
783         if (!*lparam) return TRUE;
784         /* fall through */
785     case WM_SETTEXT:
786     case WM_DEVMODECHANGE:
787     case CB_DIR:
788     case LB_DIR:
789     case LB_ADDFILE:
790     case EM_REPLACESEL:
791         if (!check_string( *buffer, size )) return FALSE;
792         break;
793     case WM_GETMINMAXINFO:
794         minsize = sizeof(MINMAXINFO);
795         break;
796     case WM_DRAWITEM:
797         minsize = sizeof(DRAWITEMSTRUCT);
798         break;
799     case WM_MEASUREITEM:
800         minsize = sizeof(MEASUREITEMSTRUCT);
801         break;
802     case WM_DELETEITEM:
803         minsize = sizeof(DELETEITEMSTRUCT);
804         break;
805     case WM_COMPAREITEM:
806         minsize = sizeof(COMPAREITEMSTRUCT);
807         break;
808     case WM_WINDOWPOSCHANGING:
809     case WM_WINDOWPOSCHANGED:
810     case WM_WINE_SETWINDOWPOS:
811         minsize = sizeof(WINDOWPOS);
812         break;
813     case WM_COPYDATA:
814     {
815         COPYDATASTRUCT *cp = *buffer;
816         if (size < sizeof(*cp)) return FALSE;
817         if (cp->lpData)
818         {
819             minsize = sizeof(*cp) + cp->cbData;
820             cp->lpData = cp + 1;
821         }
822         break;
823     }
824     case WM_NOTIFY:
825         /* WM_NOTIFY cannot be sent across processes (MSDN) */
826         return FALSE;
827     case WM_HELP:
828         minsize = sizeof(HELPINFO);
829         break;
830     case WM_STYLECHANGING:
831     case WM_STYLECHANGED:
832         minsize = sizeof(STYLESTRUCT);
833         break;
834     case WM_NCCALCSIZE:
835         if (!*wparam) minsize = sizeof(RECT);
836         else
837         {
838             NCCALCSIZE_PARAMS *nc = *buffer;
839             if (size < sizeof(*nc) + sizeof(*nc->lppos)) return FALSE;
840             nc->lppos = (WINDOWPOS *)(nc + 1);
841         }
842         break;
843     case WM_GETDLGCODE:
844         if (!*lparam) return TRUE;
845         minsize = sizeof(MSG);
846         break;
847     case SBM_SETSCROLLINFO:
848         minsize = sizeof(SCROLLINFO);
849         break;
850     case SBM_GETSCROLLINFO:
851         if (!get_buffer_space( buffer, sizeof(SCROLLINFO ))) return FALSE;
852         break;
853     case SBM_GETSCROLLBARINFO:
854         if (!get_buffer_space( buffer, sizeof(SCROLLBARINFO ))) return FALSE;
855         break;
856     case EM_GETSEL:
857     case SBM_GETRANGE:
858     case CB_GETEDITSEL:
859         if (*wparam || *lparam)
860         {
861             if (!get_buffer_space( buffer, 2*sizeof(DWORD) )) return FALSE;
862             if (*wparam) *wparam = (WPARAM)*buffer;
863             if (*lparam) *lparam = (LPARAM)((DWORD *)*buffer + 1);
864         }
865         return TRUE;
866     case EM_GETRECT:
867     case LB_GETITEMRECT:
868     case CB_GETDROPPEDCONTROLRECT:
869         if (!get_buffer_space( buffer, sizeof(RECT) )) return FALSE;
870         break;
871     case EM_SETRECT:
872     case EM_SETRECTNP:
873         minsize = sizeof(RECT);
874         break;
875     case EM_GETLINE:
876     {
877         WORD len;
878         if (size < sizeof(WORD)) return FALSE;
879         len = *(WORD *)*buffer;
880         if (!get_buffer_space( buffer, (len + 1) * sizeof(WCHAR) )) return FALSE;
881         *lparam = (LPARAM)*buffer + sizeof(WORD);  /* don't erase WORD at start of buffer */
882         return TRUE;
883     }
884     case EM_SETTABSTOPS:
885     case LB_SETTABSTOPS:
886         if (!*wparam) return TRUE;
887         minsize = *wparam * sizeof(UINT);
888         break;
889     case CB_ADDSTRING:
890     case CB_INSERTSTRING:
891     case CB_FINDSTRING:
892     case CB_FINDSTRINGEXACT:
893     case CB_SELECTSTRING:
894     case LB_ADDSTRING:
895     case LB_INSERTSTRING:
896     case LB_FINDSTRING:
897     case LB_FINDSTRINGEXACT:
898     case LB_SELECTSTRING:
899         if (!*buffer) return TRUE;
900         if (!check_string( *buffer, size )) return FALSE;
901         break;
902     case CB_GETLBTEXT:
903     {
904         size = sizeof(ULONG_PTR);
905         if (combobox_has_strings( hwnd ))
906             size = (SendMessageW( hwnd, CB_GETLBTEXTLEN, *wparam, 0 ) + 1) * sizeof(WCHAR);
907         if (!get_buffer_space( buffer, size )) return FALSE;
908         break;
909     }
910     case LB_GETTEXT:
911     {
912         size = sizeof(ULONG_PTR);
913         if (listbox_has_strings( hwnd ))
914             size = (SendMessageW( hwnd, LB_GETTEXTLEN, *wparam, 0 ) + 1) * sizeof(WCHAR);
915         if (!get_buffer_space( buffer, size )) return FALSE;
916         break;
917     }
918     case LB_GETSELITEMS:
919         if (!get_buffer_space( buffer, *wparam * sizeof(UINT) )) return FALSE;
920         break;
921     case WM_NEXTMENU:
922         minsize = sizeof(MDINEXTMENU);
923         if (!get_buffer_space( buffer, sizeof(MDINEXTMENU) )) return FALSE;
924         break;
925     case WM_SIZING:
926     case WM_MOVING:
927         minsize = sizeof(RECT);
928         if (!get_buffer_space( buffer, sizeof(RECT) )) return FALSE;
929         break;
930     case WM_MDICREATE:
931     {
932         MDICREATESTRUCTW *cs = *buffer;
933         WCHAR *str = (WCHAR *)(cs + 1);
934         if (size < sizeof(*cs)) return FALSE;
935         size -= sizeof(*cs);
936         if (HIWORD(cs->szTitle))
937         {
938             if (!check_string( str, size )) return FALSE;
939             cs->szTitle = str;
940             size -= (strlenW(str) + 1) * sizeof(WCHAR);
941             str += strlenW(str) + 1;
942         }
943         if (HIWORD(cs->szClass))
944         {
945             if (!check_string( str, size )) return FALSE;
946             cs->szClass = str;
947         }
948         break;
949     }
950     case WM_MDIGETACTIVE:
951         if (!*lparam) return TRUE;
952         if (!get_buffer_space( buffer, sizeof(BOOL) )) return FALSE;
953         break;
954     case WM_DEVICECHANGE:
955         minsize = sizeof(DEV_BROADCAST_HDR);
956         break;
957     case WM_WINE_KEYBOARD_LL_HOOK:
958     case WM_WINE_MOUSE_LL_HOOK:
959     {
960         struct hook_extra_info *h_extra = (struct hook_extra_info *)*buffer;
961
962         minsize = sizeof(struct hook_extra_info) +
963                   (message == WM_WINE_KEYBOARD_LL_HOOK ? sizeof(KBDLLHOOKSTRUCT)
964                                                        : sizeof(MSLLHOOKSTRUCT));
965         if (size < minsize) return FALSE;
966         h_extra->lparam = (LPARAM)(h_extra + 1);
967         break;
968     }
969     case WM_NCPAINT:
970         if (*wparam <= 1) return TRUE;
971         FIXME( "WM_NCPAINT hdc unpacking not supported\n" );
972         return FALSE;
973     case WM_PAINT:
974         if (!*wparam) return TRUE;
975         /* fall through */
976
977     /* these contain an HFONT */
978     case WM_SETFONT:
979     case WM_GETFONT:
980     /* these contain an HDC */
981     case WM_ERASEBKGND:
982     case WM_ICONERASEBKGND:
983     case WM_CTLCOLORMSGBOX:
984     case WM_CTLCOLOREDIT:
985     case WM_CTLCOLORLISTBOX:
986     case WM_CTLCOLORBTN:
987     case WM_CTLCOLORDLG:
988     case WM_CTLCOLORSCROLLBAR:
989     case WM_CTLCOLORSTATIC:
990     case WM_PRINT:
991     case WM_PRINTCLIENT:
992     /* these contain an HGLOBAL */
993     case WM_PAINTCLIPBOARD:
994     case WM_SIZECLIPBOARD:
995     /* these contain HICON */
996     case WM_GETICON:
997     case WM_SETICON:
998     case WM_QUERYDRAGICON:
999     case WM_QUERYPARKICON:
1000     /* these contain pointers */
1001     case WM_DROPOBJECT:
1002     case WM_QUERYDROPOBJECT:
1003     case WM_DRAGLOOP:
1004     case WM_DRAGSELECT:
1005     case WM_DRAGMOVE:
1006         FIXME( "msg %x (%s) not supported yet\n", message, SPY_GetMsgName(message, hwnd) );
1007         return FALSE;
1008
1009     default:
1010         return TRUE; /* message doesn't need any unpacking */
1011     }
1012
1013     /* default exit for most messages: check minsize and store buffer in lparam */
1014     if (size < minsize) return FALSE;
1015     *lparam = (LPARAM)*buffer;
1016     return TRUE;
1017 }
1018
1019
1020 /***********************************************************************
1021  *              pack_reply
1022  *
1023  * Pack a reply to a message for sending to another process.
1024  */
1025 static void pack_reply( HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam,
1026                         LRESULT res, struct packed_message *data )
1027 {
1028     data->count = 0;
1029     switch(message)
1030     {
1031     case WM_NCCREATE:
1032     case WM_CREATE:
1033         push_data( data, (CREATESTRUCTW *)lparam, sizeof(CREATESTRUCTW) );
1034         break;
1035     case WM_GETTEXT:
1036     case CB_GETLBTEXT:
1037     case LB_GETTEXT:
1038         push_data( data, (WCHAR *)lparam, (res + 1) * sizeof(WCHAR) );
1039         break;
1040     case WM_GETMINMAXINFO:
1041         push_data( data, (MINMAXINFO *)lparam, sizeof(MINMAXINFO) );
1042         break;
1043     case WM_MEASUREITEM:
1044         push_data( data, (MEASUREITEMSTRUCT *)lparam, sizeof(MEASUREITEMSTRUCT) );
1045         break;
1046     case WM_WINDOWPOSCHANGING:
1047     case WM_WINDOWPOSCHANGED:
1048         push_data( data, (WINDOWPOS *)lparam, sizeof(WINDOWPOS) );
1049         break;
1050     case WM_GETDLGCODE:
1051         if (lparam) push_data( data, (MSG *)lparam, sizeof(MSG) );
1052         break;
1053     case SBM_GETSCROLLINFO:
1054         push_data( data, (SCROLLINFO *)lparam, sizeof(SCROLLINFO) );
1055         break;
1056     case EM_GETRECT:
1057     case LB_GETITEMRECT:
1058     case CB_GETDROPPEDCONTROLRECT:
1059     case WM_SIZING:
1060     case WM_MOVING:
1061         push_data( data, (RECT *)lparam, sizeof(RECT) );
1062         break;
1063     case EM_GETLINE:
1064     {
1065         WORD *ptr = (WORD *)lparam;
1066         push_data( data, ptr, ptr[-1] * sizeof(WCHAR) );
1067         break;
1068     }
1069     case LB_GETSELITEMS:
1070         push_data( data, (UINT *)lparam, wparam * sizeof(UINT) );
1071         break;
1072     case WM_MDIGETACTIVE:
1073         if (lparam) push_data( data, (BOOL *)lparam, sizeof(BOOL) );
1074         break;
1075     case WM_NCCALCSIZE:
1076         if (!wparam)
1077             push_data( data, (RECT *)lparam, sizeof(RECT) );
1078         else
1079         {
1080             NCCALCSIZE_PARAMS *nc = (NCCALCSIZE_PARAMS *)lparam;
1081             push_data( data, nc, sizeof(*nc) );
1082             push_data( data, nc->lppos, sizeof(*nc->lppos) );
1083         }
1084         break;
1085     case EM_GETSEL:
1086     case SBM_GETRANGE:
1087     case CB_GETEDITSEL:
1088         if (wparam) push_data( data, (DWORD *)wparam, sizeof(DWORD) );
1089         if (lparam) push_data( data, (DWORD *)lparam, sizeof(DWORD) );
1090         break;
1091     case WM_NEXTMENU:
1092         push_data( data, (MDINEXTMENU *)lparam, sizeof(MDINEXTMENU) );
1093         break;
1094     case WM_MDICREATE:
1095         push_data( data, (MDICREATESTRUCTW *)lparam, sizeof(MDICREATESTRUCTW) );
1096         break;
1097     case WM_ASKCBFORMATNAME:
1098         push_data( data, (WCHAR *)lparam, (strlenW((WCHAR *)lparam) + 1) * sizeof(WCHAR) );
1099         break;
1100     }
1101 }
1102
1103
1104 /***********************************************************************
1105  *              unpack_reply
1106  *
1107  * Unpack a message reply received from another process.
1108  */
1109 static void unpack_reply( HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam,
1110                           void *buffer, size_t size )
1111 {
1112     switch(message)
1113     {
1114     case WM_NCCREATE:
1115     case WM_CREATE:
1116     {
1117         CREATESTRUCTW *cs = (CREATESTRUCTW *)lparam;
1118         LPCWSTR name = cs->lpszName, class = cs->lpszClass;
1119         memcpy( cs, buffer, min( sizeof(*cs), size ));
1120         cs->lpszName = name;  /* restore the original pointers */
1121         cs->lpszClass = class;
1122         break;
1123     }
1124     case WM_GETTEXT:
1125     case WM_ASKCBFORMATNAME:
1126         memcpy( (WCHAR *)lparam, buffer, min( wparam*sizeof(WCHAR), size ));
1127         break;
1128     case WM_GETMINMAXINFO:
1129         memcpy( (MINMAXINFO *)lparam, buffer, min( sizeof(MINMAXINFO), size ));
1130         break;
1131     case WM_MEASUREITEM:
1132         memcpy( (MEASUREITEMSTRUCT *)lparam, buffer, min( sizeof(MEASUREITEMSTRUCT), size ));
1133         break;
1134     case WM_WINDOWPOSCHANGING:
1135     case WM_WINDOWPOSCHANGED:
1136         memcpy( (WINDOWPOS *)lparam, buffer, min( sizeof(WINDOWPOS), size ));
1137         break;
1138     case WM_GETDLGCODE:
1139         if (lparam) memcpy( (MSG *)lparam, buffer, min( sizeof(MSG), size ));
1140         break;
1141     case SBM_GETSCROLLINFO:
1142         memcpy( (SCROLLINFO *)lparam, buffer, min( sizeof(SCROLLINFO), size ));
1143         break;
1144     case SBM_GETSCROLLBARINFO:
1145         memcpy( (SCROLLBARINFO *)lparam, buffer, min( sizeof(SCROLLBARINFO), size ));
1146         break;
1147     case EM_GETRECT:
1148     case CB_GETDROPPEDCONTROLRECT:
1149     case LB_GETITEMRECT:
1150     case WM_SIZING:
1151     case WM_MOVING:
1152         memcpy( (RECT *)lparam, buffer, min( sizeof(RECT), size ));
1153         break;
1154     case EM_GETLINE:
1155         size = min( size, (size_t)*(WORD *)lparam );
1156         memcpy( (WCHAR *)lparam, buffer, size );
1157         break;
1158     case LB_GETSELITEMS:
1159         memcpy( (UINT *)lparam, buffer, min( wparam*sizeof(UINT), size ));
1160         break;
1161     case LB_GETTEXT:
1162     case CB_GETLBTEXT:
1163         memcpy( (WCHAR *)lparam, buffer, size );
1164         break;
1165     case WM_NEXTMENU:
1166         memcpy( (MDINEXTMENU *)lparam, buffer, min( sizeof(MDINEXTMENU), size ));
1167         break;
1168     case WM_MDIGETACTIVE:
1169         if (lparam) memcpy( (BOOL *)lparam, buffer, min( sizeof(BOOL), size ));
1170         break;
1171     case WM_NCCALCSIZE:
1172         if (!wparam)
1173             memcpy( (RECT *)lparam, buffer, min( sizeof(RECT), size ));
1174         else
1175         {
1176             NCCALCSIZE_PARAMS *nc = (NCCALCSIZE_PARAMS *)lparam;
1177             WINDOWPOS *wp = nc->lppos;
1178             memcpy( nc, buffer, min( sizeof(*nc), size ));
1179             if (size > sizeof(*nc))
1180             {
1181                 size -= sizeof(*nc);
1182                 memcpy( wp, (NCCALCSIZE_PARAMS*)buffer + 1, min( sizeof(*wp), size ));
1183             }
1184             nc->lppos = wp;  /* restore the original pointer */
1185         }
1186         break;
1187     case EM_GETSEL:
1188     case SBM_GETRANGE:
1189     case CB_GETEDITSEL:
1190         if (wparam)
1191         {
1192             memcpy( (DWORD *)wparam, buffer, min( sizeof(DWORD), size ));
1193             if (size <= sizeof(DWORD)) break;
1194             size -= sizeof(DWORD);
1195             buffer = (DWORD *)buffer + 1;
1196         }
1197         if (lparam) memcpy( (DWORD *)lparam, buffer, min( sizeof(DWORD), size ));
1198         break;
1199     case WM_MDICREATE:
1200     {
1201         MDICREATESTRUCTW *cs = (MDICREATESTRUCTW *)lparam;
1202         LPCWSTR title = cs->szTitle, class = cs->szClass;
1203         memcpy( cs, buffer, min( sizeof(*cs), size ));
1204         cs->szTitle = title;  /* restore the original pointers */
1205         cs->szClass = class;
1206         break;
1207     }
1208     default:
1209         ERR( "should not happen: unexpected message %x\n", message );
1210         break;
1211     }
1212 }
1213
1214
1215 /***********************************************************************
1216  *           reply_message
1217  *
1218  * Send a reply to a sent message.
1219  */
1220 static void reply_message( struct received_message_info *info, LRESULT result, BOOL remove )
1221 {
1222     struct packed_message data;
1223     int i, replied = info->flags & ISMEX_REPLIED;
1224
1225     if (info->flags & ISMEX_NOTIFY) return;  /* notify messages don't get replies */
1226     if (!remove && replied) return;  /* replied already */
1227
1228     data.count = 0;
1229     info->flags |= ISMEX_REPLIED;
1230
1231     if (info->type == MSG_OTHER_PROCESS && !replied)
1232     {
1233         pack_reply( info->msg.hwnd, info->msg.message, info->msg.wParam,
1234                     info->msg.lParam, result, &data );
1235     }
1236
1237     SERVER_START_REQ( reply_message )
1238     {
1239         req->result = result;
1240         req->remove = remove;
1241         for (i = 0; i < data.count; i++) wine_server_add_data( req, data.data[i], data.size[i] );
1242         wine_server_call( req );
1243     }
1244     SERVER_END_REQ;
1245 }
1246
1247
1248 /***********************************************************************
1249  *           handle_internal_message
1250  *
1251  * Handle an internal Wine message instead of calling the window proc.
1252  */
1253 static LRESULT handle_internal_message( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
1254 {
1255     switch(msg)
1256     {
1257     case WM_WINE_DESTROYWINDOW:
1258         return WIN_DestroyWindow( hwnd );
1259     case WM_WINE_SETWINDOWPOS:
1260         if (hwnd == GetDesktopWindow()) return 0;
1261         return USER_SetWindowPos( (WINDOWPOS *)lparam );
1262     case WM_WINE_SHOWWINDOW:
1263         if (hwnd == GetDesktopWindow()) return 0;
1264         return ShowWindow( hwnd, wparam );
1265     case WM_WINE_SETPARENT:
1266         if (hwnd == GetDesktopWindow()) return 0;
1267         return (LRESULT)SetParent( hwnd, (HWND)wparam );
1268     case WM_WINE_SETWINDOWLONG:
1269         return WIN_SetWindowLong( hwnd, (short)LOWORD(wparam), HIWORD(wparam), lparam, TRUE );
1270     case WM_WINE_ENABLEWINDOW:
1271         if (hwnd == GetDesktopWindow()) return 0;
1272         return EnableWindow( hwnd, wparam );
1273     case WM_WINE_SETACTIVEWINDOW:
1274         if (hwnd == GetDesktopWindow()) return 0;
1275         return (LRESULT)SetActiveWindow( (HWND)wparam );
1276     case WM_WINE_KEYBOARD_LL_HOOK:
1277     case WM_WINE_MOUSE_LL_HOOK:
1278     {
1279         struct hook_extra_info *h_extra = (struct hook_extra_info *)lparam;
1280
1281         return call_current_hook( h_extra->handle, HC_ACTION, wparam, h_extra->lparam );
1282     }
1283     default:
1284         if (msg >= WM_WINE_FIRST_DRIVER_MSG && msg <= WM_WINE_LAST_DRIVER_MSG)
1285             return USER_Driver->pWindowMessage( hwnd, msg, wparam, lparam );
1286         FIXME( "unknown internal message %x\n", msg );
1287         return 0;
1288     }
1289 }
1290
1291 /* since the WM_DDE_ACK response to a WM_DDE_EXECUTE message should contain the handle
1292  * to the memory handle, we keep track (in the server side) of all pairs of handle
1293  * used (the client passes its value and the content of the memory handle), and
1294  * the server stored both values (the client, and the local one, created after the
1295  * content). When a ACK message is generated, the list of pair is searched for a
1296  * matching pair, so that the client memory handle can be returned.
1297  */
1298 struct DDE_pair {
1299     HGLOBAL     client_hMem;
1300     HGLOBAL     server_hMem;
1301 };
1302
1303 static      struct DDE_pair*    dde_pairs;
1304 static      int                 dde_num_alloc;
1305 static      int                 dde_num_used;
1306
1307 static CRITICAL_SECTION dde_crst;
1308 static CRITICAL_SECTION_DEBUG critsect_debug =
1309 {
1310     0, 0, &dde_crst,
1311     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
1312       0, 0, { (DWORD_PTR)(__FILE__ ": dde_crst") }
1313 };
1314 static CRITICAL_SECTION dde_crst = { &critsect_debug, -1, 0, 0, 0, 0 };
1315
1316 static BOOL dde_add_pair(HGLOBAL chm, HGLOBAL shm)
1317 {
1318     int  i;
1319 #define GROWBY  4
1320
1321     EnterCriticalSection(&dde_crst);
1322
1323     /* now remember the pair of hMem on both sides */
1324     if (dde_num_used == dde_num_alloc)
1325     {
1326         struct DDE_pair* tmp;
1327         if (dde_pairs)
1328             tmp  = HeapReAlloc( GetProcessHeap(), 0, dde_pairs,
1329                                             (dde_num_alloc + GROWBY) * sizeof(struct DDE_pair));
1330         else
1331             tmp  = HeapAlloc( GetProcessHeap(), 0, 
1332                                             (dde_num_alloc + GROWBY) * sizeof(struct DDE_pair));
1333
1334         if (!tmp)
1335         {
1336             LeaveCriticalSection(&dde_crst);
1337             return FALSE;
1338         }
1339         dde_pairs = tmp;
1340         /* zero out newly allocated part */
1341         memset(&dde_pairs[dde_num_alloc], 0, GROWBY * sizeof(struct DDE_pair));
1342         dde_num_alloc += GROWBY;
1343     }
1344 #undef GROWBY
1345     for (i = 0; i < dde_num_alloc; i++)
1346     {
1347         if (dde_pairs[i].server_hMem == 0)
1348         {
1349             dde_pairs[i].client_hMem = chm;
1350             dde_pairs[i].server_hMem = shm;
1351             dde_num_used++;
1352             break;
1353         }
1354     }
1355     LeaveCriticalSection(&dde_crst);
1356     return TRUE;
1357 }
1358
1359 static HGLOBAL dde_get_pair(HGLOBAL shm)
1360 {
1361     int  i;
1362     HGLOBAL     ret = 0;
1363
1364     EnterCriticalSection(&dde_crst);
1365     for (i = 0; i < dde_num_alloc; i++)
1366     {
1367         if (dde_pairs[i].server_hMem == shm)
1368         {
1369             /* free this pair */
1370             dde_pairs[i].server_hMem = 0;
1371             dde_num_used--;
1372             ret = dde_pairs[i].client_hMem;
1373             break;
1374         }
1375     }
1376     LeaveCriticalSection(&dde_crst);
1377     return ret;
1378 }
1379
1380 /***********************************************************************
1381  *              post_dde_message
1382  *
1383  * Post a DDE message
1384  */
1385 static BOOL post_dde_message( struct packed_message *data, const struct send_message_info *info )
1386 {
1387     void*       ptr = NULL;
1388     int         size = 0;
1389     UINT_PTR    uiLo, uiHi;
1390     LPARAM      lp = 0;
1391     HGLOBAL     hunlock = 0;
1392     int         i;
1393     DWORD       res;
1394
1395     if (!UnpackDDElParam( info->msg, info->lparam, &uiLo, &uiHi ))
1396         return FALSE;
1397
1398     lp = info->lparam;
1399     switch (info->msg)
1400     {
1401         /* DDE messages which don't require packing are:
1402          * WM_DDE_INITIATE
1403          * WM_DDE_TERMINATE
1404          * WM_DDE_REQUEST
1405          * WM_DDE_UNADVISE
1406          */
1407     case WM_DDE_ACK:
1408         if (HIWORD(uiHi))
1409         {
1410             /* uiHi should contain a hMem from WM_DDE_EXECUTE */
1411             HGLOBAL h = dde_get_pair( (HANDLE)uiHi );
1412             if (h)
1413             {
1414                 /* send back the value of h on the other side */
1415                 push_data( data, &h, sizeof(HGLOBAL) );
1416                 lp = uiLo;
1417                 TRACE( "send dde-ack %lx %08lx => %p\n", uiLo, uiHi, h );
1418             }
1419         }
1420         else
1421         {
1422             /* uiHi should contain either an atom or 0 */
1423             TRACE( "send dde-ack %lx atom=%lx\n", uiLo, uiHi );
1424             lp = MAKELONG( uiLo, uiHi );
1425         }
1426         break;
1427     case WM_DDE_ADVISE:
1428     case WM_DDE_DATA:
1429     case WM_DDE_POKE:
1430         size = 0;
1431         if (uiLo)
1432         {
1433             size = GlobalSize( (HGLOBAL)uiLo ) ;
1434             if ((info->msg == WM_DDE_ADVISE && size < sizeof(DDEADVISE)) ||
1435                 (info->msg == WM_DDE_DATA   && size < sizeof(DDEDATA))   ||
1436                 (info->msg == WM_DDE_POKE   && size < sizeof(DDEPOKE))
1437                 )
1438             return FALSE;
1439         }
1440         else if (info->msg != WM_DDE_DATA) return FALSE;
1441
1442         lp = uiHi;
1443         if (uiLo)
1444         {
1445             if ((ptr = GlobalLock( (HGLOBAL)uiLo) ))
1446             {
1447                 DDEDATA *dde_data = (DDEDATA *)ptr;
1448                 TRACE("unused %d, fResponse %d, fRelease %d, fDeferUpd %d, fAckReq %d, cfFormat %d\n",
1449                        dde_data->unused, dde_data->fResponse, dde_data->fRelease,
1450                        dde_data->reserved, dde_data->fAckReq, dde_data->cfFormat);
1451                 push_data( data, ptr, size );
1452                 hunlock = (HGLOBAL)uiLo;
1453             }
1454         }
1455         TRACE( "send ddepack %u %lx\n", size, uiHi );
1456         break;
1457     case WM_DDE_EXECUTE:
1458         if (info->lparam)
1459         {
1460             if ((ptr = GlobalLock( (HGLOBAL)info->lparam) ))
1461             {
1462                 push_data(data, ptr, GlobalSize( (HGLOBAL)info->lparam ));
1463                 /* so that the other side can send it back on ACK */
1464                 lp = info->lparam;
1465                 hunlock = (HGLOBAL)info->lparam;
1466             }
1467         }
1468         break;
1469     }
1470     SERVER_START_REQ( send_message )
1471     {
1472         req->id      = info->dest_tid;
1473         req->type    = info->type;
1474         req->flags   = 0;
1475         req->win     = info->hwnd;
1476         req->msg     = info->msg;
1477         req->wparam  = info->wparam;
1478         req->lparam  = lp;
1479         req->timeout = TIMEOUT_INFINITE;
1480         for (i = 0; i < data->count; i++)
1481             wine_server_add_data( req, data->data[i], data->size[i] );
1482         if ((res = wine_server_call( req )))
1483         {
1484             if (res == STATUS_INVALID_PARAMETER)
1485                 /* FIXME: find a STATUS_ value for this one */
1486                 SetLastError( ERROR_INVALID_THREAD_ID );
1487             else
1488                 SetLastError( RtlNtStatusToDosError(res) );
1489         }
1490         else
1491             FreeDDElParam(info->msg, info->lparam);
1492     }
1493     SERVER_END_REQ;
1494     if (hunlock) GlobalUnlock(hunlock);
1495
1496     return !res;
1497 }
1498
1499 /***********************************************************************
1500  *              unpack_dde_message
1501  *
1502  * Unpack a posted DDE message received from another process.
1503  */
1504 static BOOL unpack_dde_message( HWND hwnd, UINT message, WPARAM *wparam, LPARAM *lparam,
1505                                 void **buffer, size_t size )
1506 {
1507     UINT_PTR    uiLo, uiHi;
1508     HGLOBAL     hMem = 0;
1509     void*       ptr;
1510
1511     switch (message)
1512     {
1513     case WM_DDE_ACK:
1514         if (size)
1515         {
1516             /* hMem is being passed */
1517             if (size != sizeof(HGLOBAL)) return FALSE;
1518             if (!buffer || !*buffer) return FALSE;
1519             uiLo = *lparam;
1520             memcpy( &hMem, *buffer, size );
1521             uiHi = (UINT_PTR)hMem;
1522             TRACE("recv dde-ack %lx mem=%lx[%lx]\n", uiLo, uiHi, GlobalSize( hMem ));
1523         }
1524         else
1525         {
1526             uiLo = LOWORD( *lparam );
1527             uiHi = HIWORD( *lparam );
1528             TRACE("recv dde-ack %lx atom=%lx\n", uiLo, uiHi);
1529         }
1530         *lparam = PackDDElParam( WM_DDE_ACK, uiLo, uiHi );
1531         break;
1532     case WM_DDE_ADVISE:
1533     case WM_DDE_DATA:
1534     case WM_DDE_POKE:
1535         if ((!buffer || !*buffer) && message != WM_DDE_DATA) return FALSE;
1536         uiHi = *lparam;
1537         if (size)
1538         {
1539             if (!(hMem = GlobalAlloc( GMEM_MOVEABLE|GMEM_DDESHARE, size )))
1540                 return FALSE;
1541             if ((ptr = GlobalLock( hMem )))
1542             {
1543                 memcpy( ptr, *buffer, size );
1544                 GlobalUnlock( hMem );
1545             }
1546             else
1547             {
1548                 GlobalFree( hMem );
1549                 return FALSE;
1550             }
1551         }
1552         uiLo = (UINT_PTR)hMem;
1553
1554         *lparam = PackDDElParam( message, uiLo, uiHi );
1555         break;
1556     case WM_DDE_EXECUTE:
1557         if (size)
1558         {
1559             if (!buffer || !*buffer) return FALSE;
1560             if (!(hMem = GlobalAlloc( GMEM_MOVEABLE|GMEM_DDESHARE, size ))) return FALSE;
1561             if ((ptr = GlobalLock( hMem )))
1562             {
1563                 memcpy( ptr, *buffer, size );
1564                 GlobalUnlock( hMem );
1565                 TRACE( "exec: pairing c=%08lx s=%p\n", *lparam, hMem );
1566                 if (!dde_add_pair( (HGLOBAL)*lparam, hMem ))
1567                 {
1568                     GlobalFree( hMem );
1569                     return FALSE;
1570                 }
1571             }
1572             else
1573             {
1574                 GlobalFree( hMem );
1575                 return FALSE;
1576             }
1577         } else return FALSE;
1578         *lparam = (LPARAM)hMem;
1579         break;
1580     }
1581     return TRUE;
1582 }
1583
1584 /***********************************************************************
1585  *           call_window_proc
1586  *
1587  * Call a window procedure and the corresponding hooks.
1588  */
1589 static LRESULT call_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam,
1590                                  BOOL unicode, BOOL same_thread, enum wm_char_mapping mapping )
1591 {
1592     struct user_thread_info *thread_info = get_user_thread_info();
1593     LRESULT result = 0;
1594     CWPSTRUCT cwp;
1595     CWPRETSTRUCT cwpret;
1596
1597     if (thread_info->recursion_count > MAX_SENDMSG_RECURSION) return 0;
1598     thread_info->recursion_count++;
1599
1600     if (msg & 0x80000000)
1601     {
1602         result = handle_internal_message( hwnd, msg, wparam, lparam );
1603         goto done;
1604     }
1605
1606     /* first the WH_CALLWNDPROC hook */
1607     hwnd = WIN_GetFullHandle( hwnd );
1608     cwp.lParam  = lparam;
1609     cwp.wParam  = wparam;
1610     cwp.message = msg;
1611     cwp.hwnd    = hwnd;
1612     HOOK_CallHooks( WH_CALLWNDPROC, HC_ACTION, same_thread, (LPARAM)&cwp, unicode );
1613
1614     /* now call the window procedure */
1615     if (!WINPROC_call_window( hwnd, msg, wparam, lparam, &result, unicode, mapping )) goto done;
1616
1617     /* and finally the WH_CALLWNDPROCRET hook */
1618     cwpret.lResult = result;
1619     cwpret.lParam  = lparam;
1620     cwpret.wParam  = wparam;
1621     cwpret.message = msg;
1622     cwpret.hwnd    = hwnd;
1623     HOOK_CallHooks( WH_CALLWNDPROCRET, HC_ACTION, same_thread, (LPARAM)&cwpret, unicode );
1624  done:
1625     thread_info->recursion_count--;
1626     return result;
1627 }
1628
1629
1630 /***********************************************************************
1631  *           send_parent_notify
1632  *
1633  * Send a WM_PARENTNOTIFY to all ancestors of the given window, unless
1634  * the window has the WS_EX_NOPARENTNOTIFY style.
1635  */
1636 static void send_parent_notify( HWND hwnd, WORD event, WORD idChild, POINT pt )
1637 {
1638     /* pt has to be in the client coordinates of the parent window */
1639     MapWindowPoints( 0, hwnd, &pt, 1 );
1640     for (;;)
1641     {
1642         HWND parent;
1643
1644         if (!(GetWindowLongW( hwnd, GWL_STYLE ) & WS_CHILD)) break;
1645         if (GetWindowLongW( hwnd, GWL_EXSTYLE ) & WS_EX_NOPARENTNOTIFY) break;
1646         if (!(parent = GetParent(hwnd))) break;
1647         if (parent == GetDesktopWindow()) break;
1648         MapWindowPoints( hwnd, parent, &pt, 1 );
1649         hwnd = parent;
1650         SendMessageW( hwnd, WM_PARENTNOTIFY,
1651                       MAKEWPARAM( event, idChild ), MAKELPARAM( pt.x, pt.y ) );
1652     }
1653 }
1654
1655
1656 /***********************************************************************
1657  *          accept_hardware_message
1658  *
1659  * Tell the server we have passed the message to the app
1660  * (even though we may end up dropping it later on)
1661  */
1662 static void accept_hardware_message( UINT hw_id, BOOL remove, HWND new_hwnd )
1663 {
1664     SERVER_START_REQ( accept_hardware_message )
1665     {
1666         req->hw_id   = hw_id;
1667         req->remove  = remove;
1668         req->new_win = new_hwnd;
1669         if (wine_server_call( req ))
1670             FIXME("Failed to reply to MSG_HARDWARE message. Message may not be removed from queue.\n");
1671     }
1672     SERVER_END_REQ;
1673 }
1674
1675
1676 /***********************************************************************
1677  *          process_keyboard_message
1678  *
1679  * returns TRUE if the contents of 'msg' should be passed to the application
1680  */
1681 static BOOL process_keyboard_message( MSG *msg, UINT hw_id, HWND hwnd_filter,
1682                                       UINT first, UINT last, BOOL remove )
1683 {
1684     EVENTMSG event;
1685
1686     /* FIXME: is this really the right place for this hook? */
1687     event.message = msg->message;
1688     event.hwnd    = msg->hwnd;
1689     event.time    = msg->time;
1690     event.paramL  = (msg->wParam & 0xFF) | (HIWORD(msg->lParam) << 8);
1691     event.paramH  = msg->lParam & 0x7FFF;
1692     if (HIWORD(msg->lParam) & 0x0100) event.paramH |= 0x8000; /* special_key - bit */
1693     HOOK_CallHooks( WH_JOURNALRECORD, HC_ACTION, 0, (LPARAM)&event, TRUE );
1694
1695     /* check message filters */
1696     if (msg->message < first || msg->message > last) return FALSE;
1697     if (!check_hwnd_filter( msg, hwnd_filter )) return FALSE;
1698
1699     if (remove)
1700     {
1701         if((msg->message == WM_KEYDOWN) &&
1702            (msg->hwnd != GetDesktopWindow()))
1703         {
1704             /* Handle F1 key by sending out WM_HELP message */
1705             if(msg->wParam == VK_F1 &&
1706                !MENU_IsMenuActive())
1707             {
1708                 HELPINFO hi;
1709                 hi.cbSize = sizeof(HELPINFO);
1710                 hi.iContextType = HELPINFO_WINDOW;
1711                 hi.iCtrlId = GetWindowLongPtrA( msg->hwnd, GWLP_ID );
1712                 hi.hItemHandle = msg->hwnd;
1713                 hi.dwContextId = GetWindowContextHelpId( msg->hwnd );
1714                 hi.MousePos = msg->pt;
1715                 SendMessageW( msg->hwnd, WM_HELP, 0, (LPARAM)&hi );
1716             }
1717             else if(msg->wParam >= VK_BROWSER_BACK &&
1718                     msg->wParam <= VK_LAUNCH_APP2)
1719             {
1720                 /* FIXME: Process keystate */
1721                 SendMessageW(msg->hwnd, WM_APPCOMMAND, (WPARAM)msg->hwnd, MAKELPARAM(0, (FAPPCOMMAND_KEY | (msg->wParam - VK_BROWSER_BACK + 1))));
1722             }
1723         }
1724         else if (msg->message == WM_KEYUP)
1725         {
1726             /* Handle VK_APPS key by posting a WM_CONTEXTMENU message */
1727             if (msg->wParam == VK_APPS && !MENU_IsMenuActive())
1728                 PostMessageW(msg->hwnd, WM_CONTEXTMENU, (WPARAM)msg->hwnd, (LPARAM)-1);
1729         }
1730     }
1731
1732     if (HOOK_CallHooks( WH_KEYBOARD, remove ? HC_ACTION : HC_NOREMOVE,
1733                         LOWORD(msg->wParam), msg->lParam, TRUE ))
1734     {
1735         /* skip this message */
1736         HOOK_CallHooks( WH_CBT, HCBT_KEYSKIPPED, LOWORD(msg->wParam), msg->lParam, TRUE );
1737         accept_hardware_message( hw_id, TRUE, 0 );
1738         return FALSE;
1739     }
1740     accept_hardware_message( hw_id, remove, 0 );
1741     return TRUE;
1742 }
1743
1744
1745 /***********************************************************************
1746  *          process_mouse_message
1747  *
1748  * returns TRUE if the contents of 'msg' should be passed to the application
1749  */
1750 static BOOL process_mouse_message( MSG *msg, UINT hw_id, ULONG_PTR extra_info, HWND hwnd_filter,
1751                                    UINT first, UINT last, BOOL remove )
1752 {
1753     static MSG clk_msg;
1754
1755     POINT pt;
1756     UINT message;
1757     INT hittest;
1758     EVENTMSG event;
1759     GUITHREADINFO info;
1760     MOUSEHOOKSTRUCT hook;
1761     BOOL eatMsg;
1762
1763     /* find the window to dispatch this mouse message to */
1764
1765     GetGUIThreadInfo( GetCurrentThreadId(), &info );
1766     if (info.hwndCapture)
1767     {
1768         hittest = HTCLIENT;
1769         msg->hwnd = info.hwndCapture;
1770     }
1771     else
1772     {
1773         msg->hwnd = WINPOS_WindowFromPoint( msg->hwnd, msg->pt, &hittest );
1774     }
1775
1776     if (!msg->hwnd || !WIN_IsCurrentThread( msg->hwnd ))
1777     {
1778         accept_hardware_message( hw_id, TRUE, msg->hwnd );
1779         return FALSE;
1780     }
1781
1782     /* FIXME: is this really the right place for this hook? */
1783     event.message = msg->message;
1784     event.time    = msg->time;
1785     event.hwnd    = msg->hwnd;
1786     event.paramL  = msg->pt.x;
1787     event.paramH  = msg->pt.y;
1788     HOOK_CallHooks( WH_JOURNALRECORD, HC_ACTION, 0, (LPARAM)&event, TRUE );
1789
1790     if (!check_hwnd_filter( msg, hwnd_filter )) return FALSE;
1791
1792     pt = msg->pt;
1793     message = msg->message;
1794     /* Note: windows has no concept of a non-client wheel message */
1795     if (message != WM_MOUSEWHEEL)
1796     {
1797         if (hittest != HTCLIENT)
1798         {
1799             message += WM_NCMOUSEMOVE - WM_MOUSEMOVE;
1800             msg->wParam = hittest;
1801         }
1802         else
1803         {
1804             /* coordinates don't get translated while tracking a menu */
1805             /* FIXME: should differentiate popups and top-level menus */
1806             if (!(info.flags & GUI_INMENUMODE))
1807                 ScreenToClient( msg->hwnd, &pt );
1808         }
1809     }
1810     msg->lParam = MAKELONG( pt.x, pt.y );
1811
1812     /* translate double clicks */
1813
1814     if ((msg->message == WM_LBUTTONDOWN) ||
1815         (msg->message == WM_RBUTTONDOWN) ||
1816         (msg->message == WM_MBUTTONDOWN) ||
1817         (msg->message == WM_XBUTTONDOWN))
1818     {
1819         BOOL update = remove;
1820
1821         /* translate double clicks -
1822          * note that ...MOUSEMOVEs can slip in between
1823          * ...BUTTONDOWN and ...BUTTONDBLCLK messages */
1824
1825         if ((info.flags & (GUI_INMENUMODE|GUI_INMOVESIZE)) ||
1826             hittest != HTCLIENT ||
1827             (GetClassLongA( msg->hwnd, GCL_STYLE ) & CS_DBLCLKS))
1828         {
1829            if ((msg->message == clk_msg.message) &&
1830                (msg->hwnd == clk_msg.hwnd) &&
1831                (msg->wParam == clk_msg.wParam) &&
1832                (msg->time - clk_msg.time < GetDoubleClickTime()) &&
1833                (abs(msg->pt.x - clk_msg.pt.x) < GetSystemMetrics(SM_CXDOUBLECLK)/2) &&
1834                (abs(msg->pt.y - clk_msg.pt.y) < GetSystemMetrics(SM_CYDOUBLECLK)/2))
1835            {
1836                message += (WM_LBUTTONDBLCLK - WM_LBUTTONDOWN);
1837                if (update)
1838                {
1839                    clk_msg.message = 0;  /* clear the double click conditions */
1840                    update = FALSE;
1841                }
1842            }
1843         }
1844         if (message < first || message > last) return FALSE;
1845         /* update static double click conditions */
1846         if (update) clk_msg = *msg;
1847     }
1848     else
1849     {
1850         if (message < first || message > last) return FALSE;
1851     }
1852
1853     /* message is accepted now (but may still get dropped) */
1854
1855     hook.pt           = msg->pt;
1856     hook.hwnd         = msg->hwnd;
1857     hook.wHitTestCode = hittest;
1858     hook.dwExtraInfo  = extra_info;
1859     if (HOOK_CallHooks( WH_MOUSE, remove ? HC_ACTION : HC_NOREMOVE,
1860                         message, (LPARAM)&hook, TRUE ))
1861     {
1862         hook.pt           = msg->pt;
1863         hook.hwnd         = msg->hwnd;
1864         hook.wHitTestCode = hittest;
1865         hook.dwExtraInfo  = extra_info;
1866         HOOK_CallHooks( WH_CBT, HCBT_CLICKSKIPPED, message, (LPARAM)&hook, TRUE );
1867         accept_hardware_message( hw_id, TRUE, 0 );
1868         return FALSE;
1869     }
1870
1871     if ((hittest == HTERROR) || (hittest == HTNOWHERE))
1872     {
1873         SendMessageW( msg->hwnd, WM_SETCURSOR, (WPARAM)msg->hwnd,
1874                       MAKELONG( hittest, msg->message ));
1875         accept_hardware_message( hw_id, TRUE, 0 );
1876         return FALSE;
1877     }
1878
1879     accept_hardware_message( hw_id, remove, 0 );
1880
1881     if (!remove || info.hwndCapture)
1882     {
1883         msg->message = message;
1884         return TRUE;
1885     }
1886
1887     eatMsg = FALSE;
1888
1889     if ((msg->message == WM_LBUTTONDOWN) ||
1890         (msg->message == WM_RBUTTONDOWN) ||
1891         (msg->message == WM_MBUTTONDOWN) ||
1892         (msg->message == WM_XBUTTONDOWN))
1893     {
1894         /* Send the WM_PARENTNOTIFY,
1895          * note that even for double/nonclient clicks
1896          * notification message is still WM_L/M/RBUTTONDOWN.
1897          */
1898         send_parent_notify( msg->hwnd, msg->message, 0, msg->pt );
1899
1900         /* Activate the window if needed */
1901
1902         if (msg->hwnd != info.hwndActive)
1903         {
1904             HWND hwndTop = msg->hwnd;
1905             while (hwndTop)
1906             {
1907                 if ((GetWindowLongW( hwndTop, GWL_STYLE ) & (WS_POPUP|WS_CHILD)) != WS_CHILD) break;
1908                 hwndTop = GetParent( hwndTop );
1909             }
1910
1911             if (hwndTop && hwndTop != GetDesktopWindow())
1912             {
1913                 LONG ret = SendMessageW( msg->hwnd, WM_MOUSEACTIVATE, (WPARAM)hwndTop,
1914                                          MAKELONG( hittest, msg->message ) );
1915                 switch(ret)
1916                 {
1917                 case MA_NOACTIVATEANDEAT:
1918                     eatMsg = TRUE;
1919                     /* fall through */
1920                 case MA_NOACTIVATE:
1921                     break;
1922                 case MA_ACTIVATEANDEAT:
1923                     eatMsg = TRUE;
1924                     /* fall through */
1925                 case MA_ACTIVATE:
1926                 case 0:
1927                     if (!FOCUS_MouseActivate( hwndTop )) eatMsg = TRUE;
1928                     break;
1929                 default:
1930                     WARN( "unknown WM_MOUSEACTIVATE code %d\n", ret );
1931                     break;
1932                 }
1933             }
1934         }
1935     }
1936
1937     /* send the WM_SETCURSOR message */
1938
1939     /* Windows sends the normal mouse message as the message parameter
1940        in the WM_SETCURSOR message even if it's non-client mouse message */
1941     SendMessageW( msg->hwnd, WM_SETCURSOR, (WPARAM)msg->hwnd, MAKELONG( hittest, msg->message ));
1942
1943     msg->message = message;
1944     return !eatMsg;
1945 }
1946
1947
1948 /***********************************************************************
1949  *           process_hardware_message
1950  *
1951  * Process a hardware message; return TRUE if message should be passed on to the app
1952  */
1953 static BOOL process_hardware_message( MSG *msg, UINT hw_id, ULONG_PTR extra_info, HWND hwnd_filter,
1954                                       UINT first, UINT last, BOOL remove )
1955 {
1956     if (is_keyboard_message( msg->message ))
1957         return process_keyboard_message( msg, hw_id, hwnd_filter, first, last, remove );
1958
1959     if (is_mouse_message( msg->message ))
1960         return process_mouse_message( msg, hw_id, extra_info, hwnd_filter, first, last, remove );
1961
1962     ERR( "unknown message type %x\n", msg->message );
1963     return FALSE;
1964 }
1965
1966
1967 /***********************************************************************
1968  *           call_sendmsg_callback
1969  *
1970  * Call the callback function of SendMessageCallback.
1971  */
1972 static inline void call_sendmsg_callback( SENDASYNCPROC callback, HWND hwnd, UINT msg,
1973                                           ULONG_PTR data, LRESULT result )
1974 {
1975     if (!callback) return;
1976
1977     if (TRACE_ON(relay))
1978         DPRINTF( "%04x:Call message callback %p (hwnd=%p,msg=%s,data=%08lx,result=%08lx)\n",
1979                  GetCurrentThreadId(), callback, hwnd, SPY_GetMsgName( msg, hwnd ),
1980                  data, result );
1981     callback( hwnd, msg, data, result );
1982     if (TRACE_ON(relay))
1983         DPRINTF( "%04x:Ret  message callback %p (hwnd=%p,msg=%s,data=%08lx,result=%08lx)\n",
1984                  GetCurrentThreadId(), callback, hwnd, SPY_GetMsgName( msg, hwnd ),
1985                  data, result );
1986 }
1987
1988
1989 /***********************************************************************
1990  *           peek_message
1991  *
1992  * Peek for a message matching the given parameters. Return FALSE if none available.
1993  * All pending sent messages are processed before returning.
1994  */
1995 static BOOL peek_message( MSG *msg, HWND hwnd, UINT first, UINT last, UINT flags )
1996 {
1997     LRESULT result;
1998     ULONG_PTR extra_info = 0;
1999     struct user_thread_info *thread_info = get_user_thread_info();
2000     struct received_message_info info, *old_info;
2001     unsigned int wake_mask, changed_mask = HIWORD(flags);
2002     unsigned int hw_id = 0;  /* id of previous hardware message */
2003
2004     if (!first && !last) last = ~0;
2005     if (!changed_mask) changed_mask = QS_ALLINPUT;
2006     wake_mask = changed_mask & (QS_SENDMESSAGE | QS_SMRESULT);
2007
2008     for (;;)
2009     {
2010         NTSTATUS res;
2011         void *buffer = NULL;
2012         size_t size = 0, buffer_size = 0;
2013
2014         do  /* loop while buffer is too small */
2015         {
2016             if (buffer_size && !(buffer = HeapAlloc( GetProcessHeap(), 0, buffer_size )))
2017                 return FALSE;
2018             SERVER_START_REQ( get_message )
2019             {
2020                 req->flags     = flags;
2021                 req->get_win   = hwnd;
2022                 req->get_first = first;
2023                 req->get_last  = last;
2024                 req->hw_id     = hw_id;
2025                 req->wake_mask = wake_mask;
2026                 req->changed_mask = changed_mask;
2027                 if (buffer_size) wine_server_set_reply( req, buffer, buffer_size );
2028                 if (!(res = wine_server_call( req )))
2029                 {
2030                     size = wine_server_reply_size( reply );
2031                     info.type        = reply->type;
2032                     info.msg.hwnd    = reply->win;
2033                     info.msg.message = reply->msg;
2034                     info.msg.wParam  = reply->wparam;
2035                     info.msg.lParam  = reply->lparam;
2036                     info.msg.time    = reply->time;
2037                     info.msg.pt.x    = reply->x;
2038                     info.msg.pt.y    = reply->y;
2039                     hw_id            = reply->hw_id;
2040                     extra_info       = reply->info;
2041                     thread_info->active_hooks = reply->active_hooks;
2042                 }
2043                 else
2044                 {
2045                     HeapFree( GetProcessHeap(), 0, buffer );
2046                     buffer_size = reply->total;
2047                 }
2048             }
2049             SERVER_END_REQ;
2050         } while (res == STATUS_BUFFER_OVERFLOW);
2051
2052         if (res) return FALSE;
2053
2054         TRACE( "got type %d msg %x (%s) hwnd %p wp %lx lp %lx\n",
2055                info.type, info.msg.message,
2056                (info.type == MSG_WINEVENT) ? "MSG_WINEVENT" : SPY_GetMsgName(info.msg.message, info.msg.hwnd),
2057                info.msg.hwnd, info.msg.wParam, info.msg.lParam );
2058
2059         switch(info.type)
2060         {
2061         case MSG_ASCII:
2062         case MSG_UNICODE:
2063             info.flags = ISMEX_SEND;
2064             break;
2065         case MSG_NOTIFY:
2066             info.flags = ISMEX_NOTIFY;
2067             break;
2068         case MSG_CALLBACK:
2069             info.flags = ISMEX_CALLBACK;
2070             break;
2071         case MSG_CALLBACK_RESULT:
2072             if (size >= sizeof(struct callback_msg_data))
2073             {
2074                 const struct callback_msg_data *data = (const struct callback_msg_data *)buffer;
2075                 call_sendmsg_callback( data->callback, info.msg.hwnd,
2076                                        info.msg.message, data->data, data->result );
2077             }
2078             goto next;
2079         case MSG_WINEVENT:
2080             if (size >= sizeof(struct winevent_msg_data))
2081             {
2082                 WINEVENTPROC hook_proc;
2083                 const struct winevent_msg_data *data = (const struct winevent_msg_data *)buffer;
2084
2085                 hook_proc = data->hook_proc;
2086                 size -= sizeof(*data);
2087                 if (size)
2088                 {
2089                     WCHAR module[MAX_PATH];
2090
2091                     size = min( size, (MAX_PATH - 1) * sizeof(WCHAR) );
2092                     memcpy( module, buffer, size );
2093                     module[size / sizeof(WCHAR)] = 0;
2094                     if (!(hook_proc = get_hook_proc( hook_proc, module )))
2095                     {
2096                         ERR( "invalid winevent hook module name %s\n", debugstr_w(module) );
2097                         goto next;
2098                     }
2099                 }
2100
2101                 if (TRACE_ON(relay))
2102                     DPRINTF( "%04x:Call winevent proc %p (hook=%p,event=%x,hwnd=%p,object_id=%lx,child_id=%lx,tid=%04x,time=%x)\n",
2103                              GetCurrentThreadId(), hook_proc,
2104                              data->hook, info.msg.message, info.msg.hwnd, info.msg.wParam,
2105                              info.msg.lParam, data->tid, info.msg.time);
2106
2107                 hook_proc( data->hook, info.msg.message, info.msg.hwnd, info.msg.wParam,
2108                                  info.msg.lParam, data->tid, info.msg.time );
2109
2110                 if (TRACE_ON(relay))
2111                     DPRINTF( "%04x:Ret  winevent proc %p (hook=%p,event=%x,hwnd=%p,object_id=%lx,child_id=%lx,tid=%04x,time=%x)\n",
2112                              GetCurrentThreadId(), hook_proc,
2113                              data->hook, info.msg.message, info.msg.hwnd, info.msg.wParam,
2114                              info.msg.lParam, data->tid, info.msg.time);
2115             }
2116             goto next;
2117         case MSG_OTHER_PROCESS:
2118             info.flags = ISMEX_SEND;
2119             if (!unpack_message( info.msg.hwnd, info.msg.message, &info.msg.wParam,
2120                                  &info.msg.lParam, &buffer, size ))
2121             {
2122                 /* ignore it */
2123                 reply_message( &info, 0, TRUE );
2124                 goto next;
2125             }
2126             break;
2127         case MSG_HARDWARE:
2128             if (!process_hardware_message( &info.msg, hw_id, extra_info,
2129                                            hwnd, first, last, flags & PM_REMOVE ))
2130             {
2131                 TRACE("dropping msg %x\n", info.msg.message );
2132                 goto next;  /* ignore it */
2133             }
2134             thread_info->GetMessagePosVal = MAKELONG( info.msg.pt.x, info.msg.pt.y );
2135             /* fall through */
2136         case MSG_POSTED:
2137             thread_info->GetMessageExtraInfoVal = extra_info;
2138             if (info.msg.message >= WM_DDE_FIRST && info.msg.message <= WM_DDE_LAST)
2139             {
2140                 if (!unpack_dde_message( info.msg.hwnd, info.msg.message, &info.msg.wParam,
2141                                          &info.msg.lParam, &buffer, size ))
2142                     goto next;  /* ignore it */
2143             }
2144             *msg = info.msg;
2145             HeapFree( GetProcessHeap(), 0, buffer );
2146             return TRUE;
2147         }
2148
2149         /* if we get here, we have a sent message; call the window procedure */
2150         old_info = thread_info->receive_info;
2151         thread_info->receive_info = &info;
2152         result = call_window_proc( info.msg.hwnd, info.msg.message, info.msg.wParam,
2153                                    info.msg.lParam, (info.type != MSG_ASCII), FALSE,
2154                                    WMCHAR_MAP_RECVMESSAGE );
2155         reply_message( &info, result, TRUE );
2156         thread_info->receive_info = old_info;
2157
2158         /* if some PM_QS* flags were specified, only handle sent messages from now on */
2159         if (HIWORD(flags)) flags = PM_QS_SENDMESSAGE | LOWORD(flags);
2160     next:
2161         HeapFree( GetProcessHeap(), 0, buffer );
2162     }
2163 }
2164
2165
2166 /***********************************************************************
2167  *           process_sent_messages
2168  *
2169  * Process all pending sent messages.
2170  */
2171 static inline void process_sent_messages(void)
2172 {
2173     MSG msg;
2174     peek_message( &msg, 0, 0, 0, PM_REMOVE | PM_QS_SENDMESSAGE );
2175 }
2176
2177
2178 /***********************************************************************
2179  *           get_server_queue_handle
2180  *
2181  * Get a handle to the server message queue for the current thread.
2182  */
2183 static HANDLE get_server_queue_handle(void)
2184 {
2185     struct user_thread_info *thread_info = get_user_thread_info();
2186     HANDLE ret;
2187
2188     if (!(ret = thread_info->server_queue))
2189     {
2190         SERVER_START_REQ( get_msg_queue )
2191         {
2192             wine_server_call( req );
2193             ret = reply->handle;
2194         }
2195         SERVER_END_REQ;
2196         thread_info->server_queue = ret;
2197         if (!ret) ERR( "Cannot get server thread queue\n" );
2198     }
2199     return ret;
2200 }
2201
2202
2203 /***********************************************************************
2204  *           wait_message_reply
2205  *
2206  * Wait until a sent message gets replied to.
2207  */
2208 static void wait_message_reply( UINT flags )
2209 {
2210     HANDLE server_queue = get_server_queue_handle();
2211
2212     for (;;)
2213     {
2214         unsigned int wake_bits = 0, changed_bits = 0;
2215         DWORD dwlc, res;
2216
2217         SERVER_START_REQ( set_queue_mask )
2218         {
2219             req->wake_mask    = QS_SMRESULT | ((flags & SMTO_BLOCK) ? 0 : QS_SENDMESSAGE);
2220             req->changed_mask = req->wake_mask;
2221             req->skip_wait    = 1;
2222             if (!wine_server_call( req ))
2223             {
2224                 wake_bits    = reply->wake_bits;
2225                 changed_bits = reply->changed_bits;
2226             }
2227         }
2228         SERVER_END_REQ;
2229
2230         if (wake_bits & QS_SMRESULT) return;  /* got a result */
2231         if (wake_bits & QS_SENDMESSAGE)
2232         {
2233             /* Process the sent message immediately */
2234             process_sent_messages();
2235             continue;
2236         }
2237
2238         /* now wait for it */
2239
2240         ReleaseThunkLock( &dwlc );
2241         res = USER_Driver->pMsgWaitForMultipleObjectsEx( 1, &server_queue,
2242                                                          INFINITE, QS_SENDMESSAGE, 0 );
2243         if (dwlc) RestoreThunkLock( dwlc );
2244     }
2245 }
2246
2247 /***********************************************************************
2248  *              put_message_in_queue
2249  *
2250  * Put a sent message into the destination queue.
2251  * For inter-process message, reply_size is set to expected size of reply data.
2252  */
2253 static BOOL put_message_in_queue( const struct send_message_info *info, size_t *reply_size )
2254 {
2255     struct packed_message data;
2256     message_data_t msg_data;
2257     unsigned int res;
2258     int i;
2259     timeout_t timeout = TIMEOUT_INFINITE;
2260
2261     /* Check for INFINITE timeout for compatibility with Win9x,
2262      * although Windows >= NT does not do so
2263      */
2264     if (info->type != MSG_NOTIFY &&
2265         info->type != MSG_CALLBACK &&
2266         info->type != MSG_POSTED &&
2267         info->timeout &&
2268         info->timeout != INFINITE)
2269     {
2270         /* timeout is signed despite the prototype */
2271         timeout = (timeout_t)max( 0, (int)info->timeout ) * -10000;
2272     }
2273
2274     data.count = 0;
2275     if (info->type == MSG_OTHER_PROCESS)
2276     {
2277         *reply_size = pack_message( info->hwnd, info->msg, info->wparam, info->lparam, &data );
2278         if (data.count == -1)
2279         {
2280             WARN( "cannot pack message %x\n", info->msg );
2281             return FALSE;
2282         }
2283     }
2284     else if (info->type == MSG_CALLBACK)
2285     {
2286         msg_data.callback.callback = info->callback;
2287         msg_data.callback.data     = info->data;
2288         msg_data.callback.result   = 0;
2289         data.data[0] = &msg_data;
2290         data.size[0] = sizeof(msg_data.callback);
2291         data.count = 1;
2292     }
2293     else if (info->type == MSG_POSTED && info->msg >= WM_DDE_FIRST && info->msg <= WM_DDE_LAST)
2294     {
2295         return post_dde_message( &data, info );
2296     }
2297
2298     SERVER_START_REQ( send_message )
2299     {
2300         req->id      = info->dest_tid;
2301         req->type    = info->type;
2302         req->flags   = 0;
2303         req->win     = info->hwnd;
2304         req->msg     = info->msg;
2305         req->wparam  = info->wparam;
2306         req->lparam  = info->lparam;
2307         req->timeout = timeout;
2308
2309         if (info->flags & SMTO_ABORTIFHUNG) req->flags |= SEND_MSG_ABORT_IF_HUNG;
2310         for (i = 0; i < data.count; i++) wine_server_add_data( req, data.data[i], data.size[i] );
2311         if ((res = wine_server_call( req )))
2312         {
2313             if (res == STATUS_INVALID_PARAMETER)
2314                 /* FIXME: find a STATUS_ value for this one */
2315                 SetLastError( ERROR_INVALID_THREAD_ID );
2316             else
2317                 SetLastError( RtlNtStatusToDosError(res) );
2318         }
2319     }
2320     SERVER_END_REQ;
2321     return !res;
2322 }
2323
2324
2325 /***********************************************************************
2326  *              retrieve_reply
2327  *
2328  * Retrieve a message reply from the server.
2329  */
2330 static LRESULT retrieve_reply( const struct send_message_info *info,
2331                                size_t reply_size, LRESULT *result )
2332 {
2333     NTSTATUS status;
2334     void *reply_data = NULL;
2335
2336     if (reply_size)
2337     {
2338         if (!(reply_data = HeapAlloc( GetProcessHeap(), 0, reply_size )))
2339         {
2340             WARN( "no memory for reply, will be truncated\n" );
2341             reply_size = 0;
2342         }
2343     }
2344     SERVER_START_REQ( get_message_reply )
2345     {
2346         req->cancel = 1;
2347         if (reply_size) wine_server_set_reply( req, reply_data, reply_size );
2348         if (!(status = wine_server_call( req ))) *result = reply->result;
2349         reply_size = wine_server_reply_size( reply );
2350     }
2351     SERVER_END_REQ;
2352     if (!status && reply_size)
2353         unpack_reply( info->hwnd, info->msg, info->wparam, info->lparam, reply_data, reply_size );
2354
2355     HeapFree( GetProcessHeap(), 0, reply_data );
2356
2357     TRACE( "hwnd %p msg %x (%s) wp %lx lp %lx got reply %lx (err=%d)\n",
2358            info->hwnd, info->msg, SPY_GetMsgName(info->msg, info->hwnd), info->wparam,
2359            info->lparam, *result, status );
2360
2361     /* MSDN states that last error is 0 on timeout, but at least NT4 returns ERROR_TIMEOUT */
2362     if (status) SetLastError( RtlNtStatusToDosError(status) );
2363     return !status;
2364 }
2365
2366
2367 /***********************************************************************
2368  *              send_inter_thread_message
2369  */
2370 static LRESULT send_inter_thread_message( const struct send_message_info *info, LRESULT *res_ptr )
2371 {
2372     size_t reply_size = 0;
2373
2374     TRACE( "hwnd %p msg %x (%s) wp %lx lp %lx\n",
2375            info->hwnd, info->msg, SPY_GetMsgName(info->msg, info->hwnd), info->wparam, info->lparam );
2376
2377     USER_CheckNotLock();
2378
2379     if (!put_message_in_queue( info, &reply_size )) return 0;
2380
2381     /* there's no reply to wait for on notify/callback messages */
2382     if (info->type == MSG_NOTIFY || info->type == MSG_CALLBACK) return 1;
2383
2384     wait_message_reply( info->flags );
2385     return retrieve_reply( info, reply_size, res_ptr );
2386 }
2387
2388
2389 /***********************************************************************
2390  *              send_inter_thread_callback
2391  */
2392 static LRESULT send_inter_thread_callback( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,
2393                                            LRESULT *result, void *arg )
2394 {
2395     struct send_message_info *info = arg;
2396     info->hwnd   = hwnd;
2397     info->msg    = msg;
2398     info->wparam = wp;
2399     info->lparam = lp;
2400     return send_inter_thread_message( info, result );
2401 }
2402
2403
2404 /***********************************************************************
2405  *              send_message
2406  *
2407  * Backend implementation of the various SendMessage functions.
2408  */
2409 static BOOL send_message( struct send_message_info *info, DWORD_PTR *res_ptr, BOOL unicode )
2410 {
2411     DWORD dest_pid;
2412     BOOL ret;
2413     LRESULT result;
2414
2415     if (is_broadcast(info->hwnd))
2416     {
2417         EnumWindows( broadcast_message_callback, (LPARAM)info );
2418         if (res_ptr) *res_ptr = 1;
2419         return TRUE;
2420     }
2421
2422     if (!(info->dest_tid = GetWindowThreadProcessId( info->hwnd, &dest_pid ))) return FALSE;
2423
2424     if (USER_IsExitingThread( info->dest_tid )) return FALSE;
2425
2426     SPY_EnterMessage( SPY_SENDMESSAGE, info->hwnd, info->msg, info->wparam, info->lparam );
2427
2428     if (info->dest_tid == GetCurrentThreadId())
2429     {
2430         result = call_window_proc( info->hwnd, info->msg, info->wparam, info->lparam,
2431                                    unicode, TRUE, info->wm_char );
2432         if (info->type == MSG_CALLBACK)
2433             call_sendmsg_callback( info->callback, info->hwnd, info->msg, info->data, result );
2434         ret = TRUE;
2435     }
2436     else
2437     {
2438         if (dest_pid != GetCurrentProcessId() && (info->type == MSG_ASCII || info->type == MSG_UNICODE))
2439             info->type = MSG_OTHER_PROCESS;
2440
2441         /* MSG_ASCII can be sent unconverted except for WM_CHAR; everything else needs to be Unicode */
2442         if (!unicode && is_unicode_message( info->msg ) &&
2443             (info->type != MSG_ASCII || info->msg == WM_CHAR))
2444             ret = WINPROC_CallProcAtoW( send_inter_thread_callback, info->hwnd, info->msg,
2445                                         info->wparam, info->lparam, &result, info, info->wm_char );
2446         else
2447             ret = send_inter_thread_message( info, &result );
2448     }
2449
2450     SPY_ExitMessage( SPY_RESULT_OK, info->hwnd, info->msg, result, info->wparam, info->lparam );
2451     if (ret && res_ptr) *res_ptr = result;
2452     return ret;
2453 }
2454
2455
2456 /***********************************************************************
2457  *              MSG_SendInternalMessageTimeout
2458  *
2459  * Same as SendMessageTimeoutW but sends the message to a specific thread
2460  * without requiring a window handle. Only works for internal Wine messages.
2461  */
2462 LRESULT MSG_SendInternalMessageTimeout( DWORD dest_pid, DWORD dest_tid,
2463                                         UINT msg, WPARAM wparam, LPARAM lparam,
2464                                         UINT flags, UINT timeout, PDWORD_PTR res_ptr )
2465 {
2466     struct send_message_info info;
2467     LRESULT ret, result;
2468
2469     assert( msg & 0x80000000 );  /* must be an internal Wine message */
2470
2471     info.type     = MSG_UNICODE;
2472     info.dest_tid = dest_tid;
2473     info.hwnd     = 0;
2474     info.msg      = msg;
2475     info.wparam   = wparam;
2476     info.lparam   = lparam;
2477     info.flags    = flags;
2478     info.timeout  = timeout;
2479
2480     if (USER_IsExitingThread( dest_tid )) return 0;
2481
2482     if (dest_tid == GetCurrentThreadId())
2483     {
2484         result = handle_internal_message( 0, msg, wparam, lparam );
2485         ret = 1;
2486     }
2487     else
2488     {
2489         if (dest_pid != GetCurrentProcessId()) info.type = MSG_OTHER_PROCESS;
2490         ret = send_inter_thread_message( &info, &result );
2491     }
2492     if (ret && res_ptr) *res_ptr = result;
2493     return ret;
2494 }
2495
2496
2497 /***********************************************************************
2498  *              SendMessageTimeoutW  (USER32.@)
2499  */
2500 LRESULT WINAPI SendMessageTimeoutW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam,
2501                                     UINT flags, UINT timeout, PDWORD_PTR res_ptr )
2502 {
2503     struct send_message_info info;
2504
2505     info.type    = MSG_UNICODE;
2506     info.hwnd    = hwnd;
2507     info.msg     = msg;
2508     info.wparam  = wparam;
2509     info.lparam  = lparam;
2510     info.flags   = flags;
2511     info.timeout = timeout;
2512
2513     return send_message( &info, res_ptr, TRUE );
2514 }
2515
2516 /***********************************************************************
2517  *              SendMessageTimeoutA  (USER32.@)
2518  */
2519 LRESULT WINAPI SendMessageTimeoutA( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam,
2520                                     UINT flags, UINT timeout, PDWORD_PTR res_ptr )
2521 {
2522     struct send_message_info info;
2523
2524     info.type    = MSG_ASCII;
2525     info.hwnd    = hwnd;
2526     info.msg     = msg;
2527     info.wparam  = wparam;
2528     info.lparam  = lparam;
2529     info.flags   = flags;
2530     info.timeout = timeout;
2531     info.wm_char  = WMCHAR_MAP_SENDMESSAGETIMEOUT;
2532
2533     return send_message( &info, res_ptr, FALSE );
2534 }
2535
2536
2537 /***********************************************************************
2538  *              SendMessageW  (USER32.@)
2539  */
2540 LRESULT WINAPI SendMessageW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
2541 {
2542     DWORD_PTR res = 0;
2543     struct send_message_info info;
2544
2545     info.type    = MSG_UNICODE;
2546     info.hwnd    = hwnd;
2547     info.msg     = msg;
2548     info.wparam  = wparam;
2549     info.lparam  = lparam;
2550     info.flags   = SMTO_NORMAL;
2551     info.timeout = 0;
2552
2553     send_message( &info, &res, TRUE );
2554     return res;
2555 }
2556
2557
2558 /***********************************************************************
2559  *              SendMessageA  (USER32.@)
2560  */
2561 LRESULT WINAPI SendMessageA( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
2562 {
2563     DWORD_PTR res = 0;
2564     struct send_message_info info;
2565
2566     info.type    = MSG_ASCII;
2567     info.hwnd    = hwnd;
2568     info.msg     = msg;
2569     info.wparam  = wparam;
2570     info.lparam  = lparam;
2571     info.flags   = SMTO_NORMAL;
2572     info.timeout = 0;
2573     info.wm_char  = WMCHAR_MAP_SENDMESSAGE;
2574
2575     send_message( &info, &res, FALSE );
2576     return res;
2577 }
2578
2579
2580 /***********************************************************************
2581  *              SendNotifyMessageA  (USER32.@)
2582  */
2583 BOOL WINAPI SendNotifyMessageA( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
2584 {
2585     struct send_message_info info;
2586
2587     if (is_pointer_message(msg))
2588     {
2589         SetLastError( ERROR_MESSAGE_SYNC_ONLY );
2590         return FALSE;
2591     }
2592
2593     info.type    = MSG_NOTIFY;
2594     info.hwnd    = hwnd;
2595     info.msg     = msg;
2596     info.wparam  = wparam;
2597     info.lparam  = lparam;
2598     info.flags   = 0;
2599     info.wm_char = WMCHAR_MAP_SENDMESSAGETIMEOUT;
2600
2601     return send_message( &info, NULL, FALSE );
2602 }
2603
2604
2605 /***********************************************************************
2606  *              SendNotifyMessageW  (USER32.@)
2607  */
2608 BOOL WINAPI SendNotifyMessageW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
2609 {
2610     struct send_message_info info;
2611
2612     if (is_pointer_message(msg))
2613     {
2614         SetLastError( ERROR_MESSAGE_SYNC_ONLY );
2615         return FALSE;
2616     }
2617
2618     info.type    = MSG_NOTIFY;
2619     info.hwnd    = hwnd;
2620     info.msg     = msg;
2621     info.wparam  = wparam;
2622     info.lparam  = lparam;
2623     info.flags   = 0;
2624
2625     return send_message( &info, NULL, TRUE );
2626 }
2627
2628
2629 /***********************************************************************
2630  *              SendMessageCallbackA  (USER32.@)
2631  */
2632 BOOL WINAPI SendMessageCallbackA( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam,
2633                                   SENDASYNCPROC callback, ULONG_PTR data )
2634 {
2635     struct send_message_info info;
2636
2637     if (is_pointer_message(msg))
2638     {
2639         SetLastError( ERROR_MESSAGE_SYNC_ONLY );
2640         return FALSE;
2641     }
2642
2643     info.type     = MSG_CALLBACK;
2644     info.hwnd     = hwnd;
2645     info.msg      = msg;
2646     info.wparam   = wparam;
2647     info.lparam   = lparam;
2648     info.callback = callback;
2649     info.data     = data;
2650     info.flags    = 0;
2651     info.wm_char  = WMCHAR_MAP_SENDMESSAGETIMEOUT;
2652
2653     return send_message( &info, NULL, FALSE );
2654 }
2655
2656
2657 /***********************************************************************
2658  *              SendMessageCallbackW  (USER32.@)
2659  */
2660 BOOL WINAPI SendMessageCallbackW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam,
2661                                   SENDASYNCPROC callback, ULONG_PTR data )
2662 {
2663     struct send_message_info info;
2664
2665     if (is_pointer_message(msg))
2666     {
2667         SetLastError( ERROR_MESSAGE_SYNC_ONLY );
2668         return FALSE;
2669     }
2670
2671     info.type     = MSG_CALLBACK;
2672     info.hwnd     = hwnd;
2673     info.msg      = msg;
2674     info.wparam   = wparam;
2675     info.lparam   = lparam;
2676     info.callback = callback;
2677     info.data     = data;
2678     info.flags    = 0;
2679
2680     return send_message( &info, NULL, TRUE );
2681 }
2682
2683
2684 /***********************************************************************
2685  *              ReplyMessage  (USER32.@)
2686  */
2687 BOOL WINAPI ReplyMessage( LRESULT result )
2688 {
2689     struct received_message_info *info = get_user_thread_info()->receive_info;
2690
2691     if (!info) return FALSE;
2692     reply_message( info, result, FALSE );
2693     return TRUE;
2694 }
2695
2696
2697 /***********************************************************************
2698  *              InSendMessage  (USER32.@)
2699  */
2700 BOOL WINAPI InSendMessage(void)
2701 {
2702     return (InSendMessageEx(NULL) & (ISMEX_SEND|ISMEX_REPLIED)) == ISMEX_SEND;
2703 }
2704
2705
2706 /***********************************************************************
2707  *              InSendMessageEx  (USER32.@)
2708  */
2709 DWORD WINAPI InSendMessageEx( LPVOID reserved )
2710 {
2711     struct received_message_info *info = get_user_thread_info()->receive_info;
2712
2713     if (info) return info->flags;
2714     return ISMEX_NOSEND;
2715 }
2716
2717
2718 /***********************************************************************
2719  *              PostMessageA  (USER32.@)
2720  */
2721 BOOL WINAPI PostMessageA( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
2722 {
2723     if (!map_wparam_AtoW( msg, &wparam, WMCHAR_MAP_POSTMESSAGE )) return TRUE;
2724     return PostMessageW( hwnd, msg, wparam, lparam );
2725 }
2726
2727
2728 /***********************************************************************
2729  *              PostMessageW  (USER32.@)
2730  */
2731 BOOL WINAPI PostMessageW( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam )
2732 {
2733     struct send_message_info info;
2734
2735     if (is_pointer_message( msg ))
2736     {
2737         SetLastError( ERROR_MESSAGE_SYNC_ONLY );
2738         return FALSE;
2739     }
2740
2741     TRACE( "hwnd %p msg %x (%s) wp %lx lp %lx\n",
2742            hwnd, msg, SPY_GetMsgName(msg, hwnd), wparam, lparam );
2743
2744     info.type   = MSG_POSTED;
2745     info.hwnd   = hwnd;
2746     info.msg    = msg;
2747     info.wparam = wparam;
2748     info.lparam = lparam;
2749     info.flags  = 0;
2750
2751     if (is_broadcast(hwnd))
2752     {
2753         EnumWindows( broadcast_message_callback, (LPARAM)&info );
2754         return TRUE;
2755     }
2756
2757     if (!hwnd) return PostThreadMessageW( GetCurrentThreadId(), msg, wparam, lparam );
2758
2759     if (!(info.dest_tid = GetWindowThreadProcessId( hwnd, NULL ))) return FALSE;
2760
2761     if (USER_IsExitingThread( info.dest_tid )) return TRUE;
2762
2763     return put_message_in_queue( &info, NULL );
2764 }
2765
2766
2767 /**********************************************************************
2768  *              PostThreadMessageA  (USER32.@)
2769  */
2770 BOOL WINAPI PostThreadMessageA( DWORD thread, UINT msg, WPARAM wparam, LPARAM lparam )
2771 {
2772     if (!map_wparam_AtoW( msg, &wparam, WMCHAR_MAP_POSTMESSAGE )) return TRUE;
2773     return PostThreadMessageW( thread, msg, wparam, lparam );
2774 }
2775
2776
2777 /**********************************************************************
2778  *              PostThreadMessageW  (USER32.@)
2779  */
2780 BOOL WINAPI PostThreadMessageW( DWORD thread, UINT msg, WPARAM wparam, LPARAM lparam )
2781 {
2782     struct send_message_info info;
2783
2784     if (is_pointer_message( msg ))
2785     {
2786         SetLastError( ERROR_MESSAGE_SYNC_ONLY );
2787         return FALSE;
2788     }
2789     if (USER_IsExitingThread( thread )) return TRUE;
2790
2791     info.type     = MSG_POSTED;
2792     info.dest_tid = thread;
2793     info.hwnd     = 0;
2794     info.msg      = msg;
2795     info.wparam   = wparam;
2796     info.lparam   = lparam;
2797     info.flags    = 0;
2798     return put_message_in_queue( &info, NULL );
2799 }
2800
2801
2802 /***********************************************************************
2803  *              PostQuitMessage  (USER32.@)
2804  *
2805  * Posts a quit message to the current thread's message queue.
2806  *
2807  * PARAMS
2808  *  exit_code [I] Exit code to return from message loop.
2809  *
2810  * RETURNS
2811  *  Nothing.
2812  *
2813  * NOTES
2814  *  This function is not the same as calling:
2815  *|PostThreadMessage(GetCurrentThreadId(), WM_QUIT, exit_code, 0);
2816  *  It instead sets a flag in the message queue that signals it to generate
2817  *  a WM_QUIT message when there are no other pending sent or posted messages
2818  *  in the queue.
2819  */
2820 void WINAPI PostQuitMessage( INT exit_code )
2821 {
2822     SERVER_START_REQ( post_quit_message )
2823     {
2824         req->exit_code = exit_code;
2825         wine_server_call( req );
2826     }
2827     SERVER_END_REQ;
2828 }
2829
2830
2831 /***********************************************************************
2832  *              PeekMessageW  (USER32.@)
2833  */
2834 BOOL WINAPI PeekMessageW( MSG *msg_out, HWND hwnd, UINT first, UINT last, UINT flags )
2835 {
2836     struct user_thread_info *thread_info = get_user_thread_info();
2837     MSG msg;
2838
2839     USER_CheckNotLock();
2840
2841     /* check for graphics events */
2842     USER_Driver->pMsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_ALLINPUT, 0 );
2843
2844     hwnd = WIN_GetFullHandle( hwnd );
2845
2846     for (;;)
2847     {
2848         if (!peek_message( &msg, hwnd, first, last, flags ))
2849         {
2850             if (!(flags & PM_NOYIELD))
2851             {
2852                 DWORD count;
2853                 ReleaseThunkLock(&count);
2854                 NtYieldExecution();
2855                 if (count) RestoreThunkLock(count);
2856             }
2857             return FALSE;
2858         }
2859         if (msg.message & 0x80000000)
2860         {
2861             if (!(flags & PM_REMOVE))
2862             {
2863                 /* Have to remove the message explicitly.
2864                    Do this before handling it, because the message handler may
2865                    call PeekMessage again */
2866                 peek_message( &msg, msg.hwnd, msg.message, msg.message, flags | PM_REMOVE );
2867             }
2868             handle_internal_message( msg.hwnd, msg.message, msg.wParam, msg.lParam );
2869         }
2870         else break;
2871     }
2872
2873     thread_info->GetMessageTimeVal = msg.time;
2874     msg.pt.x = (short)LOWORD( thread_info->GetMessagePosVal );
2875     msg.pt.y = (short)HIWORD( thread_info->GetMessagePosVal );
2876
2877     HOOK_CallHooks( WH_GETMESSAGE, HC_ACTION, flags & PM_REMOVE, (LPARAM)&msg, TRUE );
2878
2879     /* copy back our internal safe copy of message data to msg_out.
2880      * msg_out is a variable from the *program*, so it can't be used
2881      * internally as it can get "corrupted" by our use of SendMessage()
2882      * (back to the program) inside the message handling itself. */
2883     if (!msg_out)
2884     {
2885         SetLastError( ERROR_NOACCESS );
2886         return FALSE;
2887     }
2888     *msg_out = msg;
2889     return TRUE;
2890 }
2891
2892
2893 /***********************************************************************
2894  *              PeekMessageA  (USER32.@)
2895  */
2896 BOOL WINAPI PeekMessageA( MSG *msg, HWND hwnd, UINT first, UINT last, UINT flags )
2897 {
2898     if (get_pending_wmchar( msg, first, last, (flags & PM_REMOVE) )) return TRUE;
2899     if (!PeekMessageW( msg, hwnd, first, last, flags )) return FALSE;
2900     map_wparam_WtoA( msg, (flags & PM_REMOVE) );
2901     return TRUE;
2902 }
2903
2904
2905 /***********************************************************************
2906  *              GetMessageW  (USER32.@)
2907  */
2908 BOOL WINAPI GetMessageW( MSG *msg, HWND hwnd, UINT first, UINT last )
2909 {
2910     HANDLE server_queue = get_server_queue_handle();
2911     int mask = QS_POSTMESSAGE | QS_SENDMESSAGE;  /* Always selected */
2912
2913     if (first || last)
2914     {
2915         if ((first <= WM_KEYLAST) && (last >= WM_KEYFIRST)) mask |= QS_KEY;
2916         if ( ((first <= WM_MOUSELAST) && (last >= WM_MOUSEFIRST)) ||
2917              ((first <= WM_NCMOUSELAST) && (last >= WM_NCMOUSEFIRST)) ) mask |= QS_MOUSE;
2918         if ((first <= WM_TIMER) && (last >= WM_TIMER)) mask |= QS_TIMER;
2919         if ((first <= WM_SYSTIMER) && (last >= WM_SYSTIMER)) mask |= QS_TIMER;
2920         if ((first <= WM_PAINT) && (last >= WM_PAINT)) mask |= QS_PAINT;
2921     }
2922     else mask = QS_ALLINPUT;
2923
2924     while (!PeekMessageW( msg, hwnd, first, last, PM_REMOVE | PM_NOYIELD | (mask << 16) ))
2925     {
2926         DWORD dwlc;
2927
2928         ReleaseThunkLock( &dwlc );
2929         USER_Driver->pMsgWaitForMultipleObjectsEx( 1, &server_queue, INFINITE, mask, 0 );
2930         if (dwlc) RestoreThunkLock( dwlc );
2931     }
2932
2933     return (msg->message != WM_QUIT);
2934 }
2935
2936
2937 /***********************************************************************
2938  *              GetMessageA  (USER32.@)
2939  */
2940 BOOL WINAPI GetMessageA( MSG *msg, HWND hwnd, UINT first, UINT last )
2941 {
2942     if (get_pending_wmchar( msg, first, last, TRUE )) return TRUE;
2943     GetMessageW( msg, hwnd, first, last );
2944     map_wparam_WtoA( msg, TRUE );
2945     return (msg->message != WM_QUIT);
2946 }
2947
2948
2949 /***********************************************************************
2950  *              IsDialogMessageA (USER32.@)
2951  *              IsDialogMessage  (USER32.@)
2952  */
2953 BOOL WINAPI IsDialogMessageA( HWND hwndDlg, LPMSG pmsg )
2954 {
2955     MSG msg = *pmsg;
2956     map_wparam_AtoW( msg.message, &msg.wParam, WMCHAR_MAP_NOMAPPING );
2957     return IsDialogMessageW( hwndDlg, &msg );
2958 }
2959
2960
2961 /***********************************************************************
2962  *              TranslateMessage (USER32.@)
2963  *
2964  * Implementation of TranslateMessage.
2965  *
2966  * TranslateMessage translates virtual-key messages into character-messages,
2967  * as follows :
2968  * WM_KEYDOWN/WM_KEYUP combinations produce a WM_CHAR or WM_DEADCHAR message.
2969  * ditto replacing WM_* with WM_SYS*
2970  * This produces WM_CHAR messages only for keys mapped to ASCII characters
2971  * by the keyboard driver.
2972  *
2973  * If the message is WM_KEYDOWN, WM_KEYUP, WM_SYSKEYDOWN, or WM_SYSKEYUP, the
2974  * return value is nonzero, regardless of the translation.
2975  *
2976  */
2977 BOOL WINAPI TranslateMessage( const MSG *msg )
2978 {
2979     UINT message;
2980     WCHAR wp[2];
2981     BYTE state[256];
2982
2983     if (msg->message < WM_KEYFIRST || msg->message > WM_KEYLAST) return FALSE;
2984     if (msg->message != WM_KEYDOWN && msg->message != WM_SYSKEYDOWN) return TRUE;
2985
2986     TRACE_(key)("Translating key %s (%04lx), scancode %02x\n",
2987                  SPY_GetVKeyName(msg->wParam), msg->wParam, LOBYTE(HIWORD(msg->lParam)));
2988
2989     GetKeyboardState( state );
2990     /* FIXME : should handle ToUnicode yielding 2 */
2991     switch (ToUnicode(msg->wParam, HIWORD(msg->lParam), state, wp, 2, 0))
2992     {
2993     case 1:
2994         message = (msg->message == WM_KEYDOWN) ? WM_CHAR : WM_SYSCHAR;
2995         TRACE_(key)("1 -> PostMessageW(%p,%s,%04x,%08lx)\n",
2996             msg->hwnd, SPY_GetMsgName(message, msg->hwnd), wp[0], msg->lParam);
2997         PostMessageW( msg->hwnd, message, wp[0], msg->lParam );
2998         break;
2999
3000     case -1:
3001         message = (msg->message == WM_KEYDOWN) ? WM_DEADCHAR : WM_SYSDEADCHAR;
3002         TRACE_(key)("-1 -> PostMessageW(%p,%s,%04x,%08lx)\n",
3003             msg->hwnd, SPY_GetMsgName(message, msg->hwnd), wp[0], msg->lParam);
3004         PostMessageW( msg->hwnd, message, wp[0], msg->lParam );
3005         break;
3006     }
3007     return TRUE;
3008 }
3009
3010
3011 /***********************************************************************
3012  *              DispatchMessageA (USER32.@)
3013  *
3014  * See DispatchMessageW.
3015  */
3016 LRESULT WINAPI DispatchMessageA( const MSG* msg )
3017 {
3018     LRESULT retval;
3019
3020       /* Process timer messages */
3021     if ((msg->message == WM_TIMER) || (msg->message == WM_SYSTIMER))
3022     {
3023         if (msg->lParam) return CallWindowProcA( (WNDPROC)msg->lParam, msg->hwnd,
3024                                                  msg->message, msg->wParam, GetTickCount() );
3025     }
3026     if (!msg->hwnd) return 0;
3027
3028     SPY_EnterMessage( SPY_DISPATCHMESSAGE, msg->hwnd, msg->message,
3029                       msg->wParam, msg->lParam );
3030
3031     if (!WINPROC_call_window( msg->hwnd, msg->message, msg->wParam, msg->lParam,
3032                               &retval, FALSE, WMCHAR_MAP_DISPATCHMESSAGE ))
3033     {
3034         if (!IsWindow( msg->hwnd )) SetLastError( ERROR_INVALID_WINDOW_HANDLE );
3035         else SetLastError( ERROR_MESSAGE_SYNC_ONLY );
3036         retval = 0;
3037     }
3038
3039     SPY_ExitMessage( SPY_RESULT_OK, msg->hwnd, msg->message, retval,
3040                      msg->wParam, msg->lParam );
3041
3042     if (msg->message == WM_PAINT)
3043     {
3044         /* send a WM_NCPAINT and WM_ERASEBKGND if the non-client area is still invalid */
3045         HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
3046         GetUpdateRgn( msg->hwnd, hrgn, TRUE );
3047         DeleteObject( hrgn );
3048     }
3049     return retval;
3050 }
3051
3052
3053 /***********************************************************************
3054  *              DispatchMessageW (USER32.@) Process a message
3055  *
3056  * Process the message specified in the structure *_msg_.
3057  *
3058  * If the lpMsg parameter points to a WM_TIMER message and the
3059  * parameter of the WM_TIMER message is not NULL, the lParam parameter
3060  * points to the function that is called instead of the window
3061  * procedure.
3062  *
3063  * The message must be valid.
3064  *
3065  * RETURNS
3066  *
3067  *   DispatchMessage() returns the result of the window procedure invoked.
3068  *
3069  * CONFORMANCE
3070  *
3071  *   ECMA-234, Win32
3072  *
3073  */
3074 LRESULT WINAPI DispatchMessageW( const MSG* msg )
3075 {
3076     LRESULT retval;
3077
3078       /* Process timer messages */
3079     if ((msg->message == WM_TIMER) || (msg->message == WM_SYSTIMER))
3080     {
3081         if (msg->lParam) return CallWindowProcW( (WNDPROC)msg->lParam, msg->hwnd,
3082                                                  msg->message, msg->wParam, GetTickCount() );
3083     }
3084     if (!msg->hwnd) return 0;
3085
3086     SPY_EnterMessage( SPY_DISPATCHMESSAGE, msg->hwnd, msg->message,
3087                       msg->wParam, msg->lParam );
3088
3089     if (!WINPROC_call_window( msg->hwnd, msg->message, msg->wParam, msg->lParam,
3090                               &retval, TRUE, WMCHAR_MAP_DISPATCHMESSAGE ))
3091     {
3092         if (!IsWindow( msg->hwnd )) SetLastError( ERROR_INVALID_WINDOW_HANDLE );
3093         else SetLastError( ERROR_MESSAGE_SYNC_ONLY );
3094         retval = 0;
3095     }
3096
3097     SPY_ExitMessage( SPY_RESULT_OK, msg->hwnd, msg->message, retval,
3098                      msg->wParam, msg->lParam );
3099
3100     if (msg->message == WM_PAINT)
3101     {
3102         /* send a WM_NCPAINT and WM_ERASEBKGND if the non-client area is still invalid */
3103         HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
3104         GetUpdateRgn( msg->hwnd, hrgn, TRUE );
3105         DeleteObject( hrgn );
3106     }
3107     return retval;
3108 }
3109
3110
3111 /***********************************************************************
3112  *              GetMessagePos (USER.119)
3113  *              GetMessagePos (USER32.@)
3114  *
3115  * The GetMessagePos() function returns a long value representing a
3116  * cursor position, in screen coordinates, when the last message
3117  * retrieved by the GetMessage() function occurs. The x-coordinate is
3118  * in the low-order word of the return value, the y-coordinate is in
3119  * the high-order word. The application can use the MAKEPOINT()
3120  * macro to obtain a POINT structure from the return value.
3121  *
3122  * For the current cursor position, use GetCursorPos().
3123  *
3124  * RETURNS
3125  *
3126  * Cursor position of last message on success, zero on failure.
3127  *
3128  * CONFORMANCE
3129  *
3130  * ECMA-234, Win32
3131  *
3132  */
3133 DWORD WINAPI GetMessagePos(void)
3134 {
3135     return get_user_thread_info()->GetMessagePosVal;
3136 }
3137
3138
3139 /***********************************************************************
3140  *              GetMessageTime (USER.120)
3141  *              GetMessageTime (USER32.@)
3142  *
3143  * GetMessageTime() returns the message time for the last message
3144  * retrieved by the function. The time is measured in milliseconds with
3145  * the same offset as GetTickCount().
3146  *
3147  * Since the tick count wraps, this is only useful for moderately short
3148  * relative time comparisons.
3149  *
3150  * RETURNS
3151  *
3152  * Time of last message on success, zero on failure.
3153  */
3154 LONG WINAPI GetMessageTime(void)
3155 {
3156     return get_user_thread_info()->GetMessageTimeVal;
3157 }
3158
3159
3160 /***********************************************************************
3161  *              GetMessageExtraInfo (USER.288)
3162  *              GetMessageExtraInfo (USER32.@)
3163  */
3164 LPARAM WINAPI GetMessageExtraInfo(void)
3165 {
3166     return get_user_thread_info()->GetMessageExtraInfoVal;
3167 }
3168
3169
3170 /***********************************************************************
3171  *              SetMessageExtraInfo (USER32.@)
3172  */
3173 LPARAM WINAPI SetMessageExtraInfo(LPARAM lParam)
3174 {
3175     struct user_thread_info *thread_info = get_user_thread_info();
3176     LONG old_value = thread_info->GetMessageExtraInfoVal;
3177     thread_info->GetMessageExtraInfoVal = lParam;
3178     return old_value;
3179 }
3180
3181
3182 /***********************************************************************
3183  *              WaitMessage (USER.112) Suspend thread pending messages
3184  *              WaitMessage (USER32.@) Suspend thread pending messages
3185  *
3186  * WaitMessage() suspends a thread until events appear in the thread's
3187  * queue.
3188  */
3189 BOOL WINAPI WaitMessage(void)
3190 {
3191     return (MsgWaitForMultipleObjectsEx( 0, NULL, INFINITE, QS_ALLINPUT, 0 ) != WAIT_FAILED);
3192 }
3193
3194
3195 /***********************************************************************
3196  *              MsgWaitForMultipleObjectsEx   (USER32.@)
3197  */
3198 DWORD WINAPI MsgWaitForMultipleObjectsEx( DWORD count, CONST HANDLE *pHandles,
3199                                           DWORD timeout, DWORD mask, DWORD flags )
3200 {
3201     HANDLE handles[MAXIMUM_WAIT_OBJECTS];
3202     DWORD i, ret, lock;
3203
3204     if (count > MAXIMUM_WAIT_OBJECTS-1)
3205     {
3206         SetLastError( ERROR_INVALID_PARAMETER );
3207         return WAIT_FAILED;
3208     }
3209
3210     /* set the queue mask */
3211     SERVER_START_REQ( set_queue_mask )
3212     {
3213         req->wake_mask    = (flags & MWMO_INPUTAVAILABLE) ? mask : 0;
3214         req->changed_mask = mask;
3215         req->skip_wait    = 0;
3216         wine_server_call( req );
3217     }
3218     SERVER_END_REQ;
3219
3220     /* add the queue to the handle list */
3221     for (i = 0; i < count; i++) handles[i] = pHandles[i];
3222     handles[count] = get_server_queue_handle();
3223
3224     ReleaseThunkLock( &lock );
3225     ret = USER_Driver->pMsgWaitForMultipleObjectsEx( count+1, handles, timeout, mask, flags );
3226     if (lock) RestoreThunkLock( lock );
3227     return ret;
3228 }
3229
3230
3231 /***********************************************************************
3232  *              MsgWaitForMultipleObjects (USER32.@)
3233  */
3234 DWORD WINAPI MsgWaitForMultipleObjects( DWORD count, CONST HANDLE *handles,
3235                                         BOOL wait_all, DWORD timeout, DWORD mask )
3236 {
3237     return MsgWaitForMultipleObjectsEx( count, handles, timeout, mask,
3238                                         wait_all ? MWMO_WAITALL : 0 );
3239 }
3240
3241
3242 /***********************************************************************
3243  *              WaitForInputIdle (USER32.@)
3244  */
3245 DWORD WINAPI WaitForInputIdle( HANDLE hProcess, DWORD dwTimeOut )
3246 {
3247     DWORD start_time, elapsed, ret;
3248     HANDLE handles[2];
3249
3250     handles[0] = hProcess;
3251     SERVER_START_REQ( get_process_idle_event )
3252     {
3253         req->handle = hProcess;
3254         if (!(ret = wine_server_call_err( req ))) handles[1] = reply->event;
3255     }
3256     SERVER_END_REQ;
3257     if (ret) return WAIT_FAILED;  /* error */
3258     if (!handles[1]) return 0;  /* no event to wait on */
3259
3260     start_time = GetTickCount();
3261     elapsed = 0;
3262
3263     TRACE("waiting for %p\n", handles[1] );
3264     do
3265     {
3266         ret = MsgWaitForMultipleObjects ( 2, handles, FALSE, dwTimeOut - elapsed, QS_SENDMESSAGE );
3267         switch (ret)
3268         {
3269         case WAIT_OBJECT_0:
3270             return WAIT_FAILED;
3271         case WAIT_OBJECT_0+2:
3272             process_sent_messages();
3273             break;
3274         case WAIT_TIMEOUT:
3275         case WAIT_FAILED:
3276             TRACE("timeout or error\n");
3277             return ret;
3278         default:
3279             TRACE("finished\n");
3280             return 0;
3281         }
3282         if (dwTimeOut != INFINITE)
3283         {
3284             elapsed = GetTickCount() - start_time;
3285             if (elapsed > dwTimeOut)
3286                 break;
3287         }
3288     }
3289     while (1);
3290
3291     return WAIT_TIMEOUT;
3292 }
3293
3294
3295 /***********************************************************************
3296  *              UserYield (USER.332)
3297  */
3298 void WINAPI UserYield16(void)
3299 {
3300    DWORD count;
3301
3302     /* Handle sent messages */
3303     process_sent_messages();
3304
3305     /* Yield */
3306     ReleaseThunkLock(&count);
3307
3308     if (count)
3309     {
3310         RestoreThunkLock(count);
3311         /* Handle sent messages again */
3312         process_sent_messages();
3313     }
3314 }
3315
3316
3317 /***********************************************************************
3318  *              RegisterWindowMessageA (USER32.@)
3319  *              RegisterWindowMessage (USER.118)
3320  */
3321 UINT WINAPI RegisterWindowMessageA( LPCSTR str )
3322 {
3323     UINT ret = GlobalAddAtomA(str);
3324     TRACE("%s, ret=%x\n", str, ret);
3325     return ret;
3326 }
3327
3328
3329 /***********************************************************************
3330  *              RegisterWindowMessageW (USER32.@)
3331  */
3332 UINT WINAPI RegisterWindowMessageW( LPCWSTR str )
3333 {
3334     UINT ret = GlobalAddAtomW(str);
3335     TRACE("%s ret=%x\n", debugstr_w(str), ret);
3336     return ret;
3337 }
3338
3339
3340 /***********************************************************************
3341  *              BroadcastSystemMessageA (USER32.@)
3342  *              BroadcastSystemMessage  (USER32.@)
3343  */
3344 LONG WINAPI BroadcastSystemMessageA( DWORD flags, LPDWORD recipients, UINT msg, WPARAM wp, LPARAM lp )
3345 {
3346     if ((*recipients & BSM_APPLICATIONS) || (*recipients == BSM_ALLCOMPONENTS))
3347     {
3348         FIXME( "(%08x,%08x,%08x,%08lx,%08lx): semi-stub!\n", flags, *recipients, msg, wp, lp );
3349         PostMessageA( HWND_BROADCAST, msg, wp, lp );
3350         return 1;
3351     }
3352     else
3353     {
3354         FIXME( "(%08x,%08x,%08x,%08lx,%08lx): stub!\n", flags, *recipients, msg, wp, lp);
3355         return -1;
3356     }
3357 }
3358
3359
3360 /***********************************************************************
3361  *              BroadcastSystemMessageW (USER32.@)
3362  */
3363 LONG WINAPI BroadcastSystemMessageW( DWORD flags, LPDWORD recipients, UINT msg, WPARAM wp, LPARAM lp )
3364 {
3365     if ((*recipients & BSM_APPLICATIONS) || (*recipients == BSM_ALLCOMPONENTS))
3366     {
3367         FIXME( "(%08x,%08x,%08x,%08lx,%08lx): semi-stub!\n", flags, *recipients, msg, wp, lp );
3368         PostMessageW( HWND_BROADCAST, msg, wp, lp );
3369         return 1;
3370     }
3371     else
3372     {
3373         FIXME( "(%08x,%08x,%08x,%08lx,%08lx): stub!\n", flags, *recipients, msg, wp, lp );
3374         return -1;
3375     }
3376 }
3377
3378
3379 /***********************************************************************
3380  *              SetMessageQueue (USER32.@)
3381  */
3382 BOOL WINAPI SetMessageQueue( INT size )
3383 {
3384     /* now obsolete the message queue will be expanded dynamically as necessary */
3385     return TRUE;
3386 }
3387
3388
3389 /***********************************************************************
3390  *              MessageBeep (USER32.@)
3391  */
3392 BOOL WINAPI MessageBeep( UINT i )
3393 {
3394     BOOL active = TRUE;
3395     SystemParametersInfoA( SPI_GETBEEP, 0, &active, FALSE );
3396     if (active) USER_Driver->pBeep();
3397     return TRUE;
3398 }
3399
3400
3401 /***********************************************************************
3402  *              SetTimer (USER32.@)
3403  */
3404 UINT_PTR WINAPI SetTimer( HWND hwnd, UINT_PTR id, UINT timeout, TIMERPROC proc )
3405 {
3406     UINT_PTR ret;
3407     WNDPROC winproc = 0;
3408
3409     if (proc) winproc = WINPROC_AllocProc( (WNDPROC)proc, NULL );
3410
3411     SERVER_START_REQ( set_win_timer )
3412     {
3413         req->win    = hwnd;
3414         req->msg    = WM_TIMER;
3415         req->id     = id;
3416         req->rate   = max( timeout, SYS_TIMER_RATE );
3417         req->lparam = (unsigned long)winproc;
3418         if (!wine_server_call_err( req ))
3419         {
3420             ret = reply->id;
3421             if (!ret) ret = TRUE;
3422         }
3423         else ret = 0;
3424     }
3425     SERVER_END_REQ;
3426
3427     TRACE("Added %p %lx %p timeout %d\n", hwnd, id, winproc, timeout );
3428     return ret;
3429 }
3430
3431
3432 /***********************************************************************
3433  *              SetSystemTimer (USER32.@)
3434  */
3435 UINT_PTR WINAPI SetSystemTimer( HWND hwnd, UINT_PTR id, UINT timeout, TIMERPROC proc )
3436 {
3437     UINT_PTR ret;
3438     WNDPROC winproc = 0;
3439
3440     if (proc) winproc = WINPROC_AllocProc( (WNDPROC)proc, NULL );
3441
3442     SERVER_START_REQ( set_win_timer )
3443     {
3444         req->win    = hwnd;
3445         req->msg    = WM_SYSTIMER;
3446         req->id     = id;
3447         req->rate   = max( timeout, SYS_TIMER_RATE );
3448         req->lparam = (unsigned long)winproc;
3449         if (!wine_server_call_err( req ))
3450         {
3451             ret = reply->id;
3452             if (!ret) ret = TRUE;
3453         }
3454         else ret = 0;
3455     }
3456     SERVER_END_REQ;
3457
3458     TRACE("Added %p %lx %p timeout %d\n", hwnd, id, winproc, timeout );
3459     return ret;
3460 }
3461
3462
3463 /***********************************************************************
3464  *              KillTimer (USER32.@)
3465  */
3466 BOOL WINAPI KillTimer( HWND hwnd, UINT_PTR id )
3467 {
3468     BOOL ret;
3469
3470     SERVER_START_REQ( kill_win_timer )
3471     {
3472         req->win = hwnd;
3473         req->msg = WM_TIMER;
3474         req->id  = id;
3475         ret = !wine_server_call_err( req );
3476     }
3477     SERVER_END_REQ;
3478     return ret;
3479 }
3480
3481
3482 /***********************************************************************
3483  *              KillSystemTimer (USER32.@)
3484  */
3485 BOOL WINAPI KillSystemTimer( HWND hwnd, UINT_PTR id )
3486 {
3487     BOOL ret;
3488
3489     SERVER_START_REQ( kill_win_timer )
3490     {
3491         req->win = hwnd;
3492         req->msg = WM_SYSTIMER;
3493         req->id  = id;
3494         ret = !wine_server_call_err( req );
3495     }
3496     SERVER_END_REQ;
3497     return ret;
3498 }
3499
3500
3501 /**********************************************************************
3502  *              GetGUIThreadInfo  (USER32.@)
3503  */
3504 BOOL WINAPI GetGUIThreadInfo( DWORD id, GUITHREADINFO *info )
3505 {
3506     BOOL ret;
3507
3508     SERVER_START_REQ( get_thread_input )
3509     {
3510         req->tid = id;
3511         if ((ret = !wine_server_call_err( req )))
3512         {
3513             info->flags          = 0;
3514             info->hwndActive     = reply->active;
3515             info->hwndFocus      = reply->focus;
3516             info->hwndCapture    = reply->capture;
3517             info->hwndMenuOwner  = reply->menu_owner;
3518             info->hwndMoveSize   = reply->move_size;
3519             info->hwndCaret      = reply->caret;
3520             info->rcCaret.left   = reply->rect.left;
3521             info->rcCaret.top    = reply->rect.top;
3522             info->rcCaret.right  = reply->rect.right;
3523             info->rcCaret.bottom = reply->rect.bottom;
3524             if (reply->menu_owner) info->flags |= GUI_INMENUMODE;
3525             if (reply->move_size) info->flags |= GUI_INMOVESIZE;
3526             if (reply->caret) info->flags |= GUI_CARETBLINKING;
3527         }
3528     }
3529     SERVER_END_REQ;
3530     return ret;
3531 }
3532
3533
3534 /******************************************************************
3535  *              IsHungAppWindow (USER32.@)
3536  *
3537  */
3538 BOOL WINAPI IsHungAppWindow( HWND hWnd )
3539 {
3540     BOOL ret;
3541
3542     SERVER_START_REQ( is_window_hung )
3543     {
3544         req->win = hWnd;
3545         ret = !wine_server_call_err( req ) && reply->is_hung;
3546     }
3547     SERVER_END_REQ;
3548     return ret;
3549 }