Jacek Caban : user32: Added debug traces to SetParent.
Module: wine Branch: master Commit: 3ece2ab7eef49cb274f4fe37448b01252774738f URL: http://source.winehq.org/git/wine.git/?a=commit;h=3ece2ab7eef49cb274f4fe3744... Author: Jacek Caban <jacek(a)codeweavers.com> Date: Mon Feb 22 12:55:04 2016 +0100 user32: Added debug traces to SetParent. Signed-off-by: Jacek Caban <jacek(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/user32/win.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/user32/win.c b/dlls/user32/win.c index 2ef49fa..33aedbd 100644 --- a/dlls/user32/win.c +++ b/dlls/user32/win.c @@ -2984,6 +2984,8 @@ HWND WINAPI SetParent( HWND hwnd, HWND parent ) POINT pt; BOOL ret; + TRACE("(%p %p)\n", hwnd, parent); + if (is_broadcast(hwnd) || is_broadcast(parent)) { SetLastError(ERROR_INVALID_PARAMETER);
participants (1)
-
Alexandre Julliard