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
5989664e
Commit
5989664e
authored
Mar 22, 2016
by
Austin English
Committed by
Alexandre Julliard
Mar 30, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Add OleLoadPictureFile stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
17fcc112
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+1
-1
olepicture.c
dlls/oleaut32/olepicture.c
+9
-0
No files found.
dlls/oleaut32/oleaut32.spec
View file @
5989664e
...
...
@@ -390,7 +390,7 @@
419 stdcall OleCreatePictureIndirect(ptr ptr long ptr)
420 stdcall OleCreateFontIndirect(ptr ptr ptr)
421 stdcall OleTranslateColor(long long long)
422 st
ub OleLoadPictureFile
422 st
dcall OleLoadPictureFile(int128 ptr)
423 stdcall OleSavePictureFile(ptr wstr)
424 stdcall OleLoadPicturePath(wstr ptr long long ptr ptr)
425 stdcall VarUI4FromI8(int64 ptr)
...
...
dlls/oleaut32/olepicture.c
View file @
5989664e
...
...
@@ -2316,6 +2316,15 @@ HRESULT WINAPI OleLoadPictureEx( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
}
/***********************************************************************
* OleLoadPictureFile (OLEAUT32.422)
*/
HRESULT
WINAPI
OleLoadPictureFile
(
VARIANT
file
,
LPDISPATCH
*
picture
)
{
FIXME
(
"(%s %p): stub
\n
"
,
wine_dbgstr_variant
(
&
file
),
picture
);
return
E_NOTIMPL
;
}
/***********************************************************************
* OleSavePictureFile (OLEAUT32.423)
*/
HRESULT
WINAPI
OleSavePictureFile
(
IDispatch
*
picture
,
BSTR
filename
)
...
...
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