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
3b63e6a3
Commit
3b63e6a3
authored
Apr 10, 2001
by
Gerard Patel
Committed by
Alexandre Julliard
Apr 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub for OleLoadPictureEx.
parent
3a0c6a94
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+1
-1
olepicture.c
dlls/oleaut32/olepicture.c
+11
-0
No files found.
dlls/oleaut32/oleaut32.spec
View file @
3b63e6a3
...
@@ -301,7 +301,7 @@ debug_channels (ole typelib)
...
@@ -301,7 +301,7 @@ debug_channels (ole typelib)
422 stub OleLoadPictureFile
422 stub OleLoadPictureFile
423 stub OleSavePictureFile
423 stub OleSavePictureFile
424 stub OleLoadPicturePath
424 stub OleLoadPicturePath
425 st
ub
OleLoadPictureEx
425 st
dcall OleLoadPictureEx(ptr long long long long long long ptr)
OleLoadPictureEx
#Win98 and higher (NT4.0sp4)
#Win98 and higher (NT4.0sp4)
426 stub GetRecordInfoFromGuids # stdcall (ptr long long long ptr ptr)
426 stub GetRecordInfoFromGuids # stdcall (ptr long long long ptr ptr)
...
...
dlls/oleaut32/olepicture.c
View file @
3b63e6a3
...
@@ -746,4 +746,15 @@ HRESULT WINAPI OleLoadPicture( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
...
@@ -746,4 +746,15 @@ HRESULT WINAPI OleLoadPicture( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
lpstream
,
lSize
,
fRunmode
,
reed
,
ppvObj
);
lpstream
,
lSize
,
fRunmode
,
reed
,
ppvObj
);
return
S_OK
;
return
S_OK
;
}
}
/***********************************************************************
* OleLoadPictureEx
*/
HRESULT
WINAPI
OleLoadPictureEx
(
LPSTREAM
lpstream
,
LONG
lSize
,
BOOL
fRunmode
,
REFIID
reed
,
DWORD
xsiz
,
DWORD
ysiz
,
DWORD
flags
,
LPVOID
*
ppvObj
)
{
FIXME
(
"(%p,%ld,%d,%p,%lx,%lx,%lx,%p), not implemented
\n
"
,
lpstream
,
lSize
,
fRunmode
,
reed
,
xsiz
,
ysiz
,
flags
,
ppvObj
);
return
S_OK
;
}
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