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
6799aaf3
Commit
6799aaf3
authored
Jul 16, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Jul 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Add test for dibs vs. ddbs in IPicture.
parent
4dfcf843
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
olepicture.c
dlls/oleaut32/tests/olepicture.c
+7
-0
No files found.
dlls/oleaut32/tests/olepicture.c
View file @
6799aaf3
...
...
@@ -216,6 +216,13 @@ test_pic_with_stream(LPSTREAM stream, unsigned int imgsize)
ok
(
hres
==
S_OK
,
"IPicture_get_Handle does not return S_OK, but 0x%08x
\n
"
,
hres
);
ok
(
handle
!=
0
,
"IPicture_get_Handle returns a NULL handle, but it should be non NULL
\n
"
);
if
(
handle
)
{
BITMAP
bmp
;
GetObject
((
HGDIOBJ
)
handle
,
sizeof
(
BITMAP
),
&
bmp
);
todo_wine
ok
(
bmp
.
bmBits
!=
0
,
"not a dib
\n
"
);
}
width
=
0
;
hres
=
IPicture_get_Width
(
pic
,
&
width
);
ok
(
hres
==
S_OK
,
"IPicture_get_Width does not return S_OK, but 0x%08x
\n
"
,
hres
);
...
...
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