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
7013f068
Commit
7013f068
authored
Sep 14, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Implement ParseDisplayName() for class moniker.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
04439b7c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
11 deletions
+14
-11
classmoniker.c
dlls/ole32/classmoniker.c
+14
-11
No files found.
dlls/ole32/classmoniker.c
View file @
7013f068
...
@@ -512,18 +512,21 @@ static HRESULT WINAPI ClassMoniker_GetDisplayName(IMoniker *iface,
...
@@ -512,18 +512,21 @@ static HRESULT WINAPI ClassMoniker_GetDisplayName(IMoniker *iface,
return
S_OK
;
return
S_OK
;
}
}
/******************************************************************************
static
HRESULT
WINAPI
ClassMoniker_ParseDisplayName
(
IMoniker
*
iface
,
IBindCtx
*
pbc
,
* ClassMoniker_ParseDisplayName
IMoniker
*
pmkToLeft
,
LPOLESTR
display_name
,
ULONG
*
eaten
,
IMoniker
**
result
)
******************************************************************************/
static
HRESULT
WINAPI
ClassMoniker_ParseDisplayName
(
IMoniker
*
iface
,
IBindCtx
*
pbc
,
IMoniker
*
pmkToLeft
,
LPOLESTR
pszDisplayName
,
ULONG
*
pchEaten
,
IMoniker
**
ppmkOut
)
{
{
FIXME
(
"(%p, %p, %s, %p, %p)
\n
"
,
pbc
,
pmkToLeft
,
debugstr_w
(
pszDisplayName
),
pchEaten
,
ppmkOut
);
IParseDisplayName
*
parser
;
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"%p, %p, %p, %s, %p, %p
\n
"
,
iface
,
pbc
,
pmkToLeft
,
debugstr_w
(
display_name
),
eaten
,
result
);
if
(
SUCCEEDED
(
hr
=
IMoniker_BindToObject
(
iface
,
pbc
,
pmkToLeft
,
&
IID_IParseDisplayName
,
(
void
**
)
&
parser
)))
{
hr
=
IParseDisplayName_ParseDisplayName
(
parser
,
pbc
,
display_name
,
eaten
,
result
);
IParseDisplayName_Release
(
parser
);
}
return
hr
;
}
}
/******************************************************************************
/******************************************************************************
...
...
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