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
3174ea94
Commit
3174ea94
authored
May 15, 2011
by
Austin English
Committed by
Alexandre Julliard
May 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add a stub for SHOpenFolderAndSelectItems.
parent
2bfa358d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shlfolder.c
dlls/shell32/shlfolder.c
+12
-0
No files found.
dlls/shell32/shell32.spec
View file @
3174ea94
...
...
@@ -392,6 +392,7 @@
@ stdcall SHIsFileAvailableOffline(wstr ptr)
@ stdcall SHLoadInProc(long)
@ stdcall SHLoadNonloadedIconOverlayIdentifiers()
@ stdcall SHOpenFolderAndSelectItems(ptr long ptr long)
@ stdcall SHParseDisplayName(wstr ptr ptr long ptr)
@ stdcall SHPathPrepareForWriteA(long ptr str long)
@ stdcall SHPathPrepareForWriteW(long ptr wstr long)
...
...
dlls/shell32/shlfolder.c
View file @
3174ea94
...
...
@@ -580,3 +580,15 @@ HRESULT WINAPI SHCreateLinks( HWND hWnd, LPCSTR lpszDir, LPDATAOBJECT lpDataObje
FIXME
(
"%p %s %p %08x %p
\n
"
,
hWnd
,
lpszDir
,
lpDataObject
,
uFlags
,
lppidlLinks
);
return
E_NOTIMPL
;
}
/***********************************************************************
* SHOpenFolderAndSelectItems
*
* Added in XP.
*/
HRESULT
WINAPI
SHOpenFolderAndSelectItems
(
PCIDLIST_ABSOLUTE
pidlFolder
,
UINT
cidl
,
PCUITEMID_CHILD_ARRAY
*
apidl
,
DWORD
flags
)
{
FIXME
(
"%p %u %p 0x%x: stub
\n
"
,
pidlFolder
,
cidl
,
apidl
,
flags
);
return
E_NOTIMPL
;
}
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