Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yoann Laissus
wine
Commits
3b63e6a3
Commit
3b63e6a3
authored
23 years ago
by
Gerard Patel
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stub for OleLoadPictureEx.
parent
3a0c6a94
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/oleaut32/oleaut32.spec
+1
-1
1 addition, 1 deletion
dlls/oleaut32/oleaut32.spec
dlls/oleaut32/olepicture.c
+11
-0
11 additions, 0 deletions
dlls/oleaut32/olepicture.c
with
12 additions
and
1 deletion
dlls/oleaut32/oleaut32.spec
+
1
−
1
View file @
3b63e6a3
...
...
@@ -301,7 +301,7 @@ debug_channels (ole typelib)
422 stub OleLoadPictureFile
423 stub OleSavePictureFile
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)
426 stub GetRecordInfoFromGuids # stdcall (ptr long long long ptr ptr)
...
...
This diff is collapsed.
Click to expand it.
dlls/oleaut32/olepicture.c
+
11
−
0
View file @
3b63e6a3
...
...
@@ -746,4 +746,15 @@ HRESULT WINAPI OleLoadPicture( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
lpstream
,
lSize
,
fRunmode
,
reed
,
ppvObj
);
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment