Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
359de0a9
Commit
359de0a9
authored
Jan 26, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32/tests: Get rid of strcmpW().
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
280e51e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
prop.c
dlls/mapi32/tests/prop.c
+1
-7
No files found.
dlls/mapi32/tests/prop.c
View file @
359de0a9
...
...
@@ -99,12 +99,6 @@ static ULONG ptTypes[] = {
PT_STRING8
,
PT_BINARY
,
PT_UNICODE
};
static
inline
int
strcmpW
(
const
WCHAR
*
str1
,
const
WCHAR
*
str2
)
{
while
(
*
str1
&&
(
*
str1
==
*
str2
))
{
str1
++
;
str2
++
;
}
return
*
str1
-
*
str2
;
}
static
void
test_PropCopyMore
(
void
)
{
static
char
szHiA
[]
=
"Hi!"
;
...
...
@@ -168,7 +162,7 @@ static void test_PropCopyMore(void)
"PropCopyMore: Ascii string differs
\n
"
);
break
;
case
PT_UNICODE
:
ok
(
strcmpW
(
lpDest
->
Value
.
lpszW
,
lpSrc
->
Value
.
lpszW
)
==
0
,
ok
(
wcscmp
(
lpDest
->
Value
.
lpszW
,
lpSrc
->
Value
.
lpszW
)
==
0
,
"PropCopyMore: Unicode string differs
\n
"
);
break
;
case
PT_BINARY
:
...
...
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