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
b5b52371
Commit
b5b52371
authored
Aug 12, 2013
by
Qian Hong
Committed by
Alexandre Julliard
Aug 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32/tests: Added more IMC lock count tests.
parent
134935e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
imm32.c
dlls/imm32/tests/imm32.c
+18
-1
No files found.
dlls/imm32/tests/imm32.c
View file @
b5b52371
...
...
@@ -691,7 +691,7 @@ static void test_ImmDefaultHwnd(void)
static
void
test_ImmGetIMCLockCount
(
void
)
{
HIMC
imc
;
DWORD
count
,
ret
;
DWORD
count
,
ret
,
i
;
INPUTCONTEXT
*
ic
;
imc
=
ImmCreateContext
();
...
...
@@ -709,6 +709,23 @@ static void test_ImmGetIMCLockCount(void)
ok
(
ret
==
TRUE
,
"expect TRUE, ret %d
\n
"
,
ret
);
count
=
ImmGetIMCLockCount
(
imc
);
ok
(
count
==
0
,
"expect 0, returned %d
\n
"
,
count
);
for
(
i
=
0
;
i
<
GMEM_LOCKCOUNT
*
2
;
i
++
)
{
ic
=
ImmLockIMC
(
imc
);
ok
(
ic
!=
NULL
,
"ImmLockIMC failed!
\n
"
);
}
count
=
ImmGetIMCLockCount
(
imc
);
todo_wine
ok
(
count
==
GMEM_LOCKCOUNT
,
"expect GMEM_LOCKCOUNT, returned %d
\n
"
,
count
);
for
(
i
=
0
;
i
<
GMEM_LOCKCOUNT
-
1
;
i
++
)
ImmUnlockIMC
(
imc
);
count
=
ImmGetIMCLockCount
(
imc
);
todo_wine
ok
(
count
==
1
,
"expect 1, returned %d
\n
"
,
count
);
ImmUnlockIMC
(
imc
);
count
=
ImmGetIMCLockCount
(
imc
);
todo_wine
ok
(
count
==
0
,
"expect 0, returned %d
\n
"
,
count
);
ImmDestroyContext
(
imc
);
}
...
...
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