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
97b6221c
Commit
97b6221c
authored
Jul 03, 2017
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 04, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apphelp/tests: Use standard wine_dbgstr_longlong.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1234ae80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
apphelp.c
dlls/apphelp/tests/apphelp.c
+5
-5
No files found.
dlls/apphelp/tests/apphelp.c
View file @
97b6221c
...
...
@@ -64,14 +64,14 @@ static void test_ApphelpCheckShellObject(void)
flags
=
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pApphelpCheckShellObject
(
objects
[
i
],
FALSE
,
&
flags
);
ok
(
res
&&
(
flags
==
0
),
"%s 0: got %d and
0x%x%08x
with 0x%x (expected TRUE and 0)
\n
"
,
wine_dbgstr_guid
(
objects
[
i
]),
res
,
(
ULONG
)(
flags
>>
32
),
(
ULONG
)
flags
,
GetLastError
());
ok
(
res
&&
(
flags
==
0
),
"%s 0: got %d and
%s
with 0x%x (expected TRUE and 0)
\n
"
,
wine_dbgstr_guid
(
objects
[
i
]),
res
,
wine_dbgstr_longlong
(
flags
)
,
GetLastError
());
flags
=
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pApphelpCheckShellObject
(
objects
[
i
],
TRUE
,
&
flags
);
ok
(
res
&&
(
flags
==
0
),
"%s 1: got %d and
0x%x%08x
with 0x%x (expected TRUE and 0)
\n
"
,
wine_dbgstr_guid
(
objects
[
i
]),
res
,
(
ULONG
)(
flags
>>
32
),
(
ULONG
)
flags
,
GetLastError
());
ok
(
res
&&
(
flags
==
0
),
"%s 1: got %d and
%s
with 0x%x (expected TRUE and 0)
\n
"
,
wine_dbgstr_guid
(
objects
[
i
]),
res
,
wine_dbgstr_longlong
(
flags
)
,
GetLastError
());
}
...
...
@@ -86,7 +86,7 @@ static void test_ApphelpCheckShellObject(void)
flags
=
0xdeadbeef
;
SetLastError
(
0xdeadbeef
);
res
=
pApphelpCheckShellObject
(
NULL
,
FALSE
,
&
flags
);
trace
(
"NULL as CLSID*: got %d and
0x%x%08x with 0x%x
\n
"
,
res
,
(
ULONG
)(
flags
>>
32
),
(
ULONG
)
flags
,
GetLastError
());
trace
(
"NULL as CLSID*: got %d and
%s with 0x%x
\n
"
,
res
,
wine_dbgstr_longlong
(
flags
)
,
GetLastError
());
}
}
...
...
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