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
65661831
Commit
65661831
authored
Nov 30, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Dec 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement OLEPictureImpl_GetIDsOfNames.
parent
b3a85a3f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
2 deletions
+26
-2
olepicture.c
dlls/oleaut32/olepicture.c
+26
-2
No files found.
dlls/oleaut32/olepicture.c
View file @
65661831
...
...
@@ -2367,9 +2367,33 @@ static HRESULT WINAPI OLEPictureImpl_GetIDsOfNames(
LCID
lcid
,
DISPID
*
rgDispId
)
{
FIXME
(
"():Stub
\n
"
);
ITypeInfo
*
pTInfo
;
HRESULT
hres
;
return
E_NOTIMPL
;
TRACE
(
"(%p,%s,%p,cNames=%d,lcid=%04x,%p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
rgszNames
,
cNames
,
(
int
)
lcid
,
rgDispId
);
if
(
cNames
==
0
)
{
return
E_INVALIDARG
;
}
else
{
/* retrieve type information */
hres
=
OLEPictureImpl_GetTypeInfo
(
iface
,
0
,
lcid
,
&
pTInfo
);
if
(
FAILED
(
hres
))
{
ERR
(
"GetTypeInfo failed.
\n
"
);
return
hres
;
}
/* convert names to DISPIDs */
hres
=
DispGetIDsOfNames
(
pTInfo
,
rgszNames
,
cNames
,
rgDispId
);
ITypeInfo_Release
(
pTInfo
);
return
hres
;
}
}
/************************************************************************
...
...
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