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
3aebdbb6
Commit
3aebdbb6
authored
Jan 22, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Jan 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Stub implementation of IEParseDisplayNameWithBCW.
parent
337067a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
shdocvw.spec
dlls/shdocvw/shdocvw.spec
+1
-1
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+10
-0
No files found.
dlls/shdocvw/shdocvw.spec
View file @
3aebdbb6
...
...
@@ -89,7 +89,7 @@
215 stub -noname GetSearchAssistantUrlA
216 stub -noname GetDefaultInternetSearchUrlW
217 stub -noname GetDefaultInternetSearchUrlA
218 st
ub -noname IEParseDisplayNameWithBCW
218 st
dcall -noname IEParseDisplayNameWithBCW(long wstr ptr ptr)
219 stub -noname IEILIsEqual
220 stub @
221 stub -noname IECreateFromPathCPWithBCA
...
...
dlls/shdocvw/shdocvw_main.c
View file @
3aebdbb6
...
...
@@ -396,3 +396,13 @@ DWORD WINAPI ParseURLFromOutsideSourceA(LPCSTR url, LPSTR out, LPDWORD plen, LPD
TRACE
(
"=> %d
\n
"
,
res
);
return
res
;
}
/******************************************************************
* IEParseDisplayNameWithBCW (SHDOCVW.218)
*/
HRESULT
WINAPI
IEParseDisplayNameWithBCW
(
DWORD
codepage
,
LPCWSTR
lpszDisplayName
,
LPBC
pbc
,
LPITEMIDLIST
*
ppidl
)
{
/* Guessing at parameter 3 based on IShellFolder's ParseDisplayName */
FIXME
(
"stub: 0x%x %s %p %p
\n
"
,
codepage
,
debugstr_w
(
lpszDisplayName
),
pbc
,
ppidl
);
return
E_FAIL
;
}
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