dinput: Use bitwise NOT not logical NOT.
[wine/wine-kai.git] / dlls / user32 / wnd16.c
blob0b0d0c18755a4b36526326c8f9aa87cff93fcd2e
1 /*
2 * 16-bit windowing functions
4 * Copyright 2001 Alexandre Julliard
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.
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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/winuser16.h"
22 #include "wownt32.h"
23 #include "win.h"
24 #include "user_private.h"
26 /* handle <--> handle16 conversions */
27 #define HANDLE_16(h32) (LOWORD(h32))
28 #define HANDLE_32(h16) ((HANDLE)(ULONG_PTR)(h16))
30 static HWND16 hwndSysModal;
32 struct wnd_enum_info
34 WNDENUMPROC16 proc;
35 LPARAM param;
38 /* callback for 16-bit window enumeration functions */
39 static BOOL CALLBACK wnd_enum_callback( HWND hwnd, LPARAM param )
41 const struct wnd_enum_info *info = (struct wnd_enum_info *)param;
42 WORD args[3];
43 DWORD ret;
45 args[2] = HWND_16(hwnd);
46 args[1] = HIWORD(info->param);
47 args[0] = LOWORD(info->param);
48 WOWCallback16Ex( (DWORD)info->proc, WCB16_PASCAL, sizeof(args), args, &ret );
49 return LOWORD(ret);
52 /* convert insert after window handle to 32-bit */
53 static inline HWND full_insert_after_hwnd( HWND16 hwnd )
55 HWND ret = WIN_Handle32( hwnd );
56 if (ret == (HWND)0xffff) ret = HWND_TOPMOST;
57 return ret;
60 /**************************************************************************
61 * MessageBox (USER.1)
63 INT16 WINAPI MessageBox16( HWND16 hwnd, LPCSTR text, LPCSTR title, UINT16 type )
65 return MessageBoxA( WIN_Handle32(hwnd), text, title, type );
69 /***********************************************************************
70 * SetTimer (USER.10)
72 UINT16 WINAPI SetTimer16( HWND16 hwnd, UINT16 id, UINT16 timeout, TIMERPROC16 proc )
74 TIMERPROC proc32 = (TIMERPROC)WINPROC_AllocProc16( (WNDPROC16)proc );
75 return SetTimer( WIN_Handle32(hwnd), id, timeout, proc32 );
79 /***********************************************************************
80 * SetSystemTimer (USER.11)
82 UINT16 WINAPI SetSystemTimer16( HWND16 hwnd, UINT16 id, UINT16 timeout, TIMERPROC16 proc )
84 TIMERPROC proc32 = (TIMERPROC)WINPROC_AllocProc16( (WNDPROC16)proc );
85 return SetSystemTimer( WIN_Handle32(hwnd), id, timeout, proc32 );
89 /**************************************************************************
90 * KillTimer (USER.12)
92 BOOL16 WINAPI KillTimer16( HWND16 hwnd, UINT16 id )
94 return KillTimer( WIN_Handle32(hwnd), id );
98 /**************************************************************************
99 * SetCapture (USER.18)
101 HWND16 WINAPI SetCapture16( HWND16 hwnd )
103 return HWND_16( SetCapture( WIN_Handle32(hwnd) ));
107 /**************************************************************************
108 * ReleaseCapture (USER.19)
110 BOOL16 WINAPI ReleaseCapture16(void)
112 return ReleaseCapture();
116 /**************************************************************************
117 * SetFocus (USER.22)
119 HWND16 WINAPI SetFocus16( HWND16 hwnd )
121 return HWND_16( SetFocus( WIN_Handle32(hwnd) ));
125 /**************************************************************************
126 * GetFocus (USER.23)
128 HWND16 WINAPI GetFocus16(void)
130 return HWND_16( GetFocus() );
134 /**************************************************************************
135 * RemoveProp (USER.24)
137 HANDLE16 WINAPI RemoveProp16( HWND16 hwnd, LPCSTR str )
139 return HANDLE_16(RemovePropA( WIN_Handle32(hwnd), str ));
143 /**************************************************************************
144 * GetProp (USER.25)
146 HANDLE16 WINAPI GetProp16( HWND16 hwnd, LPCSTR str )
148 return HANDLE_16(GetPropA( WIN_Handle32(hwnd), str ));
152 /**************************************************************************
153 * SetProp (USER.26)
155 BOOL16 WINAPI SetProp16( HWND16 hwnd, LPCSTR str, HANDLE16 handle )
157 return SetPropA( WIN_Handle32(hwnd), str, HANDLE_32(handle) );
161 /**************************************************************************
162 * ClientToScreen (USER.28)
164 void WINAPI ClientToScreen16( HWND16 hwnd, LPPOINT16 lppnt )
166 MapWindowPoints16( hwnd, 0, lppnt, 1 );
170 /**************************************************************************
171 * ScreenToClient (USER.29)
173 void WINAPI ScreenToClient16( HWND16 hwnd, LPPOINT16 lppnt )
175 MapWindowPoints16( 0, hwnd, lppnt, 1 );
179 /**************************************************************************
180 * WindowFromPoint (USER.30)
182 HWND16 WINAPI WindowFromPoint16( POINT16 pt )
184 POINT pt32;
186 pt32.x = pt.x;
187 pt32.y = pt.y;
188 return HWND_16( WindowFromPoint( pt32 ) );
192 /**************************************************************************
193 * IsIconic (USER.31)
195 BOOL16 WINAPI IsIconic16(HWND16 hwnd)
197 return IsIconic( WIN_Handle32(hwnd) );
201 /**************************************************************************
202 * GetWindowRect (USER.32)
204 void WINAPI GetWindowRect16( HWND16 hwnd, LPRECT16 rect )
206 RECT rect32;
208 GetWindowRect( WIN_Handle32(hwnd), &rect32 );
209 rect->left = rect32.left;
210 rect->top = rect32.top;
211 rect->right = rect32.right;
212 rect->bottom = rect32.bottom;
216 /**************************************************************************
217 * GetClientRect (USER.33)
219 void WINAPI GetClientRect16( HWND16 hwnd, LPRECT16 rect )
221 RECT rect32;
223 GetClientRect( WIN_Handle32(hwnd), &rect32 );
224 rect->left = rect32.left;
225 rect->top = rect32.top;
226 rect->right = rect32.right;
227 rect->bottom = rect32.bottom;
231 /**************************************************************************
232 * EnableWindow (USER.34)
234 BOOL16 WINAPI EnableWindow16( HWND16 hwnd, BOOL16 enable )
236 return EnableWindow( WIN_Handle32(hwnd), enable );
240 /**************************************************************************
241 * IsWindowEnabled (USER.35)
243 BOOL16 WINAPI IsWindowEnabled16(HWND16 hwnd)
245 return IsWindowEnabled( WIN_Handle32(hwnd) );
249 /**************************************************************************
250 * GetWindowText (USER.36)
252 INT16 WINAPI GetWindowText16( HWND16 hwnd, SEGPTR lpString, INT16 nMaxCount )
254 return SendMessage16( hwnd, WM_GETTEXT, nMaxCount, lpString );
258 /**************************************************************************
259 * SetWindowText (USER.37)
261 BOOL16 WINAPI SetWindowText16( HWND16 hwnd, SEGPTR lpString )
263 return SendMessage16( hwnd, WM_SETTEXT, 0, (LPARAM)lpString );
267 /**************************************************************************
268 * GetWindowTextLength (USER.38)
270 INT16 WINAPI GetWindowTextLength16( HWND16 hwnd )
272 return SendMessage16( hwnd, WM_GETTEXTLENGTH, 0, 0 );
276 /***********************************************************************
277 * BeginPaint (USER.39)
279 HDC16 WINAPI BeginPaint16( HWND16 hwnd, LPPAINTSTRUCT16 lps )
281 PAINTSTRUCT ps;
283 BeginPaint( WIN_Handle32(hwnd), &ps );
284 lps->hdc = HDC_16(ps.hdc);
285 lps->fErase = ps.fErase;
286 lps->rcPaint.top = ps.rcPaint.top;
287 lps->rcPaint.left = ps.rcPaint.left;
288 lps->rcPaint.right = ps.rcPaint.right;
289 lps->rcPaint.bottom = ps.rcPaint.bottom;
290 lps->fRestore = ps.fRestore;
291 lps->fIncUpdate = ps.fIncUpdate;
292 return lps->hdc;
296 /***********************************************************************
297 * EndPaint (USER.40)
299 BOOL16 WINAPI EndPaint16( HWND16 hwnd, const PAINTSTRUCT16* lps )
301 PAINTSTRUCT ps;
303 ps.hdc = HDC_32(lps->hdc);
304 return EndPaint( WIN_Handle32(hwnd), &ps );
308 /**************************************************************************
309 * ShowWindow (USER.42)
311 BOOL16 WINAPI ShowWindow16( HWND16 hwnd, INT16 cmd )
313 return ShowWindow( WIN_Handle32(hwnd), cmd );
317 /**************************************************************************
318 * CloseWindow (USER.43)
320 BOOL16 WINAPI CloseWindow16( HWND16 hwnd )
322 return CloseWindow( WIN_Handle32(hwnd) );
326 /**************************************************************************
327 * OpenIcon (USER.44)
329 BOOL16 WINAPI OpenIcon16( HWND16 hwnd )
331 return OpenIcon( WIN_Handle32(hwnd) );
335 /**************************************************************************
336 * BringWindowToTop (USER.45)
338 BOOL16 WINAPI BringWindowToTop16( HWND16 hwnd )
340 return BringWindowToTop( WIN_Handle32(hwnd) );
344 /**************************************************************************
345 * GetParent (USER.46)
347 HWND16 WINAPI GetParent16( HWND16 hwnd )
349 return HWND_16( GetParent( WIN_Handle32(hwnd) ));
353 /**************************************************************************
354 * IsWindow (USER.47)
356 BOOL16 WINAPI IsWindow16( HWND16 hwnd )
358 STACK16FRAME *frame = MapSL( (SEGPTR)NtCurrentTeb()->WOW32Reserved );
359 frame->es = USER_HeapSel;
360 /* don't use WIN_Handle32 here, we don't care about the full handle */
361 return IsWindow( HWND_32(hwnd) );
365 /**************************************************************************
366 * IsChild (USER.48)
368 BOOL16 WINAPI IsChild16( HWND16 parent, HWND16 child )
370 return IsChild( WIN_Handle32(parent), WIN_Handle32(child) );
374 /**************************************************************************
375 * IsWindowVisible (USER.49)
377 BOOL16 WINAPI IsWindowVisible16( HWND16 hwnd )
379 return IsWindowVisible( WIN_Handle32(hwnd) );
383 /**************************************************************************
384 * FindWindow (USER.50)
386 HWND16 WINAPI FindWindow16( LPCSTR className, LPCSTR title )
388 return HWND_16( FindWindowA( className, title ));
392 /**************************************************************************
393 * DestroyWindow (USER.53)
395 BOOL16 WINAPI DestroyWindow16( HWND16 hwnd )
397 return DestroyWindow( WIN_Handle32(hwnd) );
401 /*******************************************************************
402 * EnumWindows (USER.54)
404 BOOL16 WINAPI EnumWindows16( WNDENUMPROC16 func, LPARAM lParam )
406 struct wnd_enum_info info;
408 info.proc = func;
409 info.param = lParam;
410 return EnumWindows( wnd_enum_callback, (LPARAM)&info );
414 /**********************************************************************
415 * EnumChildWindows (USER.55)
417 BOOL16 WINAPI EnumChildWindows16( HWND16 parent, WNDENUMPROC16 func, LPARAM lParam )
419 struct wnd_enum_info info;
421 info.proc = func;
422 info.param = lParam;
423 return EnumChildWindows( WIN_Handle32(parent), wnd_enum_callback, (LPARAM)&info );
427 /**************************************************************************
428 * MoveWindow (USER.56)
430 BOOL16 WINAPI MoveWindow16( HWND16 hwnd, INT16 x, INT16 y, INT16 cx, INT16 cy, BOOL16 repaint )
432 return MoveWindow( WIN_Handle32(hwnd), x, y, cx, cy, repaint );
436 /***********************************************************************
437 * RegisterClass (USER.57)
439 ATOM WINAPI RegisterClass16( const WNDCLASS16 *wc )
441 WNDCLASSEX16 wcex;
443 wcex.cbSize = sizeof(wcex);
444 wcex.style = wc->style;
445 wcex.lpfnWndProc = wc->lpfnWndProc;
446 wcex.cbClsExtra = wc->cbClsExtra;
447 wcex.cbWndExtra = wc->cbWndExtra;
448 wcex.hInstance = wc->hInstance;
449 wcex.hIcon = wc->hIcon;
450 wcex.hCursor = wc->hCursor;
451 wcex.hbrBackground = wc->hbrBackground;
452 wcex.lpszMenuName = wc->lpszMenuName;
453 wcex.lpszClassName = wc->lpszClassName;
454 wcex.hIconSm = 0;
455 return RegisterClassEx16( &wcex );
459 /**************************************************************************
460 * GetClassName (USER.58)
462 INT16 WINAPI GetClassName16( HWND16 hwnd, LPSTR buffer, INT16 count )
464 return GetClassNameA( WIN_Handle32(hwnd), buffer, count );
468 /**************************************************************************
469 * SetActiveWindow (USER.59)
471 HWND16 WINAPI SetActiveWindow16( HWND16 hwnd )
473 return HWND_16( SetActiveWindow( WIN_Handle32(hwnd) ));
477 /**************************************************************************
478 * GetActiveWindow (USER.60)
480 HWND16 WINAPI GetActiveWindow16(void)
482 return HWND_16( GetActiveWindow() );
486 /**************************************************************************
487 * ScrollWindow (USER.61)
489 void WINAPI ScrollWindow16( HWND16 hwnd, INT16 dx, INT16 dy, const RECT16 *rect,
490 const RECT16 *clipRect )
492 RECT rect32, clipRect32;
494 if (rect)
496 rect32.left = rect->left;
497 rect32.top = rect->top;
498 rect32.right = rect->right;
499 rect32.bottom = rect->bottom;
501 if (clipRect)
503 clipRect32.left = clipRect->left;
504 clipRect32.top = clipRect->top;
505 clipRect32.right = clipRect->right;
506 clipRect32.bottom = clipRect->bottom;
508 ScrollWindow( WIN_Handle32(hwnd), dx, dy, rect ? &rect32 : NULL,
509 clipRect ? &clipRect32 : NULL );
513 /**************************************************************************
514 * SetScrollPos (USER.62)
516 INT16 WINAPI SetScrollPos16( HWND16 hwnd, INT16 nBar, INT16 nPos, BOOL16 redraw )
518 return SetScrollPos( WIN_Handle32(hwnd), nBar, nPos, redraw );
522 /**************************************************************************
523 * GetScrollPos (USER.63)
525 INT16 WINAPI GetScrollPos16( HWND16 hwnd, INT16 nBar )
527 return GetScrollPos( WIN_Handle32(hwnd), nBar );
531 /**************************************************************************
532 * SetScrollRange (USER.64)
534 void WINAPI SetScrollRange16( HWND16 hwnd, INT16 nBar, INT16 MinVal, INT16 MaxVal, BOOL16 redraw )
536 /* Invalid range -> range is set to (0,0) */
537 if ((INT)MaxVal - (INT)MinVal > 0x7fff) MinVal = MaxVal = 0;
538 SetScrollRange( WIN_Handle32(hwnd), nBar, MinVal, MaxVal, redraw );
542 /**************************************************************************
543 * GetScrollRange (USER.65)
545 BOOL16 WINAPI GetScrollRange16( HWND16 hwnd, INT16 nBar, LPINT16 lpMin, LPINT16 lpMax)
547 INT min, max;
548 BOOL ret = GetScrollRange( WIN_Handle32(hwnd), nBar, &min, &max );
549 if (lpMin) *lpMin = min;
550 if (lpMax) *lpMax = max;
551 return ret;
555 /**************************************************************************
556 * GetDC (USER.66)
558 HDC16 WINAPI GetDC16( HWND16 hwnd )
560 return HDC_16(GetDC( WIN_Handle32(hwnd) ));
564 /**************************************************************************
565 * GetWindowDC (USER.67)
567 HDC16 WINAPI GetWindowDC16( HWND16 hwnd )
569 return GetDCEx16( hwnd, 0, DCX_USESTYLE | DCX_WINDOW );
573 /**************************************************************************
574 * ReleaseDC (USER.68)
576 INT16 WINAPI ReleaseDC16( HWND16 hwnd, HDC16 hdc )
578 return (INT16)ReleaseDC( WIN_Handle32(hwnd), HDC_32(hdc) );
582 /**************************************************************************
583 * FlashWindow (USER.105)
585 BOOL16 WINAPI FlashWindow16( HWND16 hwnd, BOOL16 bInvert )
587 return FlashWindow( WIN_Handle32(hwnd), bInvert );
591 /**************************************************************************
592 * WindowFromDC (USER.117)
594 HWND16 WINAPI WindowFromDC16( HDC16 hDC )
596 return HWND_16( WindowFromDC( HDC_32(hDC) ) );
600 /**************************************************************************
601 * UpdateWindow (USER.124)
603 void WINAPI UpdateWindow16( HWND16 hwnd )
605 RedrawWindow16( hwnd, NULL, 0, RDW_UPDATENOW | RDW_ALLCHILDREN );
609 /**************************************************************************
610 * InvalidateRect (USER.125)
612 void WINAPI InvalidateRect16( HWND16 hwnd, const RECT16 *rect, BOOL16 erase )
614 RedrawWindow16( hwnd, rect, 0, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
618 /**************************************************************************
619 * InvalidateRgn (USER.126)
621 void WINAPI InvalidateRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 erase )
623 RedrawWindow16( hwnd, NULL, hrgn, RDW_INVALIDATE | (erase ? RDW_ERASE : 0) );
627 /**************************************************************************
628 * ValidateRect (USER.127)
630 void WINAPI ValidateRect16( HWND16 hwnd, const RECT16 *rect )
632 RedrawWindow16( hwnd, rect, 0, RDW_VALIDATE | RDW_NOCHILDREN );
636 /**************************************************************************
637 * ValidateRgn (USER.128)
639 void WINAPI ValidateRgn16( HWND16 hwnd, HRGN16 hrgn )
641 RedrawWindow16( hwnd, NULL, hrgn, RDW_VALIDATE | RDW_NOCHILDREN );
645 /**************************************************************************
646 * GetClassWord (USER.129)
648 WORD WINAPI GetClassWord16( HWND16 hwnd, INT16 offset )
650 return GetClassWord( WIN_Handle32(hwnd), offset );
654 /**************************************************************************
655 * SetClassWord (USER.130)
657 WORD WINAPI SetClassWord16( HWND16 hwnd, INT16 offset, WORD newval )
659 return SetClassWord( WIN_Handle32(hwnd), offset, newval );
663 /***********************************************************************
664 * GetClassLong (USER.131)
666 LONG WINAPI GetClassLong16( HWND16 hwnd16, INT16 offset )
668 LONG_PTR ret = GetClassLongA( WIN_Handle32(hwnd16), offset );
670 switch( offset )
672 case GCLP_WNDPROC:
673 return (LONG_PTR)WINPROC_GetProc16( (WNDPROC)ret, FALSE );
674 case GCLP_MENUNAME:
675 return MapLS( (void *)ret ); /* leak */
676 default:
677 return ret;
682 /***********************************************************************
683 * SetClassLong (USER.132)
685 LONG WINAPI SetClassLong16( HWND16 hwnd16, INT16 offset, LONG newval )
687 switch( offset )
689 case GCLP_WNDPROC:
691 WNDPROC new_proc = WINPROC_AllocProc16( (WNDPROC16)newval );
692 WNDPROC old_proc = (WNDPROC)SetClassLongA( WIN_Handle32(hwnd16), offset, (LONG_PTR)new_proc );
693 return (LONG)WINPROC_GetProc16( (WNDPROC)old_proc, FALSE );
695 case GCLP_MENUNAME:
696 newval = (LONG)MapSL( newval );
697 /* fall through */
698 default:
699 return SetClassLongA( WIN_Handle32(hwnd16), offset, newval );
704 /**************************************************************************
705 * GetWindowWord (USER.133)
707 WORD WINAPI GetWindowWord16( HWND16 hwnd, INT16 offset )
709 return GetWindowWord( WIN_Handle32(hwnd), offset );
713 /**************************************************************************
714 * SetWindowWord (USER.134)
716 WORD WINAPI SetWindowWord16( HWND16 hwnd, INT16 offset, WORD newval )
718 return SetWindowWord( WIN_Handle32(hwnd), offset, newval );
722 /**************************************************************************
723 * OpenClipboard (USER.137)
725 BOOL16 WINAPI OpenClipboard16( HWND16 hwnd )
727 return OpenClipboard( WIN_Handle32(hwnd) );
731 /**************************************************************************
732 * GetClipboardOwner (USER.140)
734 HWND16 WINAPI GetClipboardOwner16(void)
736 return HWND_16( GetClipboardOwner() );
740 /**************************************************************************
741 * SetClipboardViewer (USER.147)
743 HWND16 WINAPI SetClipboardViewer16( HWND16 hwnd )
745 return HWND_16( SetClipboardViewer( WIN_Handle32(hwnd) ));
749 /**************************************************************************
750 * GetClipboardViewer (USER.148)
752 HWND16 WINAPI GetClipboardViewer16(void)
754 return HWND_16( GetClipboardViewer() );
758 /**************************************************************************
759 * ChangeClipboardChain (USER.149)
761 BOOL16 WINAPI ChangeClipboardChain16(HWND16 hwnd, HWND16 hwndNext)
763 return ChangeClipboardChain( WIN_Handle32(hwnd), WIN_Handle32(hwndNext) );
767 /**************************************************************************
768 * GetSystemMenu (USER.156)
770 HMENU16 WINAPI GetSystemMenu16( HWND16 hwnd, BOOL16 revert )
772 return HMENU_16(GetSystemMenu( WIN_Handle32(hwnd), revert ));
776 /**************************************************************************
777 * GetMenu (USER.157)
779 HMENU16 WINAPI GetMenu16( HWND16 hwnd )
781 return HMENU_16(GetMenu( WIN_Handle32(hwnd) ));
785 /**************************************************************************
786 * SetMenu (USER.158)
788 BOOL16 WINAPI SetMenu16( HWND16 hwnd, HMENU16 hMenu )
790 return SetMenu( WIN_Handle32(hwnd), HMENU_32(hMenu) );
794 /**************************************************************************
795 * DrawMenuBar (USER.160)
797 void WINAPI DrawMenuBar16( HWND16 hwnd )
799 DrawMenuBar( WIN_Handle32(hwnd) );
803 /**************************************************************************
804 * HiliteMenuItem (USER.162)
806 BOOL16 WINAPI HiliteMenuItem16( HWND16 hwnd, HMENU16 hMenu, UINT16 id, UINT16 wHilite )
808 return HiliteMenuItem( WIN_Handle32(hwnd), HMENU_32(hMenu), id, wHilite );
812 /**************************************************************************
813 * CreateCaret (USER.163)
815 void WINAPI CreateCaret16( HWND16 hwnd, HBITMAP16 bitmap, INT16 width, INT16 height )
817 CreateCaret( WIN_Handle32(hwnd), HBITMAP_32(bitmap), width, height );
821 /*****************************************************************
822 * DestroyCaret (USER.164)
824 void WINAPI DestroyCaret16(void)
826 DestroyCaret();
830 /*****************************************************************
831 * SetCaretPos (USER.165)
833 void WINAPI SetCaretPos16( INT16 x, INT16 y )
835 SetCaretPos( x, y );
839 /**************************************************************************
840 * HideCaret (USER.166)
842 void WINAPI HideCaret16( HWND16 hwnd )
844 HideCaret( WIN_Handle32(hwnd) );
848 /**************************************************************************
849 * ShowCaret (USER.167)
851 void WINAPI ShowCaret16( HWND16 hwnd )
853 ShowCaret( WIN_Handle32(hwnd) );
857 /*****************************************************************
858 * SetCaretBlinkTime (USER.168)
860 void WINAPI SetCaretBlinkTime16( UINT16 msecs )
862 SetCaretBlinkTime( msecs );
866 /*****************************************************************
867 * GetCaretBlinkTime (USER.169)
869 UINT16 WINAPI GetCaretBlinkTime16(void)
871 return GetCaretBlinkTime();
875 /**************************************************************************
876 * ArrangeIconicWindows (USER.170)
878 UINT16 WINAPI ArrangeIconicWindows16( HWND16 parent)
880 return ArrangeIconicWindows( WIN_Handle32(parent) );
884 /**************************************************************************
885 * SwitchToThisWindow (USER.172)
887 void WINAPI SwitchToThisWindow16( HWND16 hwnd, BOOL16 restore )
889 SwitchToThisWindow( WIN_Handle32(hwnd), restore );
893 /**************************************************************************
894 * KillSystemTimer (USER.182)
896 BOOL16 WINAPI KillSystemTimer16( HWND16 hwnd, UINT16 id )
898 return KillSystemTimer( WIN_Handle32(hwnd), id );
902 /*****************************************************************
903 * GetCaretPos (USER.183)
905 void WINAPI GetCaretPos16( LPPOINT16 pt16 )
907 POINT pt;
908 if (GetCaretPos( &pt ))
910 pt16->x = pt.x;
911 pt16->y = pt.y;
916 /**************************************************************************
917 * SetSysModalWindow (USER.188)
919 HWND16 WINAPI SetSysModalWindow16( HWND16 hwnd )
921 HWND16 old = hwndSysModal;
922 hwndSysModal = hwnd;
923 return old;
927 /**************************************************************************
928 * GetSysModalWindow (USER.189)
930 HWND16 WINAPI GetSysModalWindow16(void)
932 return hwndSysModal;
936 /**************************************************************************
937 * GetUpdateRect (USER.190)
939 BOOL16 WINAPI GetUpdateRect16( HWND16 hwnd, LPRECT16 rect, BOOL16 erase )
941 RECT r;
942 BOOL16 ret;
944 if (!rect) return GetUpdateRect( WIN_Handle32(hwnd), NULL, erase );
945 ret = GetUpdateRect( WIN_Handle32(hwnd), &r, erase );
946 rect->left = r.left;
947 rect->top = r.top;
948 rect->right = r.right;
949 rect->bottom = r.bottom;
950 return ret;
954 /**************************************************************************
955 * ChildWindowFromPoint (USER.191)
957 HWND16 WINAPI ChildWindowFromPoint16( HWND16 hwndParent, POINT16 pt )
959 POINT pt32;
961 pt32.x = pt.x;
962 pt32.y = pt.y;
963 return HWND_16( ChildWindowFromPoint( WIN_Handle32(hwndParent), pt32 ));
967 /***********************************************************************
968 * GetWindowTask (USER.224)
970 HTASK16 WINAPI GetWindowTask16( HWND16 hwnd )
972 DWORD tid = GetWindowThreadProcessId( HWND_32(hwnd), NULL );
973 if (!tid) return 0;
974 return HTASK_16(tid);
977 /**********************************************************************
978 * EnumTaskWindows (USER.225)
980 BOOL16 WINAPI EnumTaskWindows16( HTASK16 hTask, WNDENUMPROC16 func, LPARAM lParam )
982 struct wnd_enum_info info;
983 DWORD tid = HTASK_32( hTask );
985 if (!tid) return FALSE;
986 info.proc = func;
987 info.param = lParam;
988 return EnumThreadWindows( tid, wnd_enum_callback, (LPARAM)&info );
992 /**************************************************************************
993 * GetTopWindow (USER.229)
995 HWND16 WINAPI GetTopWindow16( HWND16 hwnd )
997 return HWND_16( GetTopWindow( WIN_Handle32(hwnd) ));
1001 /**************************************************************************
1002 * GetNextWindow (USER.230)
1004 HWND16 WINAPI GetNextWindow16( HWND16 hwnd, WORD flag )
1006 if ((flag != GW_HWNDNEXT) && (flag != GW_HWNDPREV)) return 0;
1007 return GetWindow16( hwnd, flag );
1011 /**************************************************************************
1012 * SetWindowPos (USER.232)
1014 BOOL16 WINAPI SetWindowPos16( HWND16 hwnd, HWND16 hwndInsertAfter,
1015 INT16 x, INT16 y, INT16 cx, INT16 cy, WORD flags)
1017 return SetWindowPos( WIN_Handle32(hwnd), full_insert_after_hwnd(hwndInsertAfter),
1018 x, y, cx, cy, flags );
1022 /**************************************************************************
1023 * SetParent (USER.233)
1025 HWND16 WINAPI SetParent16( HWND16 hwndChild, HWND16 hwndNewParent )
1027 return HWND_16( SetParent( WIN_Handle32(hwndChild), WIN_Handle32(hwndNewParent) ));
1031 /**************************************************************************
1032 * GetCapture (USER.236)
1034 HWND16 WINAPI GetCapture16(void)
1036 return HWND_16( GetCapture() );
1040 /**************************************************************************
1041 * GetUpdateRgn (USER.237)
1043 INT16 WINAPI GetUpdateRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 erase )
1045 return GetUpdateRgn( WIN_Handle32(hwnd), HRGN_32(hrgn), erase );
1049 /**************************************************************************
1050 * ExcludeUpdateRgn (USER.238)
1052 INT16 WINAPI ExcludeUpdateRgn16( HDC16 hdc, HWND16 hwnd )
1054 return ExcludeUpdateRgn( HDC_32(hdc), WIN_Handle32(hwnd) );
1058 /**************************************************************************
1059 * GetOpenClipboardWindow (USER.248)
1061 HWND16 WINAPI GetOpenClipboardWindow16(void)
1063 return HWND_16( GetOpenClipboardWindow() );
1067 /**************************************************************************
1068 * BeginDeferWindowPos (USER.259)
1070 HDWP16 WINAPI BeginDeferWindowPos16( INT16 count )
1072 return HDWP_16(BeginDeferWindowPos( count ));
1076 /**************************************************************************
1077 * DeferWindowPos (USER.260)
1079 HDWP16 WINAPI DeferWindowPos16( HDWP16 hdwp, HWND16 hwnd, HWND16 hwndAfter,
1080 INT16 x, INT16 y, INT16 cx, INT16 cy,
1081 UINT16 flags )
1083 return HDWP_16(DeferWindowPos( HDWP_32(hdwp), WIN_Handle32(hwnd),
1084 full_insert_after_hwnd(hwndAfter), x, y, cx, cy, flags ));
1088 /**************************************************************************
1089 * EndDeferWindowPos (USER.261)
1091 BOOL16 WINAPI EndDeferWindowPos16( HDWP16 hdwp )
1093 return EndDeferWindowPos(HDWP_32(hdwp));
1097 /**************************************************************************
1098 * GetWindow (USER.262)
1100 HWND16 WINAPI GetWindow16( HWND16 hwnd, WORD rel )
1102 return HWND_16( GetWindow( WIN_Handle32(hwnd), rel ) );
1106 /**************************************************************************
1107 * ShowOwnedPopups (USER.265)
1109 void WINAPI ShowOwnedPopups16( HWND16 owner, BOOL16 fShow )
1111 ShowOwnedPopups( WIN_Handle32(owner), fShow );
1115 /**************************************************************************
1116 * ShowScrollBar (USER.267)
1118 void WINAPI ShowScrollBar16( HWND16 hwnd, INT16 nBar, BOOL16 fShow )
1120 ShowScrollBar( WIN_Handle32(hwnd), nBar, fShow );
1124 /**************************************************************************
1125 * IsZoomed (USER.272)
1127 BOOL16 WINAPI IsZoomed16(HWND16 hwnd)
1129 return IsZoomed( WIN_Handle32(hwnd) );
1133 /**************************************************************************
1134 * GetDlgCtrlID (USER.277)
1136 INT16 WINAPI GetDlgCtrlID16( HWND16 hwnd )
1138 return GetDlgCtrlID( WIN_Handle32(hwnd) );
1142 /**************************************************************************
1143 * GetDesktopHwnd (USER.278)
1145 * Exactly the same thing as GetDesktopWindow(), but not documented.
1146 * Don't ask me why...
1148 HWND16 WINAPI GetDesktopHwnd16(void)
1150 return GetDesktopWindow16();
1154 /**************************************************************************
1155 * SetSystemMenu (USER.280)
1157 BOOL16 WINAPI SetSystemMenu16( HWND16 hwnd, HMENU16 hMenu )
1159 return SetSystemMenu( WIN_Handle32(hwnd), HMENU_32(hMenu) );
1163 /**************************************************************************
1164 * GetDesktopWindow (USER.286)
1166 HWND16 WINAPI GetDesktopWindow16(void)
1168 return HWND_16( GetDesktopWindow() );
1172 /**************************************************************************
1173 * GetLastActivePopup (USER.287)
1175 HWND16 WINAPI GetLastActivePopup16( HWND16 hwnd )
1177 return HWND_16( GetLastActivePopup( WIN_Handle32(hwnd) ));
1181 /**************************************************************************
1182 * RedrawWindow (USER.290)
1184 BOOL16 WINAPI RedrawWindow16( HWND16 hwnd, const RECT16 *rectUpdate,
1185 HRGN16 hrgnUpdate, UINT16 flags )
1187 if (rectUpdate)
1189 RECT r;
1190 r.left = rectUpdate->left;
1191 r.top = rectUpdate->top;
1192 r.right = rectUpdate->right;
1193 r.bottom = rectUpdate->bottom;
1194 return RedrawWindow(WIN_Handle32(hwnd), &r, HRGN_32(hrgnUpdate), flags);
1196 return RedrawWindow(WIN_Handle32(hwnd), NULL, HRGN_32(hrgnUpdate), flags);
1200 /**************************************************************************
1201 * LockWindowUpdate (USER.294)
1203 BOOL16 WINAPI LockWindowUpdate16( HWND16 hwnd )
1205 return LockWindowUpdate( WIN_Handle32(hwnd) );
1209 /**************************************************************************
1210 * ScrollWindowEx (USER.319)
1212 INT16 WINAPI ScrollWindowEx16( HWND16 hwnd, INT16 dx, INT16 dy,
1213 const RECT16 *rect, const RECT16 *clipRect,
1214 HRGN16 hrgnUpdate, LPRECT16 rcUpdate,
1215 UINT16 flags )
1217 RECT rect32, clipRect32, rcUpdate32;
1218 BOOL16 ret;
1220 if (rect)
1222 rect32.left = rect->left;
1223 rect32.top = rect->top;
1224 rect32.right = rect->right;
1225 rect32.bottom = rect->bottom;
1227 if (clipRect)
1229 clipRect32.left = clipRect->left;
1230 clipRect32.top = clipRect->top;
1231 clipRect32.right = clipRect->right;
1232 clipRect32.bottom = clipRect->bottom;
1234 ret = ScrollWindowEx( WIN_Handle32(hwnd), dx, dy, rect ? &rect32 : NULL,
1235 clipRect ? &clipRect32 : NULL, HRGN_32(hrgnUpdate),
1236 (rcUpdate) ? &rcUpdate32 : NULL, flags );
1237 if (rcUpdate)
1239 rcUpdate->left = rcUpdate32.left;
1240 rcUpdate->top = rcUpdate32.top;
1241 rcUpdate->right = rcUpdate32.right;
1242 rcUpdate->bottom = rcUpdate32.bottom;
1244 return ret;
1248 /**************************************************************************
1249 * FillWindow (USER.324)
1251 void WINAPI FillWindow16( HWND16 hwndParent, HWND16 hwnd, HDC16 hdc, HBRUSH16 hbrush )
1253 RECT rect;
1254 RECT16 rc16;
1255 GetClientRect( WIN_Handle32(hwnd), &rect );
1256 DPtoLP( HDC_32(hdc), (LPPOINT)&rect, 2 );
1257 rc16.left = rect.left;
1258 rc16.top = rect.top;
1259 rc16.right = rect.right;
1260 rc16.bottom = rect.bottom;
1261 PaintRect16( hwndParent, hwnd, hdc, hbrush, &rc16 );
1265 /**************************************************************************
1266 * PaintRect (USER.325)
1268 void WINAPI PaintRect16( HWND16 hwndParent, HWND16 hwnd, HDC16 hdc,
1269 HBRUSH16 hbrush, const RECT16 *rect)
1271 if (hbrush <= CTLCOLOR_STATIC)
1273 HWND parent = WIN_Handle32(hwndParent), hwnd32 = WIN_Handle32(hwnd);
1275 if (!parent) return;
1276 hbrush = SendMessageW( parent, WM_CTLCOLORMSGBOX + hbrush, (WPARAM)hdc, (LPARAM)hwnd32 );
1277 if (!hbrush) hbrush = DefWindowProcW( parent, WM_CTLCOLORMSGBOX + hbrush,
1278 (WPARAM)hdc, (LPARAM)hwnd32 );
1280 if (hbrush) FillRect16( hdc, rect, hbrush );
1284 /**************************************************************************
1285 * GetControlBrush (USER.326)
1287 HBRUSH16 WINAPI GetControlBrush16( HWND16 hwnd, HDC16 hdc, UINT16 ctlType )
1289 HBRUSH16 ret;
1290 HWND hwnd32 = WIN_Handle32(hwnd);
1291 HWND parent = GetParent( hwnd32 );
1293 if (!parent) parent = hwnd32;
1294 ret = SendMessageW( parent, WM_CTLCOLORMSGBOX + ctlType, (WPARAM)hdc, (LPARAM)hwnd32 );
1295 if (!ret) ret = DefWindowProcW( parent, WM_CTLCOLORMSGBOX + ctlType,
1296 (WPARAM)hdc, (LPARAM)hwnd32 );
1297 return ret;
1301 /**************************************************************************
1302 * GetDCEx (USER.359)
1304 HDC16 WINAPI GetDCEx16( HWND16 hwnd, HRGN16 hrgnClip, DWORD flags )
1306 return HDC_16(GetDCEx(WIN_Handle32(hwnd), HRGN_32(hrgnClip), flags));
1310 /**************************************************************************
1311 * GetWindowPlacement (USER.370)
1313 BOOL16 WINAPI GetWindowPlacement16( HWND16 hwnd, WINDOWPLACEMENT16 *wp16 )
1315 WINDOWPLACEMENT wpl;
1317 wpl.length = sizeof(wpl);
1318 if (!GetWindowPlacement( WIN_Handle32(hwnd), &wpl )) return FALSE;
1319 wp16->length = sizeof(*wp16);
1320 wp16->flags = wpl.flags;
1321 wp16->showCmd = wpl.showCmd;
1322 wp16->ptMinPosition.x = wpl.ptMinPosition.x;
1323 wp16->ptMinPosition.y = wpl.ptMinPosition.y;
1324 wp16->ptMaxPosition.x = wpl.ptMaxPosition.x;
1325 wp16->ptMaxPosition.y = wpl.ptMaxPosition.y;
1326 wp16->rcNormalPosition.left = wpl.rcNormalPosition.left;
1327 wp16->rcNormalPosition.top = wpl.rcNormalPosition.top;
1328 wp16->rcNormalPosition.right = wpl.rcNormalPosition.right;
1329 wp16->rcNormalPosition.bottom = wpl.rcNormalPosition.bottom;
1330 return TRUE;
1334 /**************************************************************************
1335 * SetWindowPlacement (USER.371)
1337 BOOL16 WINAPI SetWindowPlacement16( HWND16 hwnd, const WINDOWPLACEMENT16 *wp16 )
1339 WINDOWPLACEMENT wpl;
1341 if (!wp16) return FALSE;
1342 wpl.length = sizeof(wpl);
1343 wpl.flags = wp16->flags;
1344 wpl.showCmd = wp16->showCmd;
1345 wpl.ptMinPosition.x = wp16->ptMinPosition.x;
1346 wpl.ptMinPosition.y = wp16->ptMinPosition.y;
1347 wpl.ptMaxPosition.x = wp16->ptMaxPosition.x;
1348 wpl.ptMaxPosition.y = wp16->ptMaxPosition.y;
1349 wpl.rcNormalPosition.left = wp16->rcNormalPosition.left;
1350 wpl.rcNormalPosition.top = wp16->rcNormalPosition.top;
1351 wpl.rcNormalPosition.right = wp16->rcNormalPosition.right;
1352 wpl.rcNormalPosition.bottom = wp16->rcNormalPosition.bottom;
1353 return SetWindowPlacement( WIN_Handle32(hwnd), &wpl );
1357 /***********************************************************************
1358 * RegisterClassEx (USER.397)
1360 ATOM WINAPI RegisterClassEx16( const WNDCLASSEX16 *wc )
1362 WNDCLASSEXA wc32;
1364 wc32.cbSize = sizeof(wc32);
1365 wc32.style = wc->style;
1366 wc32.lpfnWndProc = WINPROC_AllocProc16( wc->lpfnWndProc );
1367 wc32.cbClsExtra = wc->cbClsExtra;
1368 wc32.cbWndExtra = wc->cbWndExtra;
1369 wc32.hInstance = HINSTANCE_32(GetExePtr(wc->hInstance));
1370 if (!wc32.hInstance) wc32.hInstance = HINSTANCE_32(GetModuleHandle16(NULL));
1371 wc32.hIcon = HICON_32(wc->hIcon);
1372 wc32.hCursor = HCURSOR_32(wc->hCursor);
1373 wc32.hbrBackground = HBRUSH_32(wc->hbrBackground);
1374 wc32.lpszMenuName = MapSL(wc->lpszMenuName);
1375 wc32.lpszClassName = MapSL(wc->lpszClassName);
1376 wc32.hIconSm = HICON_32(wc->hIconSm);
1377 return RegisterClassExA( &wc32 );
1381 /***********************************************************************
1382 * GetClassInfoEx (USER.398)
1384 * FIXME: this is just a guess, I have no idea if GetClassInfoEx() is the
1385 * same in Win16 as in Win32. --AJ
1387 BOOL16 WINAPI GetClassInfoEx16( HINSTANCE16 hInst16, SEGPTR name, WNDCLASSEX16 *wc )
1389 WNDCLASSEXA wc32;
1390 HINSTANCE hInstance;
1391 BOOL ret;
1393 if (hInst16 == GetModuleHandle16("user")) hInstance = user32_module;
1394 else hInstance = HINSTANCE_32(GetExePtr( hInst16 ));
1396 ret = GetClassInfoExA( hInstance, MapSL(name), &wc32 );
1398 if (ret)
1400 wc->lpfnWndProc = WINPROC_GetProc16( wc32.lpfnWndProc, FALSE );
1401 wc->style = wc32.style;
1402 wc->cbClsExtra = wc32.cbClsExtra;
1403 wc->cbWndExtra = wc32.cbWndExtra;
1404 wc->hInstance = (wc32.hInstance == user32_module) ? GetModuleHandle16("user") : HINSTANCE_16(wc32.hInstance);
1405 wc->hIcon = HICON_16(wc32.hIcon);
1406 wc->hIconSm = HICON_16(wc32.hIconSm);
1407 wc->hCursor = HCURSOR_16(wc32.hCursor);
1408 wc->hbrBackground = HBRUSH_16(wc32.hbrBackground);
1409 wc->lpszClassName = 0;
1410 wc->lpszMenuName = MapLS(wc32.lpszMenuName); /* FIXME: leak */
1412 return ret;
1416 /**************************************************************************
1417 * ChildWindowFromPointEx (USER.399)
1419 HWND16 WINAPI ChildWindowFromPointEx16( HWND16 hwndParent, POINT16 pt, UINT16 uFlags)
1421 POINT pt32;
1423 pt32.x = pt.x;
1424 pt32.y = pt.y;
1425 return HWND_16( ChildWindowFromPointEx( WIN_Handle32(hwndParent), pt32, uFlags ));
1429 /**************************************************************************
1430 * GetPriorityClipboardFormat (USER.402)
1432 INT16 WINAPI GetPriorityClipboardFormat16( UINT16 *list, INT16 count )
1434 int i;
1436 for (i = 0; i < count; i++)
1437 if (IsClipboardFormatAvailable( list[i] )) return list[i];
1438 return -1;
1442 /***********************************************************************
1443 * UnregisterClass (USER.403)
1445 BOOL16 WINAPI UnregisterClass16( LPCSTR className, HINSTANCE16 hInstance )
1447 if (hInstance == GetModuleHandle16("user")) hInstance = 0;
1448 return UnregisterClassA( className, HINSTANCE_32(GetExePtr( hInstance )) );
1452 /***********************************************************************
1453 * GetClassInfo (USER.404)
1455 BOOL16 WINAPI GetClassInfo16( HINSTANCE16 hInst16, SEGPTR name, WNDCLASS16 *wc )
1457 WNDCLASSEX16 wcex;
1458 UINT16 ret = GetClassInfoEx16( hInst16, name, &wcex );
1460 if (ret)
1462 wc->style = wcex.style;
1463 wc->lpfnWndProc = wcex.lpfnWndProc;
1464 wc->cbClsExtra = wcex.cbClsExtra;
1465 wc->cbWndExtra = wcex.cbWndExtra;
1466 wc->hInstance = wcex.hInstance;
1467 wc->hIcon = wcex.hIcon;
1468 wc->hCursor = wcex.hCursor;
1469 wc->hbrBackground = wcex.hbrBackground;
1470 wc->lpszMenuName = wcex.lpszMenuName;
1471 wc->lpszClassName = wcex.lpszClassName;
1473 return ret;
1477 /**************************************************************************
1478 * TrackPopupMenu (USER.416)
1480 BOOL16 WINAPI TrackPopupMenu16( HMENU16 hMenu, UINT16 wFlags, INT16 x, INT16 y,
1481 INT16 nReserved, HWND16 hwnd, const RECT16 *lpRect )
1483 RECT r;
1484 if (lpRect)
1486 r.left = lpRect->left;
1487 r.top = lpRect->top;
1488 r.right = lpRect->right;
1489 r.bottom = lpRect->bottom;
1491 return TrackPopupMenu( HMENU_32(hMenu), wFlags, x, y, nReserved,
1492 WIN_Handle32(hwnd), lpRect ? &r : NULL );
1496 /**************************************************************************
1497 * FindWindowEx (USER.427)
1499 HWND16 WINAPI FindWindowEx16( HWND16 parent, HWND16 child, LPCSTR className, LPCSTR title )
1501 return HWND_16( FindWindowExA( WIN_Handle32(parent), WIN_Handle32(child),
1502 className, title ));
1506 /***********************************************************************
1507 * DefFrameProc (USER.445)
1509 LRESULT WINAPI DefFrameProc16( HWND16 hwnd, HWND16 hwndMDIClient,
1510 UINT16 message, WPARAM16 wParam, LPARAM lParam )
1512 switch (message)
1514 case WM_SETTEXT:
1515 lParam = (LPARAM)MapSL(lParam);
1516 /* fall through */
1517 case WM_COMMAND:
1518 case WM_NCACTIVATE:
1519 case WM_SETFOCUS:
1520 case WM_SIZE:
1521 return DefFrameProcA( WIN_Handle32(hwnd), WIN_Handle32(hwndMDIClient),
1522 message, wParam, lParam );
1524 case WM_NEXTMENU:
1526 MDINEXTMENU next_menu;
1527 DefFrameProcW( WIN_Handle32(hwnd), WIN_Handle32(hwndMDIClient),
1528 message, wParam, (LPARAM)&next_menu );
1529 return MAKELONG( HMENU_16(next_menu.hmenuNext), HWND_16(next_menu.hwndNext) );
1531 default:
1532 return DefWindowProc16(hwnd, message, wParam, lParam);
1537 /***********************************************************************
1538 * DefMDIChildProc (USER.447)
1540 LRESULT WINAPI DefMDIChildProc16( HWND16 hwnd, UINT16 message,
1541 WPARAM16 wParam, LPARAM lParam )
1543 switch (message)
1545 case WM_SETTEXT:
1546 return DefMDIChildProcA( WIN_Handle32(hwnd), message, wParam, (LPARAM)MapSL(lParam) );
1548 case WM_MENUCHAR:
1549 case WM_CLOSE:
1550 case WM_SETFOCUS:
1551 case WM_CHILDACTIVATE:
1552 case WM_SYSCOMMAND:
1553 case WM_SETVISIBLE:
1554 case WM_SIZE:
1555 case WM_SYSCHAR:
1556 return DefMDIChildProcW( WIN_Handle32(hwnd), message, wParam, lParam );
1558 case WM_GETMINMAXINFO:
1560 MINMAXINFO16 *mmi16 = (MINMAXINFO16 *)MapSL(lParam);
1561 MINMAXINFO mmi;
1563 mmi.ptReserved.x = mmi16->ptReserved.x;
1564 mmi.ptReserved.y = mmi16->ptReserved.y;
1565 mmi.ptMaxSize.x = mmi16->ptMaxSize.x;
1566 mmi.ptMaxSize.y = mmi16->ptMaxSize.y;
1567 mmi.ptMaxPosition.x = mmi16->ptMaxPosition.x;
1568 mmi.ptMaxPosition.y = mmi16->ptMaxPosition.y;
1569 mmi.ptMinTrackSize.x = mmi16->ptMinTrackSize.x;
1570 mmi.ptMinTrackSize.y = mmi16->ptMinTrackSize.y;
1571 mmi.ptMaxTrackSize.x = mmi16->ptMaxTrackSize.x;
1572 mmi.ptMaxTrackSize.y = mmi16->ptMaxTrackSize.y;
1574 DefMDIChildProcW( WIN_Handle32(hwnd), message, wParam, (LPARAM)&mmi );
1576 mmi16->ptReserved.x = mmi.ptReserved.x;
1577 mmi16->ptReserved.y = mmi.ptReserved.y;
1578 mmi16->ptMaxSize.x = mmi.ptMaxSize.x;
1579 mmi16->ptMaxSize.y = mmi.ptMaxSize.y;
1580 mmi16->ptMaxPosition.x = mmi.ptMaxPosition.x;
1581 mmi16->ptMaxPosition.y = mmi.ptMaxPosition.y;
1582 mmi16->ptMinTrackSize.x = mmi.ptMinTrackSize.x;
1583 mmi16->ptMinTrackSize.y = mmi.ptMinTrackSize.y;
1584 mmi16->ptMaxTrackSize.x = mmi.ptMaxTrackSize.x;
1585 mmi16->ptMaxTrackSize.y = mmi.ptMaxTrackSize.y;
1586 return 0;
1588 case WM_NEXTMENU:
1590 MDINEXTMENU next_menu;
1591 DefMDIChildProcW( WIN_Handle32(hwnd), message, wParam, (LPARAM)&next_menu );
1592 return MAKELONG( HMENU_16(next_menu.hmenuNext), HWND_16(next_menu.hwndNext) );
1594 default:
1595 return DefWindowProc16(hwnd, message, wParam, lParam);
1600 /**************************************************************************
1601 * DrawAnimatedRects (USER.448)
1603 BOOL16 WINAPI DrawAnimatedRects16( HWND16 hwnd, INT16 idAni,
1604 const RECT16* lprcFrom, const RECT16* lprcTo )
1606 RECT rcFrom32, rcTo32;
1607 rcFrom32.left = lprcFrom->left;
1608 rcFrom32.top = lprcFrom->top;
1609 rcFrom32.right = lprcFrom->right;
1610 rcFrom32.bottom = lprcFrom->bottom;
1611 rcTo32.left = lprcTo->left;
1612 rcTo32.top = lprcTo->top;
1613 rcTo32.right = lprcTo->right;
1614 rcTo32.bottom = lprcTo->bottom;
1615 return DrawAnimatedRects( WIN_Handle32(hwnd), idAni, &rcFrom32, &rcTo32 );
1619 /***********************************************************************
1620 * GetInternalWindowPos (USER.460)
1622 UINT16 WINAPI GetInternalWindowPos16( HWND16 hwnd, LPRECT16 rectWnd, LPPOINT16 ptIcon )
1624 WINDOWPLACEMENT16 wndpl;
1626 if (!GetWindowPlacement16( hwnd, &wndpl )) return 0;
1627 if (rectWnd) *rectWnd = wndpl.rcNormalPosition;
1628 if (ptIcon) *ptIcon = wndpl.ptMinPosition;
1629 return wndpl.showCmd;
1633 /**************************************************************************
1634 * SetInternalWindowPos (USER.461)
1636 void WINAPI SetInternalWindowPos16( HWND16 hwnd, UINT16 showCmd, LPRECT16 rect, LPPOINT16 pt )
1638 RECT rc32;
1639 POINT pt32;
1641 if (rect)
1643 rc32.left = rect->left;
1644 rc32.top = rect->top;
1645 rc32.right = rect->right;
1646 rc32.bottom = rect->bottom;
1648 if (pt)
1650 pt32.x = pt->x;
1651 pt32.y = pt->y;
1653 SetInternalWindowPos( WIN_Handle32(hwnd), showCmd,
1654 rect ? &rc32 : NULL, pt ? &pt32 : NULL );
1658 /**************************************************************************
1659 * CalcChildScroll (USER.462)
1661 void WINAPI CalcChildScroll16( HWND16 hwnd, WORD scroll )
1663 CalcChildScroll( WIN_Handle32(hwnd), scroll );
1667 /**************************************************************************
1668 * ScrollChildren (USER.463)
1670 void WINAPI ScrollChildren16(HWND16 hwnd, UINT16 uMsg, WPARAM16 wParam, LPARAM lParam)
1672 ScrollChildren( WIN_Handle32(hwnd), uMsg, wParam, lParam );
1676 /**************************************************************************
1677 * DragDetect (USER.465)
1679 BOOL16 WINAPI DragDetect16( HWND16 hwnd, POINT16 pt )
1681 POINT pt32;
1683 pt32.x = pt.x;
1684 pt32.y = pt.y;
1685 return DragDetect( WIN_Handle32(hwnd), pt32 );
1689 /**************************************************************************
1690 * SetScrollInfo (USER.475)
1692 INT16 WINAPI SetScrollInfo16( HWND16 hwnd, INT16 nBar, const SCROLLINFO *info, BOOL16 redraw )
1694 return SetScrollInfo( WIN_Handle32(hwnd), nBar, info, redraw );
1698 /**************************************************************************
1699 * GetScrollInfo (USER.476)
1701 BOOL16 WINAPI GetScrollInfo16( HWND16 hwnd, INT16 nBar, LPSCROLLINFO info )
1703 return GetScrollInfo( WIN_Handle32(hwnd), nBar, info );
1707 /**************************************************************************
1708 * EnableScrollBar (USER.482)
1710 BOOL16 WINAPI EnableScrollBar16( HWND16 hwnd, INT16 nBar, UINT16 flags )
1712 return EnableScrollBar( WIN_Handle32(hwnd), nBar, flags );
1716 /**************************************************************************
1717 * GetShellWindow (USER.600)
1719 HWND16 WINAPI GetShellWindow16(void)
1721 return HWND_16( GetShellWindow() );
1725 /**************************************************************************
1726 * GetForegroundWindow (USER.608)
1728 HWND16 WINAPI GetForegroundWindow16(void)
1730 return HWND_16( GetForegroundWindow() );
1734 /**************************************************************************
1735 * SetForegroundWindow (USER.609)
1737 BOOL16 WINAPI SetForegroundWindow16( HWND16 hwnd )
1739 return SetForegroundWindow( WIN_Handle32(hwnd) );
1743 /**************************************************************************
1744 * DrawCaptionTemp (USER.657)
1746 BOOL16 WINAPI DrawCaptionTemp16( HWND16 hwnd, HDC16 hdc, const RECT16 *rect,
1747 HFONT16 hFont, HICON16 hIcon, LPCSTR str, UINT16 uFlags )
1749 RECT rect32;
1751 if (rect)
1753 rect32.left = rect->left;
1754 rect32.top = rect->top;
1755 rect32.right = rect->right;
1756 rect32.bottom = rect->bottom;
1758 return DrawCaptionTempA( WIN_Handle32(hwnd), HDC_32(hdc),
1759 rect ? &rect32 : NULL, HFONT_32(hFont),
1760 HICON_32(hIcon), str, uFlags & 0x1f );
1764 /**************************************************************************
1765 * DrawCaption (USER.660)
1767 BOOL16 WINAPI DrawCaption16( HWND16 hwnd, HDC16 hdc, const RECT16 *rect, UINT16 flags )
1769 RECT rect32;
1771 if (rect)
1773 rect32.left = rect->left;
1774 rect32.top = rect->top;
1775 rect32.right = rect->right;
1776 rect32.bottom = rect->bottom;
1778 return DrawCaption(WIN_Handle32(hwnd), HDC_32(hdc), rect ? &rect32 : NULL, flags);
1782 /**************************************************************************
1783 * GetMenuItemRect (USER.665)
1785 BOOL16 WINAPI GetMenuItemRect16( HWND16 hwnd, HMENU16 hMenu, UINT16 uItem,
1786 LPRECT16 rect)
1788 RECT r32;
1789 BOOL res;
1790 if (!rect) return FALSE;
1791 res = GetMenuItemRect( WIN_Handle32(hwnd), HMENU_32(hMenu), uItem, &r32 );
1792 rect->left = r32.left;
1793 rect->top = r32.top;
1794 rect->right = r32.right;
1795 rect->bottom = r32.bottom;
1796 return res;
1800 /**************************************************************************
1801 * SetWindowRgn (USER.668)
1803 INT16 WINAPI SetWindowRgn16( HWND16 hwnd, HRGN16 hrgn, BOOL16 redraw )
1805 return SetWindowRgn( WIN_Handle32(hwnd), HRGN_32(hrgn), redraw );
1809 /**************************************************************************
1810 * MessageBoxIndirect (USER.827)
1812 INT16 WINAPI MessageBoxIndirect16( LPMSGBOXPARAMS16 msgbox )
1814 MSGBOXPARAMSA msgbox32;
1816 msgbox32.cbSize = msgbox->cbSize;
1817 msgbox32.hwndOwner = WIN_Handle32( msgbox->hwndOwner );
1818 msgbox32.hInstance = HINSTANCE_32(msgbox->hInstance);
1819 msgbox32.lpszText = MapSL(msgbox->lpszText);
1820 msgbox32.lpszCaption = MapSL(msgbox->lpszCaption);
1821 msgbox32.dwStyle = msgbox->dwStyle;
1822 msgbox32.lpszIcon = MapSL(msgbox->lpszIcon);
1823 msgbox32.dwContextHelpId = msgbox->dwContextHelpId;
1824 msgbox32.lpfnMsgBoxCallback = msgbox->lpfnMsgBoxCallback;
1825 msgbox32.dwLanguageId = msgbox->dwLanguageId;
1826 return MessageBoxIndirectA( &msgbox32 );