comctl32: Use DrawIconEx to copy icon bits and use the correct background color.
[wine] / dlls / user32 / input.c
1 /*
2  * USER Input processing
3  *
4  * Copyright 1993 Bob Amstadt
5  * Copyright 1996 Albrecht Kleine
6  * Copyright 1997 David Faure
7  * Copyright 1998 Morten Welinder
8  * Copyright 1998 Ulrich Weigand
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <ctype.h>
33 #include <assert.h>
34
35 #define NONAMELESSUNION
36 #define NONAMELESSSTRUCT
37 #include "ntstatus.h"
38 #define WIN32_NO_STATUS
39 #include "windef.h"
40 #include "winbase.h"
41 #include "wingdi.h"
42 #include "winuser.h"
43 #include "winnls.h"
44 #include "winternl.h"
45 #include "winerror.h"
46 #include "win.h"
47 #include "user_private.h"
48 #include "wine/server.h"
49 #include "wine/debug.h"
50 #include "wine/unicode.h"
51
52 WINE_DEFAULT_DEBUG_CHANNEL(win);
53 WINE_DECLARE_DEBUG_CHANNEL(keyboard);
54
55
56 /***********************************************************************
57  *           get_key_state
58  */
59 static WORD get_key_state(void)
60 {
61     WORD ret = 0;
62
63     if (GetSystemMetrics( SM_SWAPBUTTON ))
64     {
65         if (GetAsyncKeyState(VK_RBUTTON) & 0x80) ret |= MK_LBUTTON;
66         if (GetAsyncKeyState(VK_LBUTTON) & 0x80) ret |= MK_RBUTTON;
67     }
68     else
69     {
70         if (GetAsyncKeyState(VK_LBUTTON) & 0x80) ret |= MK_LBUTTON;
71         if (GetAsyncKeyState(VK_RBUTTON) & 0x80) ret |= MK_RBUTTON;
72     }
73     if (GetAsyncKeyState(VK_MBUTTON) & 0x80)  ret |= MK_MBUTTON;
74     if (GetAsyncKeyState(VK_SHIFT) & 0x80)    ret |= MK_SHIFT;
75     if (GetAsyncKeyState(VK_CONTROL) & 0x80)  ret |= MK_CONTROL;
76     if (GetAsyncKeyState(VK_XBUTTON1) & 0x80) ret |= MK_XBUTTON1;
77     if (GetAsyncKeyState(VK_XBUTTON2) & 0x80) ret |= MK_XBUTTON2;
78     return ret;
79 }
80
81
82 /**********************************************************************
83  *              set_capture_window
84  */
85 BOOL set_capture_window( HWND hwnd, UINT gui_flags, HWND *prev_ret )
86 {
87     HWND previous = 0;
88     UINT flags = 0;
89     BOOL ret;
90
91     if (gui_flags & GUI_INMENUMODE) flags |= CAPTURE_MENU;
92     if (gui_flags & GUI_INMOVESIZE) flags |= CAPTURE_MOVESIZE;
93
94     SERVER_START_REQ( set_capture_window )
95     {
96         req->handle = wine_server_user_handle( hwnd );
97         req->flags  = flags;
98         if ((ret = !wine_server_call_err( req )))
99         {
100             previous = wine_server_ptr_handle( reply->previous );
101             hwnd = wine_server_ptr_handle( reply->full_handle );
102         }
103     }
104     SERVER_END_REQ;
105
106     if (ret)
107     {
108         USER_Driver->pSetCapture( hwnd, gui_flags );
109
110         if (previous && previous != hwnd)
111             SendMessageW( previous, WM_CAPTURECHANGED, 0, (LPARAM)hwnd );
112
113         if (prev_ret) *prev_ret = previous;
114     }
115     return ret;
116 }
117
118
119 /***********************************************************************
120  *              __wine_send_input  (USER32.@)
121  *
122  * Internal SendInput function to allow the graphics driver to inject real events.
123  */
124 BOOL CDECL __wine_send_input( HWND hwnd, const INPUT *input )
125 {
126     NTSTATUS status = send_hardware_message( hwnd, input, 0 );
127     if (status) SetLastError( RtlNtStatusToDosError(status) );
128     return !status;
129 }
130
131
132 /***********************************************************************
133  *              update_mouse_coords
134  *
135  * Helper for SendInput.
136  */
137 static void update_mouse_coords( INPUT *input )
138 {
139     if (!(input->u.mi.dwFlags & MOUSEEVENTF_MOVE)) return;
140
141     if (input->u.mi.dwFlags & MOUSEEVENTF_ABSOLUTE)
142     {
143         input->u.mi.dx = (input->u.mi.dx * GetSystemMetrics( SM_CXSCREEN )) >> 16;
144         input->u.mi.dy = (input->u.mi.dy * GetSystemMetrics( SM_CYSCREEN )) >> 16;
145     }
146     else
147     {
148         int accel[3];
149
150         /* dx and dy can be negative numbers for relative movements */
151         SystemParametersInfoW(SPI_GETMOUSE, 0, accel, 0);
152
153         if (!accel[2]) return;
154
155         if (abs(input->u.mi.dx) > accel[0])
156         {
157             input->u.mi.dx *= 2;
158             if ((abs(input->u.mi.dx) > accel[1]) && (accel[2] == 2)) input->u.mi.dx *= 2;
159         }
160         if (abs(input->u.mi.dy) > accel[0])
161         {
162             input->u.mi.dy *= 2;
163             if ((abs(input->u.mi.dy) > accel[1]) && (accel[2] == 2)) input->u.mi.dy *= 2;
164         }
165     }
166 }
167
168 /***********************************************************************
169  *              SendInput  (USER32.@)
170  */
171 UINT WINAPI SendInput( UINT count, LPINPUT inputs, int size )
172 {
173     UINT i;
174     NTSTATUS status;
175
176     for (i = 0; i < count; i++)
177     {
178         if (inputs[i].type == INPUT_MOUSE)
179         {
180             /* we need to update the coordinates to what the server expects */
181             INPUT input = inputs[i];
182             update_mouse_coords( &input );
183             if (!(status = send_hardware_message( 0, &input, SEND_HWMSG_INJECTED )))
184             {
185                 if ((input.u.mi.dwFlags & MOUSEEVENTF_MOVE) &&
186                     ((input.u.mi.dwFlags & MOUSEEVENTF_ABSOLUTE) || input.u.mi.dx || input.u.mi.dy))
187                 {
188                     /* we have to actually move the cursor */
189                     POINT pt;
190                     GetCursorPos( &pt );
191                     if (!(input.u.mi.dwFlags & MOUSEEVENTF_ABSOLUTE) ||
192                         pt.x != input.u.mi.dx  || pt.y != input.u.mi.dy)
193                         USER_Driver->pSetCursorPos( pt.x, pt.y );
194                 }
195             }
196         }
197         else status = send_hardware_message( 0, &inputs[i], SEND_HWMSG_INJECTED );
198
199         if (status)
200         {
201             SetLastError( RtlNtStatusToDosError(status) );
202             break;
203         }
204     }
205
206     return i;
207 }
208
209
210 /***********************************************************************
211  *              keybd_event (USER32.@)
212  */
213 void WINAPI keybd_event( BYTE bVk, BYTE bScan,
214                          DWORD dwFlags, ULONG_PTR dwExtraInfo )
215 {
216     INPUT input;
217
218     input.type = INPUT_KEYBOARD;
219     input.u.ki.wVk = bVk;
220     input.u.ki.wScan = bScan;
221     input.u.ki.dwFlags = dwFlags;
222     input.u.ki.time = 0;
223     input.u.ki.dwExtraInfo = dwExtraInfo;
224     SendInput( 1, &input, sizeof(input) );
225 }
226
227
228 /***********************************************************************
229  *              mouse_event (USER32.@)
230  */
231 void WINAPI mouse_event( DWORD dwFlags, DWORD dx, DWORD dy,
232                          DWORD dwData, ULONG_PTR dwExtraInfo )
233 {
234     INPUT input;
235
236     input.type = INPUT_MOUSE;
237     input.u.mi.dx = dx;
238     input.u.mi.dy = dy;
239     input.u.mi.mouseData = dwData;
240     input.u.mi.dwFlags = dwFlags;
241     input.u.mi.time = 0;
242     input.u.mi.dwExtraInfo = dwExtraInfo;
243     SendInput( 1, &input, sizeof(input) );
244 }
245
246
247 /***********************************************************************
248  *              GetCursorPos (USER32.@)
249  */
250 BOOL WINAPI DECLSPEC_HOTPATCH GetCursorPos( POINT *pt )
251 {
252     BOOL ret;
253     DWORD last_change;
254
255     if (!pt) return FALSE;
256
257     SERVER_START_REQ( set_cursor )
258     {
259         if ((ret = !wine_server_call( req )))
260         {
261             pt->x = reply->new_x;
262             pt->y = reply->new_y;
263             last_change = reply->last_change;
264         }
265     }
266     SERVER_END_REQ;
267
268     /* query new position from graphics driver if we haven't updated recently */
269     if (ret && GetTickCount() - last_change > 100) ret = USER_Driver->pGetCursorPos( pt );
270     return ret;
271 }
272
273
274 /***********************************************************************
275  *              GetCursorInfo (USER32.@)
276  */
277 BOOL WINAPI GetCursorInfo( PCURSORINFO pci )
278 {
279     BOOL ret;
280
281     if (!pci) return 0;
282
283     SERVER_START_REQ( get_thread_input )
284     {
285         req->tid = 0;
286         if ((ret = !wine_server_call( req )))
287         {
288             pci->hCursor = wine_server_ptr_handle( reply->cursor );
289             pci->flags = (reply->show_count >= 0) ? CURSOR_SHOWING : 0;
290         }
291     }
292     SERVER_END_REQ;
293     GetCursorPos(&pci->ptScreenPos);
294     return ret;
295 }
296
297
298 /***********************************************************************
299  *              SetCursorPos (USER32.@)
300  */
301 BOOL WINAPI DECLSPEC_HOTPATCH SetCursorPos( INT x, INT y )
302 {
303     BOOL ret;
304     INT prev_x, prev_y, new_x, new_y;
305
306     SERVER_START_REQ( set_cursor )
307     {
308         req->flags = SET_CURSOR_POS;
309         req->x     = x;
310         req->y     = y;
311         if ((ret = !wine_server_call( req )))
312         {
313             prev_x = reply->prev_x;
314             prev_y = reply->prev_y;
315             new_x  = reply->new_x;
316             new_y  = reply->new_y;
317         }
318     }
319     SERVER_END_REQ;
320     if (ret && (prev_x != new_x || prev_y != new_y)) USER_Driver->pSetCursorPos( new_x, new_y );
321     return ret;
322 }
323
324
325 /**********************************************************************
326  *              SetCapture (USER32.@)
327  */
328 HWND WINAPI DECLSPEC_HOTPATCH SetCapture( HWND hwnd )
329 {
330     HWND previous = 0;
331
332     set_capture_window( hwnd, 0, &previous );
333     return previous;
334 }
335
336
337 /**********************************************************************
338  *              ReleaseCapture (USER32.@)
339  */
340 BOOL WINAPI DECLSPEC_HOTPATCH ReleaseCapture(void)
341 {
342     BOOL ret = set_capture_window( 0, 0, NULL );
343
344     /* Somebody may have missed some mouse movements */
345     if (ret) mouse_event( MOUSEEVENTF_MOVE, 0, 0, 0, 0 );
346
347     return ret;
348 }
349
350
351 /**********************************************************************
352  *              GetCapture (USER32.@)
353  */
354 HWND WINAPI GetCapture(void)
355 {
356     HWND ret = 0;
357
358     SERVER_START_REQ( get_thread_input )
359     {
360         req->tid = GetCurrentThreadId();
361         if (!wine_server_call_err( req )) ret = wine_server_ptr_handle( reply->capture );
362     }
363     SERVER_END_REQ;
364     return ret;
365 }
366
367
368 /**********************************************************************
369  *              GetAsyncKeyState (USER32.@)
370  *
371  *      Determine if a key is or was pressed.  retval has high-order
372  * bit set to 1 if currently pressed, low-order bit set to 1 if key has
373  * been pressed.
374  */
375 SHORT WINAPI DECLSPEC_HOTPATCH GetAsyncKeyState( INT key )
376 {
377     struct user_thread_info *thread_info = get_user_thread_info();
378     SHORT ret;
379
380     if (key < 0 || key >= 256) return 0;
381
382     if ((ret = USER_Driver->pGetAsyncKeyState( key )) == -1)
383     {
384         if (thread_info->key_state)
385         {
386             if (GetTickCount() - thread_info->key_state_time < 50)
387                 return (thread_info->key_state[key] & 0x80) ? 0x8000 : 0;
388         }
389         else thread_info->key_state = HeapAlloc( GetProcessHeap(), 0, 256 );
390
391         ret = 0;
392         SERVER_START_REQ( get_key_state )
393         {
394             req->tid = 0;
395             req->key = key;
396             if (thread_info->key_state) wine_server_set_reply( req, thread_info->key_state, 256 );
397             if (!wine_server_call( req ))
398             {
399                 if (reply->state & 0x40) ret |= 0x0001;
400                 if (reply->state & 0x80) ret |= 0x8000;
401                 thread_info->key_state_time = GetTickCount();
402             }
403         }
404         SERVER_END_REQ;
405     }
406     return ret;
407 }
408
409
410 /***********************************************************************
411  *              GetQueueStatus (USER32.@)
412  */
413 DWORD WINAPI GetQueueStatus( UINT flags )
414 {
415     DWORD ret = 0;
416
417     if (flags & ~(QS_ALLINPUT | QS_ALLPOSTMESSAGE | QS_SMRESULT))
418     {
419         SetLastError( ERROR_INVALID_FLAGS );
420         return 0;
421     }
422
423     /* check for pending X events */
424     USER_Driver->pMsgWaitForMultipleObjectsEx( 0, NULL, 0, flags, 0 );
425
426     SERVER_START_REQ( get_queue_status )
427     {
428         req->clear = 1;
429         wine_server_call( req );
430         ret = MAKELONG( reply->changed_bits & flags, reply->wake_bits & flags );
431     }
432     SERVER_END_REQ;
433     return ret;
434 }
435
436
437 /***********************************************************************
438  *              GetInputState   (USER32.@)
439  */
440 BOOL WINAPI GetInputState(void)
441 {
442     DWORD ret = 0;
443
444     /* check for pending X events */
445     USER_Driver->pMsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_INPUT, 0 );
446
447     SERVER_START_REQ( get_queue_status )
448     {
449         req->clear = 0;
450         wine_server_call( req );
451         ret = reply->wake_bits & (QS_KEY | QS_MOUSEBUTTON);
452     }
453     SERVER_END_REQ;
454     return ret;
455 }
456
457
458 /******************************************************************
459  *              GetLastInputInfo (USER32.@)
460  */
461 BOOL WINAPI GetLastInputInfo(PLASTINPUTINFO plii)
462 {
463     BOOL ret;
464
465     TRACE("%p\n", plii);
466
467     if (plii->cbSize != sizeof (*plii) )
468     {
469         SetLastError(ERROR_INVALID_PARAMETER);
470         return FALSE;
471     }
472
473     SERVER_START_REQ( get_last_input_time )
474     {
475         ret = !wine_server_call_err( req );
476         if (ret)
477             plii->dwTime = reply->time;
478     }
479     SERVER_END_REQ;
480     return ret;
481 }
482
483
484 /******************************************************************
485 *               GetRawInputDeviceList (USER32.@)
486 */
487 UINT WINAPI GetRawInputDeviceList(PRAWINPUTDEVICELIST pRawInputDeviceList, PUINT puiNumDevices, UINT cbSize)
488 {
489     FIXME("(pRawInputDeviceList=%p, puiNumDevices=%p, cbSize=%d) stub!\n", pRawInputDeviceList, puiNumDevices, cbSize);
490
491     if(pRawInputDeviceList)
492         memset(pRawInputDeviceList, 0, sizeof *pRawInputDeviceList);
493     *puiNumDevices = 0;
494     return 0;
495 }
496
497
498 /******************************************************************
499 *               RegisterRawInputDevices (USER32.@)
500 */
501 BOOL WINAPI DECLSPEC_HOTPATCH RegisterRawInputDevices(PRAWINPUTDEVICE pRawInputDevices, UINT uiNumDevices, UINT cbSize)
502 {
503     FIXME("(pRawInputDevices=%p, uiNumDevices=%d, cbSize=%d) stub!\n", pRawInputDevices, uiNumDevices, cbSize);
504
505     return TRUE;
506 }
507
508
509 /******************************************************************
510 *               GetRawInputData (USER32.@)
511 */
512 UINT WINAPI GetRawInputData(HRAWINPUT hRawInput, UINT uiCommand, LPVOID pData, PUINT pcbSize, UINT cbSizeHeader)
513 {
514     FIXME("(hRawInput=%p, uiCommand=%d, pData=%p, pcbSize=%p, cbSizeHeader=%d) stub!\n",
515             hRawInput, uiCommand, pData, pcbSize, cbSizeHeader);
516
517     return 0;
518 }
519
520
521 /******************************************************************
522 *               GetRawInputBuffer (USER32.@)
523 */
524 UINT WINAPI DECLSPEC_HOTPATCH GetRawInputBuffer(PRAWINPUT pData, PUINT pcbSize, UINT cbSizeHeader)
525 {
526     FIXME("(pData=%p, pcbSize=%p, cbSizeHeader=%d) stub!\n", pData, pcbSize, cbSizeHeader);
527
528     return 0;
529 }
530
531
532 /******************************************************************
533 *               GetRawInputDeviceInfoA (USER32.@)
534 */
535 UINT WINAPI GetRawInputDeviceInfoA(HANDLE hDevice, UINT uiCommand, LPVOID pData, PUINT pcbSize)
536 {
537     FIXME("(hDevice=%p, uiCommand=%d, pData=%p, pcbSize=%p) stub!\n", hDevice, uiCommand, pData, pcbSize);
538
539     return 0;
540 }
541
542
543 /******************************************************************
544 *               GetRawInputDeviceInfoW (USER32.@)
545 */
546 UINT WINAPI GetRawInputDeviceInfoW(HANDLE hDevice, UINT uiCommand, LPVOID pData, PUINT pcbSize)
547 {
548     FIXME("(hDevice=%p, uiCommand=%d, pData=%p, pcbSize=%p) stub!\n", hDevice, uiCommand, pData, pcbSize);
549
550     return 0;
551 }
552
553
554 /******************************************************************
555 *               GetRegisteredRawInputDevices (USER32.@)
556 */
557 UINT WINAPI GetRegisteredRawInputDevices(PRAWINPUTDEVICE pRawInputDevices, PUINT puiNumDevices, UINT cbSize)
558 {
559     FIXME("(pRawInputDevices=%p, puiNumDevices=%p, cbSize=%d) stub!\n", pRawInputDevices, puiNumDevices, cbSize);
560
561     return 0;
562 }
563
564
565 /******************************************************************
566 *               DefRawInputProc (USER32.@)
567 */
568 LRESULT WINAPI DefRawInputProc(PRAWINPUT *paRawInput, INT nInput, UINT cbSizeHeader)
569 {
570     FIXME("(paRawInput=%p, nInput=%d, cbSizeHeader=%d) stub!\n", *paRawInput, nInput, cbSizeHeader);
571
572     return 0;
573 }
574
575
576 /**********************************************************************
577  *              AttachThreadInput (USER32.@)
578  *
579  * Attaches the input processing mechanism of one thread to that of
580  * another thread.
581  */
582 BOOL WINAPI AttachThreadInput( DWORD from, DWORD to, BOOL attach )
583 {
584     BOOL ret;
585
586     SERVER_START_REQ( attach_thread_input )
587     {
588         req->tid_from = from;
589         req->tid_to   = to;
590         req->attach   = attach;
591         ret = !wine_server_call_err( req );
592     }
593     SERVER_END_REQ;
594     return ret;
595 }
596
597
598 /**********************************************************************
599  *              GetKeyState (USER32.@)
600  *
601  * An application calls the GetKeyState function in response to a
602  * keyboard-input message.  This function retrieves the state of the key
603  * at the time the input message was generated.
604  */
605 SHORT WINAPI DECLSPEC_HOTPATCH GetKeyState(INT vkey)
606 {
607     SHORT retval = 0;
608
609     SERVER_START_REQ( get_key_state )
610     {
611         req->tid = GetCurrentThreadId();
612         req->key = vkey;
613         if (!wine_server_call( req )) retval = (signed char)reply->state;
614     }
615     SERVER_END_REQ;
616     TRACE("key (0x%x) -> %x\n", vkey, retval);
617     return retval;
618 }
619
620
621 /**********************************************************************
622  *              GetKeyboardState (USER32.@)
623  */
624 BOOL WINAPI DECLSPEC_HOTPATCH GetKeyboardState( LPBYTE state )
625 {
626     BOOL ret;
627
628     TRACE("(%p)\n", state);
629
630     memset( state, 0, 256 );
631     SERVER_START_REQ( get_key_state )
632     {
633         req->tid = GetCurrentThreadId();
634         req->key = -1;
635         wine_server_set_reply( req, state, 256 );
636         ret = !wine_server_call_err( req );
637     }
638     SERVER_END_REQ;
639     return ret;
640 }
641
642
643 /**********************************************************************
644  *              SetKeyboardState (USER32.@)
645  */
646 BOOL WINAPI SetKeyboardState( LPBYTE state )
647 {
648     BOOL ret;
649
650     SERVER_START_REQ( set_key_state )
651     {
652         req->tid = GetCurrentThreadId();
653         wine_server_add_data( req, state, 256 );
654         ret = !wine_server_call_err( req );
655     }
656     SERVER_END_REQ;
657     return ret;
658 }
659
660
661 /**********************************************************************
662  *              VkKeyScanA (USER32.@)
663  *
664  * VkKeyScan translates an ANSI character to a virtual-key and shift code
665  * for the current keyboard.
666  * high-order byte yields :
667  *      0       Unshifted
668  *      1       Shift
669  *      2       Ctrl
670  *      3-5     Shift-key combinations that are not used for characters
671  *      6       Ctrl-Alt
672  *      7       Ctrl-Alt-Shift
673  *      I.e. :  Shift = 1, Ctrl = 2, Alt = 4.
674  * FIXME : works ok except for dead chars :
675  * VkKeyScan '^'(0x5e, 94) ... got keycode 00 ... returning 00
676  * VkKeyScan '`'(0x60, 96) ... got keycode 00 ... returning 00
677  */
678 SHORT WINAPI VkKeyScanA(CHAR cChar)
679 {
680     WCHAR wChar;
681
682     if (IsDBCSLeadByte(cChar)) return -1;
683
684     MultiByteToWideChar(CP_ACP, 0, &cChar, 1, &wChar, 1);
685     return VkKeyScanW(wChar);
686 }
687
688 /******************************************************************************
689  *              VkKeyScanW (USER32.@)
690  */
691 SHORT WINAPI VkKeyScanW(WCHAR cChar)
692 {
693     return VkKeyScanExW(cChar, GetKeyboardLayout(0));
694 }
695
696 /**********************************************************************
697  *              VkKeyScanExA (USER32.@)
698  */
699 WORD WINAPI VkKeyScanExA(CHAR cChar, HKL dwhkl)
700 {
701     WCHAR wChar;
702
703     if (IsDBCSLeadByte(cChar)) return -1;
704
705     MultiByteToWideChar(CP_ACP, 0, &cChar, 1, &wChar, 1);
706     return VkKeyScanExW(wChar, dwhkl);
707 }
708
709 /******************************************************************************
710  *              VkKeyScanExW (USER32.@)
711  */
712 WORD WINAPI VkKeyScanExW(WCHAR cChar, HKL dwhkl)
713 {
714     return USER_Driver->pVkKeyScanEx(cChar, dwhkl);
715 }
716
717 /**********************************************************************
718  *              OemKeyScan (USER32.@)
719  */
720 DWORD WINAPI OemKeyScan(WORD wOemChar)
721 {
722     return wOemChar;
723 }
724
725 /******************************************************************************
726  *              GetKeyboardType (USER32.@)
727  */
728 INT WINAPI GetKeyboardType(INT nTypeFlag)
729 {
730     TRACE_(keyboard)("(%d)\n", nTypeFlag);
731     switch(nTypeFlag)
732     {
733     case 0:      /* Keyboard type */
734         return 4;    /* AT-101 */
735     case 1:      /* Keyboard Subtype */
736         return 0;    /* There are no defined subtypes */
737     case 2:      /* Number of F-keys */
738         return 12;   /* We're doing an 101 for now, so return 12 F-keys */
739     default:
740         WARN_(keyboard)("Unknown type\n");
741         return 0;    /* The book says 0 here, so 0 */
742     }
743 }
744
745 /******************************************************************************
746  *              MapVirtualKeyA (USER32.@)
747  */
748 UINT WINAPI MapVirtualKeyA(UINT code, UINT maptype)
749 {
750     return MapVirtualKeyExA( code, maptype, GetKeyboardLayout(0) );
751 }
752
753 /******************************************************************************
754  *              MapVirtualKeyW (USER32.@)
755  */
756 UINT WINAPI MapVirtualKeyW(UINT code, UINT maptype)
757 {
758     return MapVirtualKeyExW(code, maptype, GetKeyboardLayout(0));
759 }
760
761 /******************************************************************************
762  *              MapVirtualKeyExA (USER32.@)
763  */
764 UINT WINAPI MapVirtualKeyExA(UINT code, UINT maptype, HKL hkl)
765 {
766     UINT ret;
767
768     ret = MapVirtualKeyExW( code, maptype, hkl );
769     if (maptype == MAPVK_VK_TO_CHAR)
770     {
771         BYTE ch = 0;
772         WCHAR wch = ret;
773
774         WideCharToMultiByte( CP_ACP, 0, &wch, 1, (LPSTR)&ch, 1, NULL, NULL );
775         ret = ch;
776     }
777     return ret;
778 }
779
780 /******************************************************************************
781  *              MapVirtualKeyExW (USER32.@)
782  */
783 UINT WINAPI MapVirtualKeyExW(UINT code, UINT maptype, HKL hkl)
784 {
785     TRACE_(keyboard)("(%X, %d, %p)\n", code, maptype, hkl);
786
787     return USER_Driver->pMapVirtualKeyEx(code, maptype, hkl);
788 }
789
790 /****************************************************************************
791  *              GetKBCodePage (USER32.@)
792  */
793 UINT WINAPI GetKBCodePage(void)
794 {
795     return GetOEMCP();
796 }
797
798 /***********************************************************************
799  *              GetKeyboardLayout (USER32.@)
800  *
801  *        - device handle for keyboard layout defaulted to
802  *          the language id. This is the way Windows default works.
803  *        - the thread identifier is also ignored.
804  */
805 HKL WINAPI GetKeyboardLayout(DWORD thread_id)
806 {
807     return USER_Driver->pGetKeyboardLayout(thread_id);
808 }
809
810 /****************************************************************************
811  *              GetKeyboardLayoutNameA (USER32.@)
812  */
813 BOOL WINAPI GetKeyboardLayoutNameA(LPSTR pszKLID)
814 {
815     WCHAR buf[KL_NAMELENGTH];
816
817     if (GetKeyboardLayoutNameW(buf))
818         return WideCharToMultiByte( CP_ACP, 0, buf, -1, pszKLID, KL_NAMELENGTH, NULL, NULL ) != 0;
819     return FALSE;
820 }
821
822 /****************************************************************************
823  *              GetKeyboardLayoutNameW (USER32.@)
824  */
825 BOOL WINAPI GetKeyboardLayoutNameW(LPWSTR pwszKLID)
826 {
827     return USER_Driver->pGetKeyboardLayoutName(pwszKLID);
828 }
829
830 /****************************************************************************
831  *              GetKeyNameTextA (USER32.@)
832  */
833 INT WINAPI GetKeyNameTextA(LONG lParam, LPSTR lpBuffer, INT nSize)
834 {
835     WCHAR buf[256];
836     INT ret;
837
838     if (!GetKeyNameTextW(lParam, buf, 256))
839     {
840         lpBuffer[0] = 0;
841         return 0;
842     }
843     ret = WideCharToMultiByte(CP_ACP, 0, buf, -1, lpBuffer, nSize, NULL, NULL);
844     if (!ret && nSize)
845     {
846         ret = nSize - 1;
847         lpBuffer[ret] = 0;
848     }
849     return ret;
850 }
851
852 /****************************************************************************
853  *              GetKeyNameTextW (USER32.@)
854  */
855 INT WINAPI GetKeyNameTextW(LONG lParam, LPWSTR lpBuffer, INT nSize)
856 {
857     return USER_Driver->pGetKeyNameText( lParam, lpBuffer, nSize );
858 }
859
860 /****************************************************************************
861  *              ToUnicode (USER32.@)
862  */
863 INT WINAPI ToUnicode(UINT virtKey, UINT scanCode, const BYTE *lpKeyState,
864                      LPWSTR lpwStr, int size, UINT flags)
865 {
866     return ToUnicodeEx(virtKey, scanCode, lpKeyState, lpwStr, size, flags, GetKeyboardLayout(0));
867 }
868
869 /****************************************************************************
870  *              ToUnicodeEx (USER32.@)
871  */
872 INT WINAPI ToUnicodeEx(UINT virtKey, UINT scanCode, const BYTE *lpKeyState,
873                        LPWSTR lpwStr, int size, UINT flags, HKL hkl)
874 {
875     return USER_Driver->pToUnicodeEx(virtKey, scanCode, lpKeyState, lpwStr, size, flags, hkl);
876 }
877
878 /****************************************************************************
879  *              ToAscii (USER32.@)
880  */
881 INT WINAPI ToAscii( UINT virtKey, UINT scanCode, const BYTE *lpKeyState,
882                     LPWORD lpChar, UINT flags )
883 {
884     return ToAsciiEx(virtKey, scanCode, lpKeyState, lpChar, flags, GetKeyboardLayout(0));
885 }
886
887 /****************************************************************************
888  *              ToAsciiEx (USER32.@)
889  */
890 INT WINAPI ToAsciiEx( UINT virtKey, UINT scanCode, const BYTE *lpKeyState,
891                       LPWORD lpChar, UINT flags, HKL dwhkl )
892 {
893     WCHAR uni_chars[2];
894     INT ret, n_ret;
895
896     ret = ToUnicodeEx(virtKey, scanCode, lpKeyState, uni_chars, 2, flags, dwhkl);
897     if (ret < 0) n_ret = 1; /* FIXME: make ToUnicode return 2 for dead chars */
898     else n_ret = ret;
899     WideCharToMultiByte(CP_ACP, 0, uni_chars, n_ret, (LPSTR)lpChar, 2, NULL, NULL);
900     return ret;
901 }
902
903 /**********************************************************************
904  *              ActivateKeyboardLayout (USER32.@)
905  */
906 HKL WINAPI ActivateKeyboardLayout(HKL hLayout, UINT flags)
907 {
908     TRACE_(keyboard)("(%p, %d)\n", hLayout, flags);
909
910     return USER_Driver->pActivateKeyboardLayout(hLayout, flags);
911 }
912
913 /**********************************************************************
914  *              BlockInput (USER32.@)
915  */
916 BOOL WINAPI BlockInput(BOOL fBlockIt)
917 {
918     FIXME_(keyboard)("(%d): stub\n", fBlockIt);
919     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
920
921     return FALSE;
922 }
923
924 /***********************************************************************
925  *              GetKeyboardLayoutList (USER32.@)
926  *
927  * Return number of values available if either input parm is
928  *  0, per MS documentation.
929  */
930 UINT WINAPI GetKeyboardLayoutList(INT nBuff, HKL *layouts)
931 {
932     HKEY hKeyKeyboard;
933     DWORD rc;
934     INT count = 0;
935     ULONG_PTR baselayout;
936     LANGID langid;
937     static const WCHAR szKeyboardReg[] = {'S','y','s','t','e','m','\\','C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\','C','o','n','t','r','o','l','\\','K','e','y','b','o','a','r','d',' ','L','a','y','o','u','t','s',0};
938
939     TRACE_(keyboard)("(%d,%p)\n",nBuff,layouts);
940
941     baselayout = GetUserDefaultLCID();
942     langid = PRIMARYLANGID(LANGIDFROMLCID(baselayout));
943     if (langid == LANG_CHINESE || langid == LANG_JAPANESE || langid == LANG_KOREAN)
944         baselayout |= 0xe001 << 16; /* IME */
945     else
946         baselayout |= baselayout << 16;
947
948     /* Enumerate the Registry */
949     rc = RegOpenKeyW(HKEY_LOCAL_MACHINE,szKeyboardReg,&hKeyKeyboard);
950     if (rc == ERROR_SUCCESS)
951     {
952         do {
953             WCHAR szKeyName[9];
954             HKL layout;
955             rc = RegEnumKeyW(hKeyKeyboard, count, szKeyName, 9);
956             if (rc == ERROR_SUCCESS)
957             {
958                 layout = (HKL)strtoulW(szKeyName,NULL,16);
959                 if (baselayout != 0 && layout == (HKL)baselayout)
960                     baselayout = 0; /* found in the registry do not add again */
961                 if (nBuff && layouts)
962                 {
963                     if (count >= nBuff ) break;
964                     layouts[count] = layout;
965                 }
966                 count ++;
967             }
968         } while (rc == ERROR_SUCCESS);
969         RegCloseKey(hKeyKeyboard);
970     }
971
972     /* make sure our base layout is on the list */
973     if (baselayout != 0)
974     {
975         if (nBuff && layouts)
976         {
977             if (count < nBuff)
978             {
979                 layouts[count] = (HKL)baselayout;
980                 count++;
981             }
982         }
983         else
984             count++;
985     }
986
987     return count;
988 }
989
990
991 /***********************************************************************
992  *              RegisterHotKey (USER32.@)
993  */
994 BOOL WINAPI RegisterHotKey(HWND hwnd,INT id,UINT modifiers,UINT vk)
995 {
996     BOOL ret;
997     int replaced=0;
998
999     TRACE_(keyboard)("(%p,%d,0x%08x,%X)\n",hwnd,id,modifiers,vk);
1000
1001     if ((hwnd == NULL || WIN_IsCurrentThread(hwnd)) &&
1002         !USER_Driver->pRegisterHotKey(hwnd, modifiers, vk))
1003         return FALSE;
1004
1005     SERVER_START_REQ( register_hotkey )
1006     {
1007         req->window = wine_server_user_handle( hwnd );
1008         req->id = id;
1009         req->flags = modifiers;
1010         req->vkey = vk;
1011         if ((ret = !wine_server_call_err( req )))
1012         {
1013             replaced = reply->replaced;
1014             modifiers = reply->flags;
1015             vk = reply->vkey;
1016         }
1017     }
1018     SERVER_END_REQ;
1019
1020     if (ret && replaced)
1021         USER_Driver->pUnregisterHotKey(hwnd, modifiers, vk);
1022
1023     return ret;
1024 }
1025
1026 /***********************************************************************
1027  *              UnregisterHotKey (USER32.@)
1028  */
1029 BOOL WINAPI UnregisterHotKey(HWND hwnd,INT id)
1030 {
1031     BOOL ret;
1032     UINT modifiers, vk;
1033
1034     TRACE_(keyboard)("(%p,%d)\n",hwnd,id);
1035
1036     SERVER_START_REQ( unregister_hotkey )
1037     {
1038         req->window = wine_server_user_handle( hwnd );
1039         req->id = id;
1040         if ((ret = !wine_server_call_err( req )))
1041         {
1042             modifiers = reply->flags;
1043             vk = reply->vkey;
1044         }
1045     }
1046     SERVER_END_REQ;
1047
1048     if (ret)
1049         USER_Driver->pUnregisterHotKey(hwnd, modifiers, vk);
1050
1051     return ret;
1052 }
1053
1054 /***********************************************************************
1055  *              LoadKeyboardLayoutW (USER32.@)
1056  */
1057 HKL WINAPI LoadKeyboardLayoutW(LPCWSTR pwszKLID, UINT Flags)
1058 {
1059     TRACE_(keyboard)("(%s, %d)\n", debugstr_w(pwszKLID), Flags);
1060
1061     return USER_Driver->pLoadKeyboardLayout(pwszKLID, Flags);
1062 }
1063
1064 /***********************************************************************
1065  *              LoadKeyboardLayoutA (USER32.@)
1066  */
1067 HKL WINAPI LoadKeyboardLayoutA(LPCSTR pwszKLID, UINT Flags)
1068 {
1069     HKL ret;
1070     UNICODE_STRING pwszKLIDW;
1071
1072     if (pwszKLID) RtlCreateUnicodeStringFromAsciiz(&pwszKLIDW, pwszKLID);
1073     else pwszKLIDW.Buffer = NULL;
1074
1075     ret = LoadKeyboardLayoutW(pwszKLIDW.Buffer, Flags);
1076     RtlFreeUnicodeString(&pwszKLIDW);
1077     return ret;
1078 }
1079
1080
1081 /***********************************************************************
1082  *              UnloadKeyboardLayout (USER32.@)
1083  */
1084 BOOL WINAPI UnloadKeyboardLayout(HKL hkl)
1085 {
1086     TRACE_(keyboard)("(%p)\n", hkl);
1087
1088     return USER_Driver->pUnloadKeyboardLayout(hkl);
1089 }
1090
1091 typedef struct __TRACKINGLIST {
1092     TRACKMOUSEEVENT tme;
1093     POINT pos; /* center of hover rectangle */
1094 } _TRACKINGLIST;
1095
1096 /* FIXME: move tracking stuff into a per thread data */
1097 static _TRACKINGLIST tracking_info;
1098 static UINT_PTR timer;
1099
1100 static void check_mouse_leave(HWND hwnd, int hittest)
1101 {
1102     if (tracking_info.tme.hwndTrack != hwnd)
1103     {
1104         if (tracking_info.tme.dwFlags & TME_NONCLIENT)
1105             PostMessageW(tracking_info.tme.hwndTrack, WM_NCMOUSELEAVE, 0, 0);
1106         else
1107             PostMessageW(tracking_info.tme.hwndTrack, WM_MOUSELEAVE, 0, 0);
1108
1109         /* remove the TME_LEAVE flag */
1110         tracking_info.tme.dwFlags &= ~TME_LEAVE;
1111     }
1112     else
1113     {
1114         if (hittest == HTCLIENT)
1115         {
1116             if (tracking_info.tme.dwFlags & TME_NONCLIENT)
1117             {
1118                 PostMessageW(tracking_info.tme.hwndTrack, WM_NCMOUSELEAVE, 0, 0);
1119                 /* remove the TME_LEAVE flag */
1120                 tracking_info.tme.dwFlags &= ~TME_LEAVE;
1121             }
1122         }
1123         else
1124         {
1125             if (!(tracking_info.tme.dwFlags & TME_NONCLIENT))
1126             {
1127                 PostMessageW(tracking_info.tme.hwndTrack, WM_MOUSELEAVE, 0, 0);
1128                 /* remove the TME_LEAVE flag */
1129                 tracking_info.tme.dwFlags &= ~TME_LEAVE;
1130             }
1131         }
1132     }
1133 }
1134
1135 static void CALLBACK TrackMouseEventProc(HWND hwnd, UINT uMsg, UINT_PTR idEvent,
1136                                          DWORD dwTime)
1137 {
1138     POINT pos;
1139     INT hoverwidth = 0, hoverheight = 0, hittest;
1140
1141     TRACE("hwnd %p, msg %04x, id %04lx, time %u\n", hwnd, uMsg, idEvent, dwTime);
1142
1143     GetCursorPos(&pos);
1144     hwnd = WINPOS_WindowFromPoint(hwnd, pos, &hittest);
1145
1146     TRACE("point %s hwnd %p hittest %d\n", wine_dbgstr_point(&pos), hwnd, hittest);
1147
1148     SystemParametersInfoW(SPI_GETMOUSEHOVERWIDTH, 0, &hoverwidth, 0);
1149     SystemParametersInfoW(SPI_GETMOUSEHOVERHEIGHT, 0, &hoverheight, 0);
1150
1151     TRACE("tracked pos %s, current pos %s, hover width %d, hover height %d\n",
1152            wine_dbgstr_point(&tracking_info.pos), wine_dbgstr_point(&pos),
1153            hoverwidth, hoverheight);
1154
1155     /* see if this tracking event is looking for TME_LEAVE and that the */
1156     /* mouse has left the window */
1157     if (tracking_info.tme.dwFlags & TME_LEAVE)
1158     {
1159         check_mouse_leave(hwnd, hittest);
1160     }
1161
1162     if (tracking_info.tme.hwndTrack != hwnd)
1163     {
1164         /* mouse is gone, stop tracking mouse hover */
1165         tracking_info.tme.dwFlags &= ~TME_HOVER;
1166     }
1167
1168     /* see if we are tracking hovering for this hwnd */
1169     if (tracking_info.tme.dwFlags & TME_HOVER)
1170     {
1171         /* has the cursor moved outside the rectangle centered around pos? */
1172         if ((abs(pos.x - tracking_info.pos.x) > (hoverwidth / 2)) ||
1173             (abs(pos.y - tracking_info.pos.y) > (hoverheight / 2)))
1174         {
1175             /* record this new position as the current position */
1176             tracking_info.pos = pos;
1177         }
1178         else
1179         {
1180             if (hittest == HTCLIENT)
1181             {
1182                 ScreenToClient(hwnd, &pos);
1183                 TRACE("client cursor pos %s\n", wine_dbgstr_point(&pos));
1184
1185                 PostMessageW(tracking_info.tme.hwndTrack, WM_MOUSEHOVER,
1186                              get_key_state(), MAKELPARAM( pos.x, pos.y ));
1187             }
1188             else
1189             {
1190                 if (tracking_info.tme.dwFlags & TME_NONCLIENT)
1191                     PostMessageW(tracking_info.tme.hwndTrack, WM_NCMOUSEHOVER,
1192                                  hittest, MAKELPARAM( pos.x, pos.y ));
1193             }
1194
1195             /* stop tracking mouse hover */
1196             tracking_info.tme.dwFlags &= ~TME_HOVER;
1197         }
1198     }
1199
1200     /* stop the timer if the tracking list is empty */
1201     if (!(tracking_info.tme.dwFlags & (TME_HOVER | TME_LEAVE)))
1202     {
1203         KillSystemTimer(tracking_info.tme.hwndTrack, timer);
1204         timer = 0;
1205         tracking_info.tme.hwndTrack = 0;
1206         tracking_info.tme.dwFlags = 0;
1207         tracking_info.tme.dwHoverTime = 0;
1208     }
1209 }
1210
1211
1212 /***********************************************************************
1213  * TrackMouseEvent [USER32]
1214  *
1215  * Requests notification of mouse events
1216  *
1217  * During mouse tracking WM_MOUSEHOVER or WM_MOUSELEAVE events are posted
1218  * to the hwnd specified in the ptme structure.  After the event message
1219  * is posted to the hwnd, the entry in the queue is removed.
1220  *
1221  * If the current hwnd isn't ptme->hwndTrack the TME_HOVER flag is completely
1222  * ignored. The TME_LEAVE flag results in a WM_MOUSELEAVE message being posted
1223  * immediately and the TME_LEAVE flag being ignored.
1224  *
1225  * PARAMS
1226  *     ptme [I,O] pointer to TRACKMOUSEEVENT information structure.
1227  *
1228  * RETURNS
1229  *     Success: non-zero
1230  *     Failure: zero
1231  *
1232  */
1233
1234 BOOL WINAPI
1235 TrackMouseEvent (TRACKMOUSEEVENT *ptme)
1236 {
1237     HWND hwnd;
1238     POINT pos;
1239     DWORD hover_time;
1240     INT hittest;
1241
1242     TRACE("%x, %x, %p, %u\n", ptme->cbSize, ptme->dwFlags, ptme->hwndTrack, ptme->dwHoverTime);
1243
1244     if (ptme->cbSize != sizeof(TRACKMOUSEEVENT)) {
1245         WARN("wrong TRACKMOUSEEVENT size from app\n");
1246         SetLastError(ERROR_INVALID_PARAMETER);
1247         return FALSE;
1248     }
1249
1250     /* fill the TRACKMOUSEEVENT struct with the current tracking for the given hwnd */
1251     if (ptme->dwFlags & TME_QUERY )
1252     {
1253         *ptme = tracking_info.tme;
1254         /* set cbSize in the case it's not initialized yet */
1255         ptme->cbSize = sizeof(TRACKMOUSEEVENT);
1256
1257         return TRUE; /* return here, TME_QUERY is retrieving information */
1258     }
1259
1260     if (!IsWindow(ptme->hwndTrack))
1261     {
1262         SetLastError(ERROR_INVALID_WINDOW_HANDLE);
1263         return FALSE;
1264     }
1265
1266     hover_time = (ptme->dwFlags & TME_HOVER) ? ptme->dwHoverTime : HOVER_DEFAULT;
1267
1268     /* if HOVER_DEFAULT was specified replace this with the system's current value.
1269      * TME_LEAVE doesn't need to specify hover time so use default */
1270     if (hover_time == HOVER_DEFAULT || hover_time == 0)
1271         SystemParametersInfoW(SPI_GETMOUSEHOVERTIME, 0, &hover_time, 0);
1272
1273     GetCursorPos(&pos);
1274     hwnd = WINPOS_WindowFromPoint(ptme->hwndTrack, pos, &hittest);
1275     TRACE("point %s hwnd %p hittest %d\n", wine_dbgstr_point(&pos), hwnd, hittest);
1276
1277     if (ptme->dwFlags & ~(TME_CANCEL | TME_HOVER | TME_LEAVE | TME_NONCLIENT))
1278         FIXME("Unknown flag(s) %08x\n", ptme->dwFlags & ~(TME_CANCEL | TME_HOVER | TME_LEAVE | TME_NONCLIENT));
1279
1280     if (ptme->dwFlags & TME_CANCEL)
1281     {
1282         if (tracking_info.tme.hwndTrack == ptme->hwndTrack)
1283         {
1284             tracking_info.tme.dwFlags &= ~(ptme->dwFlags & ~TME_CANCEL);
1285
1286             /* if we aren't tracking on hover or leave remove this entry */
1287             if (!(tracking_info.tme.dwFlags & (TME_HOVER | TME_LEAVE)))
1288             {
1289                 KillSystemTimer(tracking_info.tme.hwndTrack, timer);
1290                 timer = 0;
1291                 tracking_info.tme.hwndTrack = 0;
1292                 tracking_info.tme.dwFlags = 0;
1293                 tracking_info.tme.dwHoverTime = 0;
1294             }
1295         }
1296     } else {
1297         /* In our implementation it's possible that another window will receive a
1298          * WM_MOUSEMOVE and call TrackMouseEvent before TrackMouseEventProc is
1299          * called. In such a situation post the WM_MOUSELEAVE now */
1300         if (tracking_info.tme.dwFlags & TME_LEAVE && tracking_info.tme.hwndTrack != NULL)
1301             check_mouse_leave(hwnd, hittest);
1302
1303         if (timer)
1304         {
1305             KillSystemTimer(tracking_info.tme.hwndTrack, timer);
1306             timer = 0;
1307             tracking_info.tme.hwndTrack = 0;
1308             tracking_info.tme.dwFlags = 0;
1309             tracking_info.tme.dwHoverTime = 0;
1310         }
1311
1312         if (ptme->hwndTrack == hwnd)
1313         {
1314             /* Adding new mouse event to the tracking list */
1315             tracking_info.tme = *ptme;
1316             tracking_info.tme.dwHoverTime = hover_time;
1317
1318             /* Initialize HoverInfo variables even if not hover tracking */
1319             tracking_info.pos = pos;
1320
1321             timer = SetSystemTimer(tracking_info.tme.hwndTrack, (UINT_PTR)&tracking_info.tme, hover_time, TrackMouseEventProc);
1322         }
1323     }
1324
1325     return TRUE;
1326 }
1327
1328 /***********************************************************************
1329  * GetMouseMovePointsEx [USER32]
1330  *
1331  * RETURNS
1332  *     Success: count of point set in the buffer
1333  *     Failure: -1
1334  */
1335 int WINAPI GetMouseMovePointsEx(UINT size, LPMOUSEMOVEPOINT ptin, LPMOUSEMOVEPOINT ptout, int count, DWORD res) {
1336
1337     if((size != sizeof(MOUSEMOVEPOINT)) || (count < 0) || (count > 64)) {
1338         SetLastError(ERROR_INVALID_PARAMETER);
1339         return -1;
1340     }
1341
1342     if(!ptin || (!ptout && count)) {
1343         SetLastError(ERROR_NOACCESS);
1344         return -1;
1345     }
1346
1347     FIXME("(%d %p %p %d %d) stub\n", size, ptin, ptout, count, res);
1348
1349     SetLastError(ERROR_POINT_NOT_FOUND);
1350     return -1;
1351 }