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
08f420d2
Commit
08f420d2
authored
Feb 04, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Add a stub for OleSavePictureFile.
parent
b331c4f9
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 @
08f420d2
...
...
@@ -391,7 +391,7 @@
420 stdcall OleCreateFontIndirect(ptr ptr ptr)
421 stdcall OleTranslateColor(long long long)
422 stub OleLoadPictureFile
423 st
ub OleSavePictureFile
423 st
dcall OleSavePictureFile(ptr wstr)
424 stdcall OleLoadPicturePath(wstr ptr long long ptr ptr)
425 stdcall VarUI4FromI8(int64 ptr)
426 stdcall VarUI4FromUI8(int64 ptr)
...
...
dlls/oleaut32/olepicture.c
View file @
08f420d2
...
...
@@ -2302,6 +2302,15 @@ HRESULT WINAPI OleLoadPictureEx( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
}
/***********************************************************************
* OleSavePictureFile (OLEAUT32.423)
*/
HRESULT
WINAPI
OleSavePictureFile
(
IDispatch
*
picture
,
BSTR
filename
)
{
FIXME
(
"(%p %s): stub
\n
"
,
picture
,
debugstr_w
(
filename
));
return
CTL_E_FILENOTFOUND
;
}
/***********************************************************************
* OleLoadPicturePath (OLEAUT32.424)
*/
HRESULT
WINAPI
OleLoadPicturePath
(
LPOLESTR
szURLorPath
,
LPUNKNOWN
punkCaller
,
...
...
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