Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
cd77c756
Commit
cd77c756
authored
Feb 19, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Try harder to make the window receive keystrokes.
parent
5d513c1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
23 deletions
+12
-23
input.c
dlls/user32/tests/input.c
+12
-23
No files found.
dlls/user32/tests/input.c
View file @
cd77c756
...
...
@@ -310,23 +310,7 @@ static void TestSysKeys( HWND hWnd)
static
LRESULT
CALLBACK
WndProc
(
HWND
hWnd
,
UINT
msg
,
WPARAM
wParam
,
LPARAM
lParam
)
{
switch
(
msg
)
{
case
WM_USER
:
SetFocus
(
hWnd
);
/* window has focus, now do the test */
if
(
hWnd
==
hWndTest
)
TestSysKeys
(
hWnd
);
/* finished :-) */
break
;
case
WM_DESTROY
:
PostQuitMessage
(
0
);
break
;
default:
return
(
DefWindowProcA
(
hWnd
,
msg
,
wParam
,
lParam
)
);
}
return
0
;
return
DefWindowProcA
(
hWnd
,
msg
,
wParam
,
lParam
);
}
static
void
test_Input_whitebox
(
void
)
...
...
@@ -345,18 +329,22 @@ static void test_Input_whitebox(void)
wclass
.
lpszMenuName
=
0
;
wclass
.
cbClsExtra
=
0
;
wclass
.
cbWndExtra
=
0
;
assert
(
RegisterClassA
(
&
wclass
)
);
RegisterClassA
(
&
wclass
);
/* create the test window that will receive the keystrokes */
assert
(
hWndTest
=
CreateWindowA
(
wclass
.
lpszClassName
,
"InputSysKeyTest"
,
WS_OVERLAPPEDWINDOW
,
CW_USEDEFAULT
,
0
,
100
,
100
,
NULL
,
NULL
,
hInstance
,
NULL
)
);
hWndTest
=
CreateWindowA
(
wclass
.
lpszClassName
,
"InputSysKeyTest"
,
WS_OVERLAPPEDWINDOW
,
CW_USEDEFAULT
,
0
,
100
,
100
,
NULL
,
NULL
,
hInstance
,
NULL
);
assert
(
hWndTest
);
ShowWindow
(
hWndTest
,
SW_SHOW
);
SetWindowPos
(
hWndTest
,
HWND_TOPMOST
,
0
,
0
,
0
,
0
,
SWP_NOSIZE
|
SWP_NOMOVE
);
SetForegroundWindow
(
hWndTest
);
UpdateWindow
(
hWndTest
);
/* flush pending messages */
while
(
PeekMessage
(
&
msg
,
0
,
0
,
0
,
PM_REMOVE
))
DispatchMessageA
(
&
msg
);
SendMessageA
(
hWndTest
,
WM_USER
,
0
,
0
);
SetFocus
(
hWndTest
);
TestSysKeys
(
hWndTest
);
DestroyWindow
(
hWndTest
);
}
...
...
@@ -377,7 +365,6 @@ static void empty_message_queue(void)
DispatchMessage
(
&
msg
);
}
diff
=
time
-
GetTickCount
();
min_timeout
=
20
;
}
}
...
...
@@ -859,6 +846,8 @@ static void test_Input_blackbox(void)
|
WS_VISIBLE
,
0
,
0
,
200
,
60
,
NULL
,
NULL
,
NULL
,
NULL
);
ok
(
window
!=
NULL
,
"error: %d
\n
"
,
(
int
)
GetLastError
());
SetWindowPos
(
window
,
HWND_TOPMOST
,
0
,
0
,
0
,
0
,
SWP_NOSIZE
|
SWP_NOMOVE
);
SetForegroundWindow
(
window
);
hook
=
SetWindowsHookExA
(
WH_KEYBOARD_LL
,
hook_proc
,
GetModuleHandleA
(
NULL
),
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment