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
555e59a4
Commit
555e59a4
authored
Dec 03, 2010
by
Austin Lund
Committed by
Alexandre Julliard
Dec 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Disable IME for msg tests.
parent
0fe32508
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
msg.c
dlls/user32/tests/msg.c
+11
-0
No files found.
dlls/user32/tests/msg.c
View file @
555e59a4
...
@@ -12669,6 +12669,8 @@ START_TEST(msg)
...
@@ -12669,6 +12669,8 @@ START_TEST(msg)
char
**
test_argv
;
char
**
test_argv
;
BOOL
ret
;
BOOL
ret
;
BOOL
(
WINAPI
*
pIsWinEventHookInstalled
)(
DWORD
)
=
0
;
/*GetProcAddress(user32, "IsWinEventHookInstalled");*/
BOOL
(
WINAPI
*
pIsWinEventHookInstalled
)(
DWORD
)
=
0
;
/*GetProcAddress(user32, "IsWinEventHookInstalled");*/
HMODULE
hModuleImm32
;
BOOL
(
WINAPI
*
pImmDisableIME
)(
DWORD
);
int
argc
=
winetest_get_mainargs
(
&
test_argv
);
int
argc
=
winetest_get_mainargs
(
&
test_argv
);
if
(
argc
>=
3
)
if
(
argc
>=
3
)
...
@@ -12682,6 +12684,15 @@ START_TEST(msg)
...
@@ -12682,6 +12684,15 @@ START_TEST(msg)
init_procs
();
init_procs
();
hModuleImm32
=
LoadLibrary
(
"imm32.dll"
);
if
(
hModuleImm32
)
{
pImmDisableIME
=
(
void
*
)
GetProcAddress
(
hModuleImm32
,
"ImmDisableIME"
);
if
(
pImmDisableIME
)
pImmDisableIME
(
0
);
}
pImmDisableIME
=
NULL
;
FreeLibrary
(
hModuleImm32
);
if
(
!
RegisterWindowClasses
())
assert
(
0
);
if
(
!
RegisterWindowClasses
())
assert
(
0
);
if
(
pSetWinEventHook
)
if
(
pSetWinEventHook
)
...
...
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