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
5a1fb6bd
Commit
5a1fb6bd
authored
Sep 04, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Sep 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Fix the bmpformat test on Windows 7.
parent
5006da3b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
bmpformat.c
dlls/windowscodecs/tests/bmpformat.c
+1
-1
wincodec.idl
include/wincodec.idl
+1
-0
No files found.
dlls/windowscodecs/tests/bmpformat.c
View file @
5a1fb6bd
...
...
@@ -108,7 +108,7 @@ static void test_decode_24bpp(void)
ok
(
count
==
1
,
"unexpected count %u
\n
"
,
count
);
hr
=
IWICBitmapDecoder_GetFrame
(
decoder
,
1
,
&
framedecode
);
ok
(
hr
==
E_INVALIDARG
,
"expected E_INVALIDARG, got
%x
\n
"
,
hr
);
ok
(
hr
==
E_INVALIDARG
||
hr
==
WINCODEC_ERR_FRAMEMISSING
,
"GetFrame returned
%x
\n
"
,
hr
);
hr
=
IWICBitmapDecoder_GetFrame
(
decoder
,
0
,
&
framedecode
);
ok
(
SUCCEEDED
(
hr
),
"GetFrame failed, hr=%x
\n
"
,
hr
);
...
...
include/wincodec.idl
View file @
5a1fb6bd
...
...
@@ -164,6 +164,7 @@ cpp_quote("#define WINCODEC_ERR_NOTINITIALIZED 0x88982f0c")
cpp_quote
(
"#define WINCODEC_ERR_CODECNOTHUMBNAIL 0x88982f44"
)
cpp_quote
(
"#define WINCODEC_ERR_PALETTEUNAVAILABLE 0x88982f45"
)
cpp_quote
(
"#define WINCODEC_ERR_COMPONENTNOTFOUND 0x88982f50"
)
cpp_quote
(
"#define WINCODEC_ERR_FRAMEMISSING 0x88982f62"
)
cpp_quote
(
"#define WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT 0x88982f80"
)
cpp_quote
(
"#define WINCODEC_ERR_UNSUPPORTEDOPERATION 0x88982f81"
)
cpp_quote
(
"#define WINCODEC_ERR_INSUFFICIENTBUFFER 0x88982f8c"
)
...
...
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