oleaut32: Add a stub for OleSavePictureFile.

oldstable
Austin English 2015-02-04 20:36:22 -06:00 committed by Alexandre Julliard
parent b331c4f931
commit 08f420d2de
2 changed files with 10 additions and 1 deletions

View File

@ -391,7 +391,7 @@
420 stdcall OleCreateFontIndirect(ptr ptr ptr) 420 stdcall OleCreateFontIndirect(ptr ptr ptr)
421 stdcall OleTranslateColor(long long long) 421 stdcall OleTranslateColor(long long long)
422 stub OleLoadPictureFile 422 stub OleLoadPictureFile
423 stub OleSavePictureFile 423 stdcall OleSavePictureFile(ptr wstr)
424 stdcall OleLoadPicturePath(wstr ptr long long ptr ptr) 424 stdcall OleLoadPicturePath(wstr ptr long long ptr ptr)
425 stdcall VarUI4FromI8(int64 ptr) 425 stdcall VarUI4FromI8(int64 ptr)
426 stdcall VarUI4FromUI8(int64 ptr) 426 stdcall VarUI4FromUI8(int64 ptr)

View File

@ -2301,6 +2301,15 @@ HRESULT WINAPI OleLoadPictureEx( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
return hr; return hr;
} }
/***********************************************************************
* 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) * OleLoadPicturePath (OLEAUT32.424)
*/ */