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
92246095
Commit
92246095
authored
Jun 26, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Jun 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Handle shell: urls internal in ParseDisplayName instead of passing them to shdocvw.
parent
b44596ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
shfldr_desktop.c
dlls/shell32/shfldr_desktop.c
+13
-1
No files found.
dlls/shell32/shfldr_desktop.c
View file @
92246095
...
...
@@ -187,7 +187,19 @@ static HRESULT WINAPI ISF_Desktop_fnParseDisplayName (IShellFolder2 * iface,
}
else
if
(
strchrW
(
lpszDisplayName
,
':'
))
{
return
IEParseDisplayNameWithBCW
(
CP_ACP
,
lpszDisplayName
,
pbc
,
ppidl
);
PARSEDURLW
urldata
;
urldata
.
cbSize
=
sizeof
(
urldata
);
ParseURLW
(
lpszDisplayName
,
&
urldata
);
if
(
urldata
.
nScheme
==
URL_SCHEME_SHELL
)
/* handle shell: urls */
{
TRACE
(
"-- shell url: %s
\n
"
,
debugstr_w
(
urldata
.
pszSuffix
));
SHCLSIDFromStringW
(
urldata
.
pszSuffix
+
2
,
&
clsid
);
pidlTemp
=
_ILCreateGuid
(
PT_GUID
,
&
clsid
);
}
else
return
IEParseDisplayNameWithBCW
(
CP_ACP
,
lpszDisplayName
,
pbc
,
ppidl
);
}
else
{
...
...
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