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
946f3f99
Commit
946f3f99
authored
Apr 29, 2009
by
Stefan Leichter
Committed by
Alexandre Julliard
Apr 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Stub for SHParseDisplayName.
parent
445567ea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
pidl.c
dlls/shell32/pidl.c
+11
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shlobj.h
include/shlobj.h
+1
-0
No files found.
dlls/shell32/pidl.c
View file @
946f3f99
...
...
@@ -1320,6 +1320,17 @@ HRESULT WINAPI SHBindToParent(LPCITEMIDLIST pidl, REFIID riid, LPVOID *ppv, LPCI
return
hr
;
}
/*************************************************************************
* SHParseDisplayName [SHELL32.@]
*/
HRESULT
WINAPI
SHParseDisplayName
(
LPCWSTR
name
,
IBindCtx
*
bindctx
,
LPITEMIDLIST
*
pidlist
,
SFGAOF
attr_in
,
SFGAOF
*
attr_out
)
{
FIXME
(
"%s %p %p %d %p stub!
\n
"
,
debugstr_w
(
name
),
bindctx
,
pidlist
,
attr_in
,
attr_out
);
if
(
pidlist
)
*
pidlist
=
NULL
;
return
E_NOTIMPL
;
}
/**************************************************************************
*
* internal functions
...
...
dlls/shell32/shell32.spec
View file @
946f3f99
...
...
@@ -373,6 +373,7 @@
@ stdcall SHIsFileAvailableOffline(wstr ptr)
@ stdcall SHLoadInProc(long)
@ stdcall SHLoadNonloadedIconOverlayIdentifiers()
@ stdcall SHParseDisplayName(wstr ptr ptr long ptr)
@ stdcall SHPathPrepareForWriteA(long ptr str long)
@ stdcall SHPathPrepareForWriteW(long ptr wstr long)
@ stdcall SHQueryRecycleBinA(str ptr)
...
...
include/shlobj.h
View file @
946f3f99
...
...
@@ -64,6 +64,7 @@ BOOL WINAPI SHGetPathFromIDListW(LPCITEMIDLIST,LPWSTR);
INT
WINAPI
SHHandleUpdateImage
(
LPCITEMIDLIST
);
HRESULT
WINAPI
SHILCreateFromPath
(
LPCWSTR
,
LPITEMIDLIST
*
,
DWORD
*
);
HRESULT
WINAPI
SHLoadOLE
(
LPARAM
);
HRESULT
WINAPI
SHParseDisplayName
(
LPCWSTR
,
IBindCtx
*
,
LPITEMIDLIST
*
,
SFGAOF
,
SFGAOF
*
);
HRESULT
WINAPI
SHPathPrepareForWriteA
(
HWND
,
IUnknown
*
,
LPCSTR
,
DWORD
);
HRESULT
WINAPI
SHPathPrepareForWriteW
(
HWND
,
IUnknown
*
,
LPCWSTR
,
DWORD
);
#define SHPathPrepareForWrite WINELIB_NAME_AW(SHPathPrepareForWrite);
...
...
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