blob: 94a98e582a0719fa981ed4b6f84877a10813bfdd [file] [log] [blame]
Alexandre Julliard75a839a1993-07-15 11:13:45 +00001/*
2 * Message queues related functions
3 *
Alexandre Julliardaca05781994-10-17 18:12:41 +00004 * Copyright 1993, 1994 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Alexandre Julliard75a839a1993-07-15 11:13:45 +000019 */
20
Alexandre Julliard401710d1993-09-04 10:09:32 +000021#include <stdlib.h>
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +000022#include <string.h>
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +000023#include <ctype.h>
Alexandre Julliard5f721f81994-01-04 20:14:34 +000024#include <sys/time.h>
25#include <sys/types.h>
Alexandre Julliardf41aeca1993-09-14 16:47:10 +000026
Alexandre Julliardd253c582001-08-07 19:19:08 +000027#include "winbase.h"
28#include "wingdi.h"
29#include "winuser.h"
Alexandre Julliard75a839a1993-07-15 11:13:45 +000030#include "message.h"
Alexandre Julliarddbf2bf01999-01-01 17:05:53 +000031#include "winerror.h"
Alexandre Julliard37e95032001-07-19 00:39:09 +000032#include "wine/server.h"
Alexandre Julliard75a839a1993-07-15 11:13:45 +000033#include "win.h"
Alexandre Julliard8cc3a5e1996-08-11 15:49:51 +000034#include "heap.h"
Alexandre Julliard58199531994-04-21 01:20:00 +000035#include "hook.h"
Ulrich Weiganda11ce321998-11-08 12:27:26 +000036#include "input.h"
Alexandre Julliardaf0bae51995-10-03 17:06:08 +000037#include "spy.h"
Alexandre Julliard234bc241994-12-10 13:02:28 +000038#include "winpos.h"
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000039#include "dde.h"
Alexandre Julliardb817f4f1996-03-14 18:08:34 +000040#include "queue.h"
Alexandre Julliard3051b641996-07-05 17:14:13 +000041#include "winproc.h"
Alexandre Julliard43230042001-05-16 19:52:29 +000042#include "user.h"
Alexandre Julliarddadf78f1998-05-17 17:13:43 +000043#include "thread.h"
Alexandre Julliard51ab43b2001-05-18 22:51:56 +000044#include "task.h"
Alexandre Julliard91222da2000-12-10 23:01:33 +000045#include "controls.h"
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000046#include "wine/debug.h"
Alexandre Julliardaca05781994-10-17 18:12:41 +000047
Alexandre Julliard0799c1a2002-03-09 23:29:33 +000048WINE_DEFAULT_DEBUG_CHANNEL(msg);
49WINE_DECLARE_DEBUG_CHANNEL(key);
Patrik Stridvallb4b9fae1999-04-19 14:56:29 +000050
Alexandre Julliardac9c9b01996-07-28 18:50:11 +000051#define WM_NCMOUSEFIRST WM_NCMOUSEMOVE
52#define WM_NCMOUSELAST WM_NCMBUTTONDBLCLK
53
Alexandre Julliarda21672e2001-10-02 18:53:59 +000054static BYTE QueueKeyStateTable[256];
Stephane Lussier2c86dab1999-02-18 17:34:09 +000055
Alexandre Julliard838d65a2001-06-19 19:16:41 +000056
Alexandre Julliard75a839a1993-07-15 11:13:45 +000057/***********************************************************************
Alexandre Julliard838d65a2001-06-19 19:16:41 +000058 * is_keyboard_message
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000059 */
Alexandre Julliard838d65a2001-06-19 19:16:41 +000060inline static BOOL is_keyboard_message( UINT message )
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000061{
Alexandre Julliard838d65a2001-06-19 19:16:41 +000062 return (message >= WM_KEYFIRST && message <= WM_KEYLAST);
Alexandre Julliard9ea19e51997-01-01 17:29:55 +000063}
64
Alexandre Julliard838d65a2001-06-19 19:16:41 +000065
66/***********************************************************************
67 * is_mouse_message
68 */
69inline static BOOL is_mouse_message( UINT message )
70{
71 return ((message >= WM_NCMOUSEFIRST && message <= WM_NCMOUSELAST) ||
72 (message >= WM_MOUSEFIRST && message <= WM_MOUSELAST));
73}
74
75
76/***********************************************************************
77 * check_message_filter
78 */
79inline static BOOL check_message_filter( const MSG *msg, HWND hwnd, UINT first, UINT last )
80{
81 if (hwnd)
82 {
83 if (msg->hwnd != hwnd && !IsChild( hwnd, msg->hwnd )) return FALSE;
84 }
85 if (first || last)
86 {
87 return (msg->message >= first && msg->message <= last);
88 }
89 return TRUE;
90}
91
92
93/***********************************************************************
Alexandre Julliardd253c582001-08-07 19:19:08 +000094 * process_sent_messages
Alexandre Julliard9f55ae62001-06-28 04:37:22 +000095 *
Alexandre Julliardd253c582001-08-07 19:19:08 +000096 * Process all pending sent messages.
Alexandre Julliard9f55ae62001-06-28 04:37:22 +000097 */
Alexandre Julliardd253c582001-08-07 19:19:08 +000098inline static void process_sent_messages(void)
Alexandre Julliard9f55ae62001-06-28 04:37:22 +000099{
Alexandre Julliardd253c582001-08-07 19:19:08 +0000100 MSG msg;
101 MSG_peek_message( &msg, 0, 0, 0, GET_MSG_REMOVE | GET_MSG_SENT_ONLY );
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000102}
103
104
105/***********************************************************************
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000106 * queue_hardware_message
107 *
108 * store a hardware message in the thread queue
109 */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000110static void queue_hardware_message( MSG *msg, ULONG_PTR extra_info, enum message_type type )
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000111{
112 SERVER_START_REQ( send_message )
113 {
Alexandre Julliardd253c582001-08-07 19:19:08 +0000114 req->type = type;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000115 req->id = (void *)GetWindowThreadProcessId( msg->hwnd, NULL );
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000116 req->win = msg->hwnd;
117 req->msg = msg->message;
118 req->wparam = msg->wParam;
119 req->lparam = msg->lParam;
120 req->x = msg->pt.x;
121 req->y = msg->pt.y;
122 req->time = msg->time;
123 req->info = extra_info;
Alexandre Julliardd253c582001-08-07 19:19:08 +0000124 req->timeout = 0;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000125 wine_server_call( req );
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000126 }
127 SERVER_END_REQ;
128}
129
130
Alexandre Julliard9ea19e51997-01-01 17:29:55 +0000131/***********************************************************************
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000132 * update_queue_key_state
133 */
134static void update_queue_key_state( UINT msg, WPARAM wp )
135{
136 BOOL down = FALSE;
137
138 switch (msg)
139 {
140 case WM_LBUTTONDOWN:
141 down = TRUE;
142 /* fall through */
143 case WM_LBUTTONUP:
144 wp = VK_LBUTTON;
145 break;
146 case WM_MBUTTONDOWN:
147 down = TRUE;
148 /* fall through */
149 case WM_MBUTTONUP:
150 wp = VK_MBUTTON;
151 break;
152 case WM_RBUTTONDOWN:
153 down = TRUE;
154 /* fall through */
155 case WM_RBUTTONUP:
156 wp = VK_RBUTTON;
157 break;
158 case WM_KEYDOWN:
159 case WM_SYSKEYDOWN:
160 down = TRUE;
161 /* fall through */
162 case WM_KEYUP:
163 case WM_SYSKEYUP:
164 wp = wp & 0xff;
165 break;
166 }
167 if (down)
168 {
169 BYTE *p = &QueueKeyStateTable[wp];
170 if (!(*p & 0x80)) *p ^= 0x01;
171 *p |= 0x80;
172 }
173 else QueueKeyStateTable[wp] &= ~0x80;
174}
175
176
177/***********************************************************************
Alexandre Julliard77b99181997-09-14 17:17:23 +0000178 * MSG_SendParentNotify
179 *
180 * Send a WM_PARENTNOTIFY to all ancestors of the given window, unless
181 * the window has the WS_EX_NOPARENTNOTIFY style.
182 */
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000183static void MSG_SendParentNotify( HWND hwnd, WORD event, WORD idChild, POINT pt )
Alexandre Julliard77b99181997-09-14 17:17:23 +0000184{
Alexandre Julliard77b99181997-09-14 17:17:23 +0000185 /* pt has to be in the client coordinates of the parent window */
Alexandre Julliard4ff32c82001-08-18 18:08:26 +0000186 MapWindowPoints( 0, hwnd, &pt, 1 );
187 for (;;)
Alexandre Julliard77b99181997-09-14 17:17:23 +0000188 {
Alexandre Julliard4ff32c82001-08-18 18:08:26 +0000189 HWND parent;
190
191 if (!(GetWindowLongA( hwnd, GWL_STYLE ) & WS_CHILD)) break;
192 if (GetWindowLongA( hwnd, GWL_EXSTYLE ) & WS_EX_NOPARENTNOTIFY) break;
193 if (!(parent = GetParent(hwnd))) break;
194 MapWindowPoints( hwnd, parent, &pt, 1 );
195 hwnd = parent;
196 SendMessageA( hwnd, WM_PARENTNOTIFY,
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000197 MAKEWPARAM( event, idChild ), MAKELPARAM( pt.x, pt.y ) );
Alexandre Julliard77b99181997-09-14 17:17:23 +0000198 }
Alexandre Julliard77b99181997-09-14 17:17:23 +0000199}
200
201
202/***********************************************************************
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000203 * MSG_JournalPlayBackMsg
204 *
Alexandre Julliardda0cfb31996-12-01 17:17:47 +0000205 * Get an EVENTMSG struct via call JOURNALPLAYBACK hook function
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000206 */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000207void MSG_JournalPlayBackMsg(void)
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000208{
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000209 EVENTMSG tmpMsg;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000210 MSG msg;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000211 LRESULT wtime;
212 int keyDown,i;
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000213
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000214 if (!HOOK_IsHooked( WH_JOURNALPLAYBACK )) return;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000215
216 wtime=HOOK_CallHooksA( WH_JOURNALPLAYBACK, HC_GETNEXT, 0, (LPARAM)&tmpMsg );
217 /* TRACE(msg,"Playback wait time =%ld\n",wtime); */
218 if (wtime<=0)
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000219 {
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000220 wtime=0;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000221 msg.message = tmpMsg.message;
222 msg.hwnd = tmpMsg.hwnd;
223 msg.time = tmpMsg.time;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000224 if ((tmpMsg.message >= WM_KEYFIRST) && (tmpMsg.message <= WM_KEYLAST))
225 {
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000226 msg.wParam = tmpMsg.paramL & 0xFF;
227 msg.lParam = MAKELONG(tmpMsg.paramH&0x7ffff,tmpMsg.paramL>>8);
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000228 if (tmpMsg.message == WM_KEYDOWN || tmpMsg.message == WM_SYSKEYDOWN)
229 {
230 for (keyDown=i=0; i<256 && !keyDown; i++)
231 if (InputKeyStateTable[i] & 0x80)
232 keyDown++;
233 if (!keyDown)
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000234 msg.lParam |= 0x40000000;
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000235 InputKeyStateTable[msg.wParam] |= 0x80;
236 AsyncKeyStateTable[msg.wParam] |= 0x80;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000237 }
238 else /* WM_KEYUP, WM_SYSKEYUP */
239 {
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000240 msg.lParam |= 0xC0000000;
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000241 InputKeyStateTable[msg.wParam] &= ~0x80;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000242 }
243 if (InputKeyStateTable[VK_MENU] & 0x80)
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000244 msg.lParam |= 0x20000000;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000245 if (tmpMsg.paramH & 0x8000) /*special_key bit*/
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000246 msg.lParam |= 0x01000000;
247
248 msg.pt.x = msg.pt.y = 0;
Alexandre Julliardd253c582001-08-07 19:19:08 +0000249 queue_hardware_message( &msg, 0, MSG_HARDWARE_RAW );
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000250 }
251 else if ((tmpMsg.message>= WM_MOUSEFIRST) && (tmpMsg.message <= WM_MOUSELAST))
252 {
253 switch (tmpMsg.message)
254 {
255 case WM_LBUTTONDOWN:
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000256 InputKeyStateTable[VK_LBUTTON] |= 0x80;
257 AsyncKeyStateTable[VK_LBUTTON] |= 0x80;
258 break;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000259 case WM_LBUTTONUP:
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000260 InputKeyStateTable[VK_LBUTTON] &= ~0x80;
261 break;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000262 case WM_MBUTTONDOWN:
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000263 InputKeyStateTable[VK_MBUTTON] |= 0x80;
264 AsyncKeyStateTable[VK_MBUTTON] |= 0x80;
265 break;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000266 case WM_MBUTTONUP:
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000267 InputKeyStateTable[VK_MBUTTON] &= ~0x80;
268 break;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000269 case WM_RBUTTONDOWN:
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000270 InputKeyStateTable[VK_RBUTTON] |= 0x80;
271 AsyncKeyStateTable[VK_RBUTTON] |= 0x80;
272 break;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000273 case WM_RBUTTONUP:
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000274 InputKeyStateTable[VK_RBUTTON] &= ~0x80;
275 break;
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000276 }
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000277 SetCursorPos(tmpMsg.paramL,tmpMsg.paramH);
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000278 msg.lParam=MAKELONG(tmpMsg.paramL,tmpMsg.paramH);
279 msg.wParam=0;
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000280 if (InputKeyStateTable[VK_LBUTTON] & 0x80) msg.wParam |= MK_LBUTTON;
281 if (InputKeyStateTable[VK_MBUTTON] & 0x80) msg.wParam |= MK_MBUTTON;
282 if (InputKeyStateTable[VK_RBUTTON] & 0x80) msg.wParam |= MK_RBUTTON;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000283
284 msg.pt.x = tmpMsg.paramL;
285 msg.pt.y = tmpMsg.paramH;
Alexandre Julliardd253c582001-08-07 19:19:08 +0000286 queue_hardware_message( &msg, 0, MSG_HARDWARE_RAW );
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000287 }
288 HOOK_CallHooksA( WH_JOURNALPLAYBACK, HC_SKIP, 0, (LPARAM)&tmpMsg);
Alexandre Julliardd1ce8b21996-09-02 16:46:30 +0000289 }
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000290 else
291 {
292 if( tmpMsg.message == WM_QUEUESYNC )
293 if (HOOK_IsHooked( WH_CBT ))
294 HOOK_CallHooksA( WH_CBT, HCBT_QS, 0, 0L);
Alexandre Julliardda2892c2001-02-23 01:13:42 +0000295 }
296}
Alexandre Julliard940d58c1994-09-16 09:24:37 +0000297
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000298
Alexandre Julliardaca05781994-10-17 18:12:41 +0000299/***********************************************************************
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000300 * process_raw_keyboard_message
Alexandre Julliardaca05781994-10-17 18:12:41 +0000301 *
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000302 * returns TRUE if the contents of 'msg' should be passed to the application
Alexandre Julliardaca05781994-10-17 18:12:41 +0000303 */
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000304static BOOL process_raw_keyboard_message( MSG *msg, ULONG_PTR extra_info )
Alexandre Julliardaca05781994-10-17 18:12:41 +0000305{
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000306 if (!(msg->hwnd = GetFocus()))
Alexandre Julliardaca05781994-10-17 18:12:41 +0000307 {
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000308 /* Send the message to the active window instead, */
309 /* translating messages to their WM_SYS equivalent */
310 msg->hwnd = GetActiveWindow();
311 if (msg->message < WM_SYSKEYDOWN) msg->message += WM_SYSKEYDOWN - WM_KEYDOWN;
Alexandre Julliardaca05781994-10-17 18:12:41 +0000312 }
Noel Borthwickc90243b1999-05-14 08:09:13 +0000313
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000314 if (HOOK_IsHooked( WH_JOURNALRECORD ))
315 {
316 EVENTMSG event;
317
318 event.message = msg->message;
319 event.hwnd = msg->hwnd;
320 event.time = msg->time;
321 event.paramL = (msg->wParam & 0xFF) | (HIWORD(msg->lParam) << 8);
322 event.paramH = msg->lParam & 0x7FFF;
323 if (HIWORD(msg->lParam) & 0x0100) event.paramH |= 0x8000; /* special_key - bit */
324 HOOK_CallHooksA( WH_JOURNALRECORD, HC_ACTION, 0, (LPARAM)&event );
325 }
326
327 return (msg->hwnd != 0);
328}
329
330
331/***********************************************************************
332 * process_cooked_keyboard_message
333 *
334 * returns TRUE if the contents of 'msg' should be passed to the application
335 */
336static BOOL process_cooked_keyboard_message( MSG *msg, BOOL remove )
337{
338 if (remove)
339 {
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000340 update_queue_key_state( msg->message, msg->wParam );
341
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000342 /* Handle F1 key by sending out WM_HELP message */
343 if ((msg->message == WM_KEYUP) &&
344 (msg->wParam == VK_F1) &&
345 (msg->hwnd != GetDesktopWindow()) &&
346 !MENU_IsMenuActive())
347 {
348 HELPINFO hi;
349 hi.cbSize = sizeof(HELPINFO);
350 hi.iContextType = HELPINFO_WINDOW;
351 hi.iCtrlId = GetWindowLongA( msg->hwnd, GWL_ID );
352 hi.hItemHandle = msg->hwnd;
353 hi.dwContextId = GetWindowContextHelpId( msg->hwnd );
354 hi.MousePos = msg->pt;
355 SendMessageA(msg->hwnd, WM_HELP, 0, (LPARAM)&hi);
356 }
357 }
358
359 if (HOOK_CallHooksA( WH_KEYBOARD, remove ? HC_ACTION : HC_NOREMOVE,
360 LOWORD(msg->wParam), msg->lParam ))
361 {
362 /* skip this message */
363 HOOK_CallHooksA( WH_CBT, HCBT_KEYSKIPPED, LOWORD(msg->wParam), msg->lParam );
364 return FALSE;
365 }
366 return TRUE;
367}
368
369
370/***********************************************************************
371 * process_raw_mouse_message
372 *
373 * returns TRUE if the contents of 'msg' should be passed to the application
374 */
375static BOOL process_raw_mouse_message( MSG *msg, ULONG_PTR extra_info )
376{
377 static MSG clk_msg;
378
379 POINT pt;
380 INT ht, hittest;
381
382 /* find the window to dispatch this mouse message to */
383
Alexandre Julliardee8ab7a2001-06-20 23:16:34 +0000384 hittest = HTCLIENT;
385 if (!(msg->hwnd = PERQDATA_GetCaptureWnd( &ht )))
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000386 {
387 /* If no capture HWND, find window which contains the mouse position.
388 * Also find the position of the cursor hot spot (hittest) */
389 HWND hWndScope = (HWND)extra_info;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000390
Alexandre Julliardee8ab7a2001-06-20 23:16:34 +0000391 if (!IsWindow(hWndScope)) hWndScope = 0;
392 if (!(msg->hwnd = WINPOS_WindowFromPoint( hWndScope, msg->pt, &hittest )))
393 msg->hwnd = GetDesktopWindow();
394 ht = hittest;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000395 }
396
397 if (HOOK_IsHooked( WH_JOURNALRECORD ))
398 {
399 EVENTMSG event;
400 event.message = msg->message;
401 event.time = msg->time;
402 event.hwnd = msg->hwnd;
403 event.paramL = msg->pt.x;
404 event.paramH = msg->pt.y;
405 HOOK_CallHooksA( WH_JOURNALRECORD, HC_ACTION, 0, (LPARAM)&event );
406 }
407
408 /* translate double clicks */
409
410 if ((msg->message == WM_LBUTTONDOWN) ||
411 (msg->message == WM_RBUTTONDOWN) ||
412 (msg->message == WM_MBUTTONDOWN))
413 {
414 BOOL update = TRUE;
415 /* translate double clicks -
416 * note that ...MOUSEMOVEs can slip in between
417 * ...BUTTONDOWN and ...BUTTONDBLCLK messages */
418
419 if (GetClassLongA( msg->hwnd, GCL_STYLE ) & CS_DBLCLKS || ht != HTCLIENT )
420 {
421 if ((msg->message == clk_msg.message) &&
422 (msg->hwnd == clk_msg.hwnd) &&
Andriy Palamarchuk2489dc92001-12-06 22:28:43 +0000423 (msg->time - clk_msg.time < GetDoubleClickTime()) &&
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000424 (abs(msg->pt.x - clk_msg.pt.x) < GetSystemMetrics(SM_CXDOUBLECLK)/2) &&
425 (abs(msg->pt.y - clk_msg.pt.y) < GetSystemMetrics(SM_CYDOUBLECLK)/2))
426 {
427 msg->message += (WM_LBUTTONDBLCLK - WM_LBUTTONDOWN);
428 clk_msg.message = 0;
429 update = FALSE;
430 }
431 }
432 /* update static double click conditions */
433 if (update) clk_msg = *msg;
434 }
435
436 pt = msg->pt;
Travis Michielsenb9bd3f82001-06-29 01:17:55 +0000437 /* Note: windows has no concept of a non-client wheel message */
438 if (hittest != HTCLIENT && msg->message != WM_MOUSEWHEEL)
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000439 {
440 msg->message += WM_NCMOUSEMOVE - WM_MOUSEMOVE;
441 msg->wParam = hittest;
442 }
443 else ScreenToClient( msg->hwnd, &pt );
444 msg->lParam = MAKELONG( pt.x, pt.y );
445 return TRUE;
446}
447
448
449/***********************************************************************
450 * process_cooked_mouse_message
451 *
452 * returns TRUE if the contents of 'msg' should be passed to the application
453 */
Alexandre Julliard516e40e2001-10-17 17:48:49 +0000454static BOOL process_cooked_mouse_message( MSG *msg, ULONG_PTR extra_info, BOOL remove )
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000455{
456 INT hittest = HTCLIENT;
457 UINT raw_message = msg->message;
458 BOOL eatMsg;
459
460 if (msg->message >= WM_NCMOUSEFIRST && msg->message <= WM_NCMOUSELAST)
461 {
462 raw_message += WM_MOUSEFIRST - WM_NCMOUSEFIRST;
463 hittest = msg->wParam;
464 }
465 if (raw_message == WM_LBUTTONDBLCLK ||
466 raw_message == WM_RBUTTONDBLCLK ||
467 raw_message == WM_MBUTTONDBLCLK)
468 {
469 raw_message += WM_LBUTTONDOWN - WM_LBUTTONDBLCLK;
470 }
471
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000472 if (remove) update_queue_key_state( raw_message, 0 );
473
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000474 if (HOOK_IsHooked( WH_MOUSE ))
475 {
476 MOUSEHOOKSTRUCT hook;
477 hook.pt = msg->pt;
478 hook.hwnd = msg->hwnd;
479 hook.wHitTestCode = hittest;
Alexandre Julliard516e40e2001-10-17 17:48:49 +0000480 hook.dwExtraInfo = extra_info;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000481 if (HOOK_CallHooksA( WH_MOUSE, remove ? HC_ACTION : HC_NOREMOVE,
482 msg->message, (LPARAM)&hook ))
483 {
484 hook.pt = msg->pt;
485 hook.hwnd = msg->hwnd;
486 hook.wHitTestCode = hittest;
Alexandre Julliard516e40e2001-10-17 17:48:49 +0000487 hook.dwExtraInfo = extra_info;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000488 HOOK_CallHooksA( WH_CBT, HCBT_CLICKSKIPPED, msg->message, (LPARAM)&hook );
489 return FALSE;
490 }
491 }
492
493 if ((hittest == HTERROR) || (hittest == HTNOWHERE))
494 {
495 SendMessageA( msg->hwnd, WM_SETCURSOR, msg->hwnd, MAKELONG( hittest, raw_message ));
496 return FALSE;
497 }
498
499 if (!remove || GetCapture()) return TRUE;
500
501 eatMsg = FALSE;
502
503 if ((raw_message == WM_LBUTTONDOWN) ||
504 (raw_message == WM_RBUTTONDOWN) ||
505 (raw_message == WM_MBUTTONDOWN))
506 {
Alexandre Julliard0801ffc2001-08-24 00:26:59 +0000507 HWND hwndTop = GetAncestor( msg->hwnd, GA_ROOT );
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000508
509 /* Send the WM_PARENTNOTIFY,
510 * note that even for double/nonclient clicks
511 * notification message is still WM_L/M/RBUTTONDOWN.
512 */
513 MSG_SendParentNotify( msg->hwnd, raw_message, 0, msg->pt );
514
515 /* Activate the window if needed */
516
517 if (msg->hwnd != GetActiveWindow() && hwndTop != GetDesktopWindow())
518 {
519 LONG ret = SendMessageA( msg->hwnd, WM_MOUSEACTIVATE, hwndTop,
520 MAKELONG( hittest, raw_message ) );
521
522 switch(ret)
523 {
524 case MA_NOACTIVATEANDEAT:
525 eatMsg = TRUE;
526 /* fall through */
527 case MA_NOACTIVATE:
528 break;
529 case MA_ACTIVATEANDEAT:
530 eatMsg = TRUE;
531 /* fall through */
532 case MA_ACTIVATE:
Alexandre Julliard03e07b52001-11-06 22:28:18 +0000533 case 0:
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000534 if (hwndTop != GetForegroundWindow() )
535 {
536 if (!WINPOS_SetActiveWindow( hwndTop, TRUE , TRUE ))
537 eatMsg = TRUE;
538 }
539 break;
540 default:
541 WARN( "unknown WM_MOUSEACTIVATE code %ld\n", ret );
542 break;
543 }
544 }
545 }
546
547 /* send the WM_SETCURSOR message */
548
549 /* Windows sends the normal mouse message as the message parameter
550 in the WM_SETCURSOR message even if it's non-client mouse message */
551 SendMessageA( msg->hwnd, WM_SETCURSOR, msg->hwnd, MAKELONG( hittest, raw_message ));
552
553 return !eatMsg;
554}
555
556
557/***********************************************************************
558 * process_hardware_message
559 *
560 * returns TRUE if the contents of 'msg' should be passed to the application
561 */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000562BOOL MSG_process_raw_hardware_message( MSG *msg, ULONG_PTR extra_info, HWND hwnd_filter,
563 UINT first, UINT last, BOOL remove )
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000564{
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000565 if (is_keyboard_message( msg->message ))
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000566 {
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000567 if (!process_raw_keyboard_message( msg, extra_info )) return FALSE;
568 }
569 else if (is_mouse_message( msg->message ))
570 {
571 if (!process_raw_mouse_message( msg, extra_info )) return FALSE;
572 }
573 else
574 {
575 ERR( "unknown message type %x\n", msg->message );
576 return FALSE;
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000577 }
578
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000579 /* check destination thread and filters */
580 if (!check_message_filter( msg, hwnd_filter, first, last ) ||
Alexandre Julliard7695d692001-09-24 01:19:59 +0000581 !WIN_IsCurrentThread( msg->hwnd ))
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000582 {
583 /* queue it for later, or for another thread */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000584 queue_hardware_message( msg, extra_info, MSG_HARDWARE_COOKED );
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000585 return FALSE;
586 }
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000587
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000588 /* save the message in the cooked queue if we didn't want to remove it */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000589 if (!remove) queue_hardware_message( msg, extra_info, MSG_HARDWARE_COOKED );
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000590 return TRUE;
591}
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000592
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000593
594/***********************************************************************
Alexandre Julliardd253c582001-08-07 19:19:08 +0000595 * MSG_process_cooked_hardware_message
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000596 *
597 * returns TRUE if the contents of 'msg' should be passed to the application
598 */
Alexandre Julliard516e40e2001-10-17 17:48:49 +0000599BOOL MSG_process_cooked_hardware_message( MSG *msg, ULONG_PTR extra_info, BOOL remove )
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000600{
601 if (is_keyboard_message( msg->message ))
602 return process_cooked_keyboard_message( msg, remove );
603
604 if (is_mouse_message( msg->message ))
Alexandre Julliard516e40e2001-10-17 17:48:49 +0000605 return process_cooked_mouse_message( msg, extra_info, remove );
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000606
607 ERR( "unknown message type %x\n", msg->message );
Alexandre Julliard838d65a2001-06-19 19:16:41 +0000608 return FALSE;
Alexandre Julliardaca05781994-10-17 18:12:41 +0000609}
610
611
Alexandre Julliardcdd09231994-01-12 11:12:51 +0000612/**********************************************************************
Alexandre Julliarda21672e2001-10-02 18:53:59 +0000613 * GetKeyState (USER.106)
614 */
615INT16 WINAPI GetKeyState16(INT16 vkey)
616{
617 return GetKeyState(vkey);
618}
619
620
621/**********************************************************************
622 * GetKeyState (USER32.@)
623 *
624 * An application calls the GetKeyState function in response to a
625 * keyboard-input message. This function retrieves the state of the key
626 * at the time the input message was generated. (SDK 3.1 Vol 2. p 390)
627 */
628SHORT WINAPI GetKeyState(INT vkey)
629{
630 INT retval;
631
632 if (vkey >= 'a' && vkey <= 'z') vkey += 'A' - 'a';
633 retval = ((WORD)(QueueKeyStateTable[vkey] & 0x80) << 8 ) | (QueueKeyStateTable[vkey] & 0x01);
634 /* TRACE(key, "(0x%x) -> %x\n", vkey, retval); */
635 return retval;
636}
637
638
639/**********************************************************************
640 * GetKeyboardState (USER.222)
641 * GetKeyboardState (USER32.@)
642 *
643 * An application calls the GetKeyboardState function in response to a
644 * keyboard-input message. This function retrieves the state of the keyboard
645 * at the time the input message was generated. (SDK 3.1 Vol 2. p 387)
646 */
647BOOL WINAPI GetKeyboardState(LPBYTE lpKeyState)
648{
649 TRACE_(key)("(%p)\n", lpKeyState);
650 if (lpKeyState) memcpy(lpKeyState, QueueKeyStateTable, 256);
651 return TRUE;
652}
653
654
655/**********************************************************************
656 * SetKeyboardState (USER.223)
657 * SetKeyboardState (USER32.@)
658 */
659BOOL WINAPI SetKeyboardState(LPBYTE lpKeyState)
660{
661 TRACE_(key)("(%p)\n", lpKeyState);
662 if (lpKeyState) memcpy(QueueKeyStateTable, lpKeyState, 256);
663 return TRUE;
664}
665
666
Alexandre Julliardcdd09231994-01-12 11:12:51 +0000667/***********************************************************************
Patrik Stridvall01d5e5b2001-07-02 19:59:40 +0000668 * WaitMessage (USER.112) Suspend thread pending messages
669 * WaitMessage (USER32.@) Suspend thread pending messages
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000670 *
671 * WaitMessage() suspends a thread until events appear in the thread's
672 * queue.
Alexandre Julliard7e50df31994-08-06 11:22:41 +0000673 */
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000674BOOL WINAPI WaitMessage(void)
Alexandre Julliard7e50df31994-08-06 11:22:41 +0000675{
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000676 return (MsgWaitForMultipleObjectsEx( 0, NULL, INFINITE, QS_ALLINPUT, 0 ) != WAIT_FAILED);
Alexandre Julliard7e50df31994-08-06 11:22:41 +0000677}
678
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000679
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000680/***********************************************************************
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000681 * MsgWaitForMultipleObjectsEx (USER32.@)
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000682 */
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000683DWORD WINAPI MsgWaitForMultipleObjectsEx( DWORD count, CONST HANDLE *pHandles,
684 DWORD timeout, DWORD mask, DWORD flags )
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000685{
Alexandre Julliarda3960291999-02-26 11:11:13 +0000686 HANDLE handles[MAXIMUM_WAIT_OBJECTS];
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000687 DWORD i, ret;
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000688 MESSAGEQUEUE *msgQueue;
Alexandre Julliarddbf2bf01999-01-01 17:05:53 +0000689
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000690 if (count > MAXIMUM_WAIT_OBJECTS-1)
Alexandre Julliarddbf2bf01999-01-01 17:05:53 +0000691 {
692 SetLastError( ERROR_INVALID_PARAMETER );
693 return WAIT_FAILED;
694 }
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000695
Alexandre Julliard8afe6622001-07-26 20:12:22 +0000696 if (!(msgQueue = QUEUE_Current())) return WAIT_FAILED;
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000697
698 /* set the queue mask */
699 SERVER_START_REQ( set_queue_mask )
700 {
701 req->wake_mask = (flags & MWMO_INPUTAVAILABLE) ? mask : 0;
702 req->changed_mask = mask;
703 req->skip_wait = 0;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000704 wine_server_call( req );
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000705 }
706 SERVER_END_REQ;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000707
Alexandre Julliarddbf2bf01999-01-01 17:05:53 +0000708 /* Add the thread event to the handle list */
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000709 for (i = 0; i < count; i++) handles[i] = pHandles[i];
710 handles[count] = msgQueue->server_queue;
711
712
713 if (USER_Driver.pMsgWaitForMultipleObjectsEx)
Alexandre Julliard43230042001-05-16 19:52:29 +0000714 {
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000715 ret = USER_Driver.pMsgWaitForMultipleObjectsEx( count+1, handles, timeout, mask, flags );
716 if (ret == count+1) ret = count; /* pretend the msg queue is ready */
Alexandre Julliard43230042001-05-16 19:52:29 +0000717 }
718 else
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000719 ret = WaitForMultipleObjectsEx( count+1, handles, flags & MWMO_WAITALL,
720 timeout, flags & MWMO_ALERTABLE );
Stephane Lussierb3a99de1999-02-09 15:35:12 +0000721 return ret;
Alexandre Julliard767e6f61998-08-09 12:47:43 +0000722}
723
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000724
Eric Pouech982e0ce2001-01-28 23:44:56 +0000725/***********************************************************************
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000726 * MsgWaitForMultipleObjects (USER32.@)
Eric Pouech982e0ce2001-01-28 23:44:56 +0000727 */
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000728DWORD WINAPI MsgWaitForMultipleObjects( DWORD count, CONST HANDLE *handles,
729 BOOL wait_all, DWORD timeout, DWORD mask )
Eric Pouech982e0ce2001-01-28 23:44:56 +0000730{
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000731 return MsgWaitForMultipleObjectsEx( count, handles, timeout, mask,
732 wait_all ? MWMO_WAITALL : 0 );
Eric Pouech982e0ce2001-01-28 23:44:56 +0000733}
Alexandre Julliard7e50df31994-08-06 11:22:41 +0000734
Alexandre Julliard51ab43b2001-05-18 22:51:56 +0000735
736/***********************************************************************
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000737 * WaitForInputIdle (USER32.@)
738 */
739DWORD WINAPI WaitForInputIdle( HANDLE hProcess, DWORD dwTimeOut )
740{
Francois Gouget671a2ee2001-10-08 20:28:12 +0000741 DWORD start_time, elapsed, ret;
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000742 HANDLE idle_event = -1;
743
744 SERVER_START_REQ( wait_input_idle )
745 {
746 req->handle = hProcess;
747 req->timeout = dwTimeOut;
Alexandre Julliard9caa71e2001-11-30 18:46:42 +0000748 if (!(ret = wine_server_call_err( req ))) idle_event = reply->event;
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000749 }
750 SERVER_END_REQ;
Francois Gouget671a2ee2001-10-08 20:28:12 +0000751 if (ret) return WAIT_FAILED; /* error */
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000752 if (!idle_event) return 0; /* no event to wait on */
753
Francois Gouget671a2ee2001-10-08 20:28:12 +0000754 start_time = GetTickCount();
755 elapsed = 0;
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000756
757 TRACE("waiting for %x\n", idle_event );
Francois Gouget671a2ee2001-10-08 20:28:12 +0000758 do
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000759 {
Francois Gouget671a2ee2001-10-08 20:28:12 +0000760 ret = MsgWaitForMultipleObjects ( 1, &idle_event, FALSE, dwTimeOut - elapsed, QS_SENDMESSAGE );
761 switch (ret)
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000762 {
Francois Gouget671a2ee2001-10-08 20:28:12 +0000763 case WAIT_OBJECT_0+1:
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000764 process_sent_messages();
Francois Gouget671a2ee2001-10-08 20:28:12 +0000765 break;
766 case WAIT_TIMEOUT:
767 case WAIT_FAILED:
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000768 TRACE("timeout or error\n");
769 return ret;
Francois Gouget671a2ee2001-10-08 20:28:12 +0000770 default:
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000771 TRACE("finished\n");
772 return 0;
773 }
Francois Gouget671a2ee2001-10-08 20:28:12 +0000774 if (dwTimeOut != INFINITE)
775 {
776 elapsed = GetTickCount() - start_time;
777 if (elapsed > dwTimeOut)
778 break;
779 }
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000780 }
Francois Gouget671a2ee2001-10-08 20:28:12 +0000781 while (1);
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000782
783 return WAIT_TIMEOUT;
784}
785
786
787/***********************************************************************
788 * UserYield (USER.332)
789 * UserYield16 (USER32.@)
790 */
791void WINAPI UserYield16(void)
792{
Alexandre Julliardd253c582001-08-07 19:19:08 +0000793 DWORD count;
794
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000795 /* Handle sent messages */
796 process_sent_messages();
797
798 /* Yield */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000799 ReleaseThunkLock(&count);
800 if (count)
801 {
802 RestoreThunkLock(count);
803 /* Handle sent messages again */
804 process_sent_messages();
805 }
Alexandre Julliard9f55ae62001-06-28 04:37:22 +0000806}
807
808
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000809struct accent_char
810{
811 BYTE ac_accent;
812 BYTE ac_char;
813 BYTE ac_result;
814};
815
816static const struct accent_char accent_chars[] =
817{
Alexandre Julliard21979011997-03-05 08:22:35 +0000818/* A good idea should be to read /usr/X11/lib/X11/locale/iso8859-x/Compose */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000819 {'`', 'A', '\300'}, {'`', 'a', '\340'},
820 {'\'', 'A', '\301'}, {'\'', 'a', '\341'},
821 {'^', 'A', '\302'}, {'^', 'a', '\342'},
822 {'~', 'A', '\303'}, {'~', 'a', '\343'},
823 {'"', 'A', '\304'}, {'"', 'a', '\344'},
824 {'O', 'A', '\305'}, {'o', 'a', '\345'},
825 {'0', 'A', '\305'}, {'0', 'a', '\345'},
826 {'A', 'A', '\305'}, {'a', 'a', '\345'},
827 {'A', 'E', '\306'}, {'a', 'e', '\346'},
828 {',', 'C', '\307'}, {',', 'c', '\347'},
829 {'`', 'E', '\310'}, {'`', 'e', '\350'},
830 {'\'', 'E', '\311'}, {'\'', 'e', '\351'},
831 {'^', 'E', '\312'}, {'^', 'e', '\352'},
832 {'"', 'E', '\313'}, {'"', 'e', '\353'},
833 {'`', 'I', '\314'}, {'`', 'i', '\354'},
834 {'\'', 'I', '\315'}, {'\'', 'i', '\355'},
835 {'^', 'I', '\316'}, {'^', 'i', '\356'},
836 {'"', 'I', '\317'}, {'"', 'i', '\357'},
837 {'-', 'D', '\320'}, {'-', 'd', '\360'},
838 {'~', 'N', '\321'}, {'~', 'n', '\361'},
839 {'`', 'O', '\322'}, {'`', 'o', '\362'},
840 {'\'', 'O', '\323'}, {'\'', 'o', '\363'},
841 {'^', 'O', '\324'}, {'^', 'o', '\364'},
842 {'~', 'O', '\325'}, {'~', 'o', '\365'},
843 {'"', 'O', '\326'}, {'"', 'o', '\366'},
844 {'/', 'O', '\330'}, {'/', 'o', '\370'},
845 {'`', 'U', '\331'}, {'`', 'u', '\371'},
846 {'\'', 'U', '\332'}, {'\'', 'u', '\372'},
847 {'^', 'U', '\333'}, {'^', 'u', '\373'},
848 {'"', 'U', '\334'}, {'"', 'u', '\374'},
849 {'\'', 'Y', '\335'}, {'\'', 'y', '\375'},
850 {'T', 'H', '\336'}, {'t', 'h', '\376'},
851 {'s', 's', '\337'}, {'"', 'y', '\377'},
852 {'s', 'z', '\337'}, {'i', 'j', '\377'},
Alexandre Julliard21979011997-03-05 08:22:35 +0000853 /* iso-8859-2 uses this */
854 {'<', 'L', '\245'}, {'<', 'l', '\265'}, /* caron */
855 {'<', 'S', '\251'}, {'<', 's', '\271'},
856 {'<', 'T', '\253'}, {'<', 't', '\273'},
857 {'<', 'Z', '\256'}, {'<', 'z', '\276'},
858 {'<', 'C', '\310'}, {'<', 'c', '\350'},
859 {'<', 'E', '\314'}, {'<', 'e', '\354'},
860 {'<', 'D', '\317'}, {'<', 'd', '\357'},
861 {'<', 'N', '\322'}, {'<', 'n', '\362'},
862 {'<', 'R', '\330'}, {'<', 'r', '\370'},
863 {';', 'A', '\241'}, {';', 'a', '\261'}, /* ogonek */
864 {';', 'E', '\312'}, {';', 'e', '\332'},
865 {'\'', 'Z', '\254'}, {'\'', 'z', '\274'}, /* acute */
866 {'\'', 'R', '\300'}, {'\'', 'r', '\340'},
867 {'\'', 'L', '\305'}, {'\'', 'l', '\345'},
868 {'\'', 'C', '\306'}, {'\'', 'c', '\346'},
869 {'\'', 'N', '\321'}, {'\'', 'n', '\361'},
870/* collision whith S, from iso-8859-9 !!! */
871 {',', 'S', '\252'}, {',', 's', '\272'}, /* cedilla */
872 {',', 'T', '\336'}, {',', 't', '\376'},
873 {'.', 'Z', '\257'}, {'.', 'z', '\277'}, /* dot above */
874 {'/', 'L', '\243'}, {'/', 'l', '\263'}, /* slash */
875 {'/', 'D', '\320'}, {'/', 'd', '\360'},
876 {'(', 'A', '\303'}, {'(', 'a', '\343'}, /* breve */
877 {'\275', 'O', '\325'}, {'\275', 'o', '\365'}, /* double acute */
878 {'\275', 'U', '\334'}, {'\275', 'u', '\374'},
879 {'0', 'U', '\332'}, {'0', 'u', '\372'}, /* ring above */
880 /* iso-8859-3 uses this */
881 {'/', 'H', '\241'}, {'/', 'h', '\261'}, /* slash */
882 {'>', 'H', '\246'}, {'>', 'h', '\266'}, /* circumflex */
883 {'>', 'J', '\254'}, {'>', 'j', '\274'},
884 {'>', 'C', '\306'}, {'>', 'c', '\346'},
885 {'>', 'G', '\330'}, {'>', 'g', '\370'},
886 {'>', 'S', '\336'}, {'>', 's', '\376'},
887/* collision whith G( from iso-8859-9 !!! */
888 {'(', 'G', '\253'}, {'(', 'g', '\273'}, /* breve */
889 {'(', 'U', '\335'}, {'(', 'u', '\375'},
890/* collision whith I. from iso-8859-3 !!! */
891 {'.', 'I', '\251'}, {'.', 'i', '\271'}, /* dot above */
892 {'.', 'C', '\305'}, {'.', 'c', '\345'},
893 {'.', 'G', '\325'}, {'.', 'g', '\365'},
894 /* iso-8859-4 uses this */
895 {',', 'R', '\243'}, {',', 'r', '\263'}, /* cedilla */
896 {',', 'L', '\246'}, {',', 'l', '\266'},
897 {',', 'G', '\253'}, {',', 'g', '\273'},
898 {',', 'N', '\321'}, {',', 'n', '\361'},
899 {',', 'K', '\323'}, {',', 'k', '\363'},
900 {'~', 'I', '\245'}, {'~', 'i', '\265'}, /* tilde */
901 {'-', 'E', '\252'}, {'-', 'e', '\272'}, /* macron */
902 {'-', 'A', '\300'}, {'-', 'a', '\340'},
903 {'-', 'I', '\317'}, {'-', 'i', '\357'},
904 {'-', 'O', '\322'}, {'-', 'o', '\362'},
905 {'-', 'U', '\336'}, {'-', 'u', '\376'},
906 {'/', 'T', '\254'}, {'/', 't', '\274'}, /* slash */
907 {'.', 'E', '\314'}, {'.', 'e', '\344'}, /* dot above */
908 {';', 'I', '\307'}, {';', 'i', '\347'}, /* ogonek */
909 {';', 'U', '\331'}, {';', 'u', '\371'},
910 /* iso-8859-9 uses this */
911 /* iso-8859-9 has really bad choosen G( S, and I. as they collide
912 * whith the same letters on other iso-8859-x (that is they are on
913 * different places :-( ), if you use turkish uncomment these and
914 * comment out the lines in iso-8859-2 and iso-8859-3 sections
915 * FIXME: should be dynamic according to chosen language
916 * if/when Wine has turkish support.
917 */
918/* collision whith G( from iso-8859-3 !!! */
919/* {'(', 'G', '\320'}, {'(', 'g', '\360'}, */ /* breve */
920/* collision whith S, from iso-8859-2 !!! */
921/* {',', 'S', '\336'}, {',', 's', '\376'}, */ /* cedilla */
922/* collision whith I. from iso-8859-3 !!! */
923/* {'.', 'I', '\335'}, {'.', 'i', '\375'}, */ /* dot above */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000924};
925
926
Alexandre Julliard7e50df31994-08-06 11:22:41 +0000927/***********************************************************************
Alexandre Julliardd253c582001-08-07 19:19:08 +0000928 * TranslateMessage (USER32.@)
Alexandre Julliardc981d0b1996-03-31 16:40:13 +0000929 *
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000930 * Implementation of TranslateMessage.
931 *
932 * TranslateMessage translates virtual-key messages into character-messages,
Alexandre Julliardda0cfb31996-12-01 17:17:47 +0000933 * as follows :
934 * WM_KEYDOWN/WM_KEYUP combinations produce a WM_CHAR or WM_DEADCHAR message.
935 * ditto replacing WM_* with WM_SYS*
936 * This produces WM_CHAR messages only for keys mapped to ASCII characters
937 * by the keyboard driver.
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000938 */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000939BOOL WINAPI TranslateMessage( const MSG *msg )
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000940{
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000941 static int dead_char;
Alexandre Julliardd253c582001-08-07 19:19:08 +0000942 UINT message;
Dmitry Timoshkov2fa0c662000-11-25 02:09:45 +0000943 WCHAR wp[2];
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000944
Alexandre Julliardd253c582001-08-07 19:19:08 +0000945 if (msg->message >= WM_KEYFIRST && msg->message <= WM_KEYLAST)
946 TRACE_(key)("(%s, %04X, %08lX)\n",
Guy L. Albertellidb9b5492001-09-07 18:38:57 +0000947 SPY_GetMsgName(msg->message, msg->hwnd), msg->wParam, msg->lParam );
Alexandre Julliardd253c582001-08-07 19:19:08 +0000948
949 if ((msg->message != WM_KEYDOWN) && (msg->message != WM_SYSKEYDOWN)) return FALSE;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000950
Dmitry Timoshkov740bb922000-11-05 20:07:59 +0000951 TRACE_(key)("Translating key %s (%04x), scancode %02x\n",
Alexandre Julliardd253c582001-08-07 19:19:08 +0000952 SPY_GetVKeyName(msg->wParam), msg->wParam, LOBYTE(HIWORD(msg->lParam)));
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000953
Dmitry Timoshkov2fa0c662000-11-25 02:09:45 +0000954 /* FIXME : should handle ToUnicode yielding 2 */
Alexandre Julliardd253c582001-08-07 19:19:08 +0000955 switch (ToUnicode(msg->wParam, HIWORD(msg->lParam), QueueKeyStateTable, wp, 2, 0))
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000956 {
Andreas Mohr1af53cb2000-12-09 03:15:32 +0000957 case 1:
Alexandre Julliardd253c582001-08-07 19:19:08 +0000958 message = (msg->message == WM_KEYDOWN) ? WM_CHAR : WM_SYSCHAR;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000959 /* Should dead chars handling go in ToAscii ? */
960 if (dead_char)
961 {
962 int i;
Alexandre Julliardc6c09441997-01-12 18:32:19 +0000963
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000964 if (wp[0] == ' ') wp[0] = dead_char;
Alexandre Julliard21979011997-03-05 08:22:35 +0000965 if (dead_char == 0xa2) dead_char = '(';
966 else if (dead_char == 0xa8) dead_char = '"';
967 else if (dead_char == 0xb2) dead_char = ';';
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000968 else if (dead_char == 0xb4) dead_char = '\'';
Alexandre Julliard21979011997-03-05 08:22:35 +0000969 else if (dead_char == 0xb7) dead_char = '<';
970 else if (dead_char == 0xb8) dead_char = ',';
971 else if (dead_char == 0xff) dead_char = '.';
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000972 for (i = 0; i < sizeof(accent_chars)/sizeof(accent_chars[0]); i++)
973 if ((accent_chars[i].ac_accent == dead_char) &&
974 (accent_chars[i].ac_char == wp[0]))
975 {
976 wp[0] = accent_chars[i].ac_result;
977 break;
978 }
979 dead_char = 0;
980 }
Guy L. Albertellidb9b5492001-09-07 18:38:57 +0000981 TRACE_(key)("1 -> PostMessage(%s)\n", SPY_GetMsgName(message, msg->hwnd));
Alexandre Julliardd253c582001-08-07 19:19:08 +0000982 PostMessageW( msg->hwnd, message, wp[0], msg->lParam );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000983 return TRUE;
Alexandre Julliardc981d0b1996-03-31 16:40:13 +0000984
Andreas Mohr1af53cb2000-12-09 03:15:32 +0000985 case -1:
Alexandre Julliardd253c582001-08-07 19:19:08 +0000986 message = (msg->message == WM_KEYDOWN) ? WM_DEADCHAR : WM_SYSDEADCHAR;
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000987 dead_char = wp[0];
Guy L. Albertellidb9b5492001-09-07 18:38:57 +0000988 TRACE_(key)("-1 -> PostMessage(%s)\n", SPY_GetMsgName(message, msg->hwnd));
Alexandre Julliardd253c582001-08-07 19:19:08 +0000989 PostMessageW( msg->hwnd, message, wp[0], msg->lParam );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000990 return TRUE;
Alexandre Julliard75a839a1993-07-15 11:13:45 +0000991 }
992 return FALSE;
993}
994
995
996/***********************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +0000997 * DispatchMessageA (USER32.@)
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +0000998 */
Alexandre Julliarda3960291999-02-26 11:11:13 +0000999LONG WINAPI DispatchMessageA( const MSG* msg )
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001000{
1001 WND * wndPtr;
1002 LONG retval;
1003 int painting;
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001004 WNDPROC winproc;
1005
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001006 /* Process timer messages */
1007 if ((msg->message == WM_TIMER) || (msg->message == WM_SYSTIMER))
1008 {
1009 if (msg->lParam)
1010 {
1011/* HOOK_CallHooks32A( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
Stephane Lussier6bac4f22000-09-29 00:56:05 +00001012
Andreas Mohr1af53cb2000-12-09 03:15:32 +00001013 /* before calling window proc, verify whether timer is still valid;
1014 there's a slim chance that the application kills the timer
1015 between GetMessage and DispatchMessage API calls */
Stephane Lussier6bac4f22000-09-29 00:56:05 +00001016 if (!TIMER_IsTimerValid(msg->hwnd, (UINT) msg->wParam, (HWINDOWPROC) msg->lParam))
1017 return 0; /* invalid winproc */
1018
Alexandre Julliarda3960291999-02-26 11:11:13 +00001019 return CallWindowProcA( (WNDPROC)msg->lParam, msg->hwnd,
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001020 msg->message, msg->wParam, GetTickCount() );
1021 }
1022 }
1023
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001024 if (!(wndPtr = WIN_GetPtr( msg->hwnd )))
Francois Boisvert3a3cd9f1999-03-28 12:42:52 +00001025 {
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001026 if (msg->hwnd) SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1027 return 0;
1028 }
1029 if (wndPtr == WND_OTHER_PROCESS)
1030 {
1031 if (IsWindow( msg->hwnd ))
1032 ERR( "cannot dispatch msg to other process window %x\n", msg->hwnd );
1033 SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1034 return 0;
1035 }
1036 if (!(winproc = wndPtr->winproc))
1037 {
1038 WIN_ReleasePtr( wndPtr );
1039 return 0;
Francois Boisvert3a3cd9f1999-03-28 12:42:52 +00001040 }
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001041 painting = (msg->message == WM_PAINT);
1042 if (painting) wndPtr->flags |= WIN_NEEDS_BEGINPAINT;
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001043 WIN_ReleasePtr( wndPtr );
1044/* hook_CallHooks32A( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001045
Alexandre Julliarda3960291999-02-26 11:11:13 +00001046 SPY_EnterMessage( SPY_DISPATCHMESSAGE, msg->hwnd, msg->message,
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001047 msg->wParam, msg->lParam );
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001048 retval = CallWindowProcA( winproc, msg->hwnd, msg->message,
1049 msg->wParam, msg->lParam );
Guy L. Albertelli936c6c42000-10-22 23:52:47 +00001050 SPY_ExitMessage( SPY_RESULT_OK, msg->hwnd, msg->message, retval,
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001051 msg->wParam, msg->lParam );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001052
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001053 if (painting && (wndPtr = WIN_GetPtr( msg->hwnd )) && (wndPtr != WND_OTHER_PROCESS))
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001054 {
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001055 BOOL validate = ((wndPtr->flags & WIN_NEEDS_BEGINPAINT) && wndPtr->hrgnUpdate);
1056 wndPtr->flags &= ~WIN_NEEDS_BEGINPAINT;
1057 WIN_ReleasePtr( wndPtr );
1058 if (validate)
1059 {
1060 ERR( "BeginPaint not called on WM_PAINT for hwnd %04x!\n", msg->hwnd );
1061 /* Validate the update region to avoid infinite WM_PAINT loop */
1062 RedrawWindow( msg->hwnd, NULL, 0,
1063 RDW_NOFRAME | RDW_VALIDATE | RDW_NOCHILDREN | RDW_NOINTERNALPAINT );
1064 }
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001065 }
1066 return retval;
1067}
1068
1069
1070/***********************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +00001071 * DispatchMessageW (USER32.@) Process Message
Alexandre Julliard767e6f61998-08-09 12:47:43 +00001072 *
1073 * Process the message specified in the structure *_msg_.
1074 *
1075 * If the lpMsg parameter points to a WM_TIMER message and the
1076 * parameter of the WM_TIMER message is not NULL, the lParam parameter
1077 * points to the function that is called instead of the window
1078 * procedure.
1079 *
1080 * The message must be valid.
1081 *
1082 * RETURNS
1083 *
1084 * DispatchMessage() returns the result of the window procedure invoked.
1085 *
1086 * CONFORMANCE
1087 *
1088 * ECMA-234, Win32
1089 *
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001090 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001091LONG WINAPI DispatchMessageW( const MSG* msg )
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001092{
1093 WND * wndPtr;
1094 LONG retval;
1095 int painting;
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001096 WNDPROC winproc;
1097
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001098 /* Process timer messages */
1099 if ((msg->message == WM_TIMER) || (msg->message == WM_SYSTIMER))
1100 {
1101 if (msg->lParam)
1102 {
1103/* HOOK_CallHooks32W( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
Stephane Lussier6bac4f22000-09-29 00:56:05 +00001104
Andreas Mohr1af53cb2000-12-09 03:15:32 +00001105 /* before calling window proc, verify whether timer is still valid;
1106 there's a slim chance that the application kills the timer
1107 between GetMessage and DispatchMessage API calls */
Stephane Lussier6bac4f22000-09-29 00:56:05 +00001108 if (!TIMER_IsTimerValid(msg->hwnd, (UINT) msg->wParam, (HWINDOWPROC) msg->lParam))
1109 return 0; /* invalid winproc */
1110
Alexandre Julliarda3960291999-02-26 11:11:13 +00001111 return CallWindowProcW( (WNDPROC)msg->lParam, msg->hwnd,
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001112 msg->message, msg->wParam, GetTickCount() );
1113 }
1114 }
1115
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001116 if (!(wndPtr = WIN_GetPtr( msg->hwnd )))
Francois Boisvert3a3cd9f1999-03-28 12:42:52 +00001117 {
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001118 if (msg->hwnd) SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1119 return 0;
1120 }
1121 if (wndPtr == WND_OTHER_PROCESS)
1122 {
1123 if (IsWindow( msg->hwnd ))
1124 ERR( "cannot dispatch msg to other process window %x\n", msg->hwnd );
1125 SetLastError( ERROR_INVALID_WINDOW_HANDLE );
1126 return 0;
1127 }
1128 if (!(winproc = wndPtr->winproc))
1129 {
1130 WIN_ReleasePtr( wndPtr );
1131 return 0;
Francois Boisvert3a3cd9f1999-03-28 12:42:52 +00001132 }
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001133 painting = (msg->message == WM_PAINT);
1134 if (painting) wndPtr->flags |= WIN_NEEDS_BEGINPAINT;
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001135 WIN_ReleasePtr( wndPtr );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001136/* HOOK_CallHooks32W( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
1137
Alexandre Julliarda3960291999-02-26 11:11:13 +00001138 SPY_EnterMessage( SPY_DISPATCHMESSAGE, msg->hwnd, msg->message,
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001139 msg->wParam, msg->lParam );
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001140 retval = CallWindowProcW( winproc, msg->hwnd, msg->message,
1141 msg->wParam, msg->lParam );
Guy L. Albertelli936c6c42000-10-22 23:52:47 +00001142 SPY_ExitMessage( SPY_RESULT_OK, msg->hwnd, msg->message, retval,
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001143 msg->wParam, msg->lParam );
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001144
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001145 if (painting && (wndPtr = WIN_GetPtr( msg->hwnd )) && (wndPtr != WND_OTHER_PROCESS))
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001146 {
Alexandre Julliard8fd26b92001-10-15 17:56:45 +00001147 BOOL validate = ((wndPtr->flags & WIN_NEEDS_BEGINPAINT) && wndPtr->hrgnUpdate);
1148 wndPtr->flags &= ~WIN_NEEDS_BEGINPAINT;
1149 WIN_ReleasePtr( wndPtr );
1150 if (validate)
1151 {
1152 ERR( "BeginPaint not called on WM_PAINT for hwnd %04x!\n", msg->hwnd );
1153 /* Validate the update region to avoid infinite WM_PAINT loop */
1154 RedrawWindow( msg->hwnd, NULL, 0,
1155 RDW_NOFRAME | RDW_VALIDATE | RDW_NOCHILDREN | RDW_NOINTERNALPAINT );
1156 }
Alexandre Julliardf0cbfa01997-02-15 14:29:56 +00001157 }
1158 return retval;
1159}
1160
1161
1162/***********************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +00001163 * RegisterWindowMessage (USER.118)
1164 * RegisterWindowMessageA (USER32.@)
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001165 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001166WORD WINAPI RegisterWindowMessageA( LPCSTR str )
Alexandre Julliard2ace16a1996-04-28 15:09:19 +00001167{
Dimitrie O. Paundd03cc11999-12-08 03:56:23 +00001168 TRACE("%s\n", str );
Alexandre Julliarda3960291999-02-26 11:11:13 +00001169 return GlobalAddAtomA( str );
Alexandre Julliard2ace16a1996-04-28 15:09:19 +00001170}
Alexandre Julliard86a8d0f1994-01-18 23:04:40 +00001171
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001172
1173/***********************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +00001174 * RegisterWindowMessageW (USER32.@)
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001175 */
Alexandre Julliarda3960291999-02-26 11:11:13 +00001176WORD WINAPI RegisterWindowMessageW( LPCWSTR str )
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001177{
Dimitrie O. Paundd03cc11999-12-08 03:56:23 +00001178 TRACE("%p\n", str );
Alexandre Julliarda3960291999-02-26 11:11:13 +00001179 return GlobalAddAtomW( str );
Alexandre Julliarde2bfa4c1996-05-16 18:21:06 +00001180}
1181
1182
Alexandre Julliard86a8d0f1994-01-18 23:04:40 +00001183/***********************************************************************
Patrik Stridvall2ece70e2000-12-22 01:38:01 +00001184 * BroadcastSystemMessage (USER32.@)
Alexandre Julliarde658d821997-11-30 17:45:40 +00001185 */
1186LONG WINAPI BroadcastSystemMessage(
Alexandre Julliarda3960291999-02-26 11:11:13 +00001187 DWORD dwFlags,LPDWORD recipients,UINT uMessage,WPARAM wParam,
Alexandre Julliarde658d821997-11-30 17:45:40 +00001188 LPARAM lParam
1189) {
Alexandre Julliard838d65a2001-06-19 19:16:41 +00001190 FIXME("(%08lx,%08lx,%08x,%08x,%08lx): stub!\n",
Alexandre Julliard54c27111998-03-29 19:44:57 +00001191 dwFlags,*recipients,uMessage,wParam,lParam
Alexandre Julliarde658d821997-11-30 17:45:40 +00001192 );
1193 return 0;
1194}