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
c1f5f98f
Commit
c1f5f98f
authored
Mar 13, 2024
by
Daniel Lehman
Committed by
Alexandre Julliard
Mar 14, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Return success from GetSizeMax if not dirty.
parent
148db6a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
olepicture.c
dlls/oleaut32/olepicture.c
+2
-1
olepicture.c
dlls/oleaut32/tests/olepicture.c
+0
-1
No files found.
dlls/oleaut32/olepicture.c
View file @
c1f5f98f
...
...
@@ -1882,7 +1882,8 @@ static HRESULT WINAPI OLEPictureImpl_GetSizeMax(IPersistStream *iface, ULARGE_IN
FIXME
(
"(%p), PICTYPE_BITMAP (format UNKNOWN, using BMP?) not implemented!
\n
"
,
This
);
break
;
}
}
}
else
hr
=
S_OK
;
break
;
case
PICTYPE_METAFILE
:
FIXME
(
"(%p), PICTYPE_METAFILE not implemented!
\n
"
,
This
);
...
...
dlls/oleaut32/tests/olepicture.c
View file @
c1f5f98f
...
...
@@ -1262,7 +1262,6 @@ static void test_load_save_bmp(void)
maxsize
.
QuadPart
=
0
;
hr
=
IPersistStream_GetSizeMax
(
src_stream
,
&
maxsize
);
todo_wine
ok
(
hr
==
S_OK
,
"GetSizeMax error %#lx
\n
"
,
hr
);
ok
(
maxsize
.
QuadPart
==
74
,
"expected 74, got %s
\n
"
,
wine_dbgstr_longlong
(
maxsize
.
QuadPart
));
...
...
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