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
625dca9d
Commit
625dca9d
authored
Dec 02, 2008
by
Andrew Riedi
Committed by
Alexandre Julliard
Dec 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: No need for tests to return 0.
parent
9d3026ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
imm32.c
dlls/imm32/tests/imm32.c
+3
-7
No files found.
dlls/imm32/tests/imm32.c
View file @
625dca9d
...
...
@@ -182,7 +182,7 @@ static void cleanup(void) {
UnregisterClass
(
wndcls
,
GetModuleHandle
(
0
));
}
static
int
test_ImmNotifyIME
(
void
)
{
static
void
test_ImmNotifyIME
(
void
)
{
static
const
char
string
[]
=
"wine"
;
char
resstr
[
16
]
=
""
;
HIMC
imc
;
...
...
@@ -225,11 +225,9 @@ static int test_ImmNotifyIME(void) {
msg_spy_flush_msgs
();
ImmReleaseContext
(
hwnd
,
imc
);
return
0
;
}
static
int
test_ImmGetCompositionString
(
void
)
static
void
test_ImmGetCompositionString
(
void
)
{
HIMC
imc
;
static
const
WCHAR
string
[]
=
{
'w'
,
'i'
,
'n'
,
'e'
,
0x65e5
,
0x672c
,
0x8a9e
};
...
...
@@ -251,10 +249,9 @@ static int test_ImmGetCompositionString(void)
ok
(
len
==
alen
,
"GCS_COMPATTR(A) not returning correct count
\n
"
);
}
ImmReleaseContext
(
hwnd
,
imc
);
return
0
;
}
static
int
test_ImmIME
(
void
)
static
void
test_ImmIME
(
void
)
{
HIMC
imc
;
...
...
@@ -268,7 +265,6 @@ static int test_ImmIME(void)
ok
(
rc
==
0
,
"ImmConfigureIMEW did not fail
\n
"
);
}
ImmReleaseContext
(
hwnd
,
imc
);
return
0
;
}
START_TEST
(
imm32
)
{
...
...
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