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
0a7a3be0
Commit
0a7a3be0
authored
Aug 03, 2011
by
Jay Yang
Committed by
Alexandre Julliard
Aug 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Implement SHCreateDefaultContextMenu and CDefFolderMenu_Create2.
parent
efaa8013
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
1 deletion
+7
-1
shell32.spec
dlls/shell32/shell32.spec
+2
-0
shfldr.h
dlls/shell32/shfldr.h
+4
-0
shlmenu.c
dlls/shell32/shlmenu.c
+0
-0
shlfolder.c
dlls/shell32/tests/shlfolder.c
+1
-1
No files found.
dlls/shell32/shell32.spec
View file @
0a7a3be0
...
...
@@ -257,6 +257,7 @@
688 stdcall SHPropStgReadMultiple(ptr long long ptr ptr)
689 stdcall SHPropStgWriteMultiple(ptr ptr long ptr ptr long)
701 stdcall CDefFolderMenu_Create2(ptr ptr long ptr ptr ptr long ptr ptr)
704 stdcall -noname GUIDFromStringW(wstr ptr)
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
...
...
@@ -333,6 +334,7 @@
@ stdcall SHBrowseForFolderW(ptr)
@ stdcall SHChangeNotify (long long ptr ptr)
@ stub SHChangeNotifySuspendResume
@ stdcall SHCreateDefaultContextMenu(ptr ptr ptr)
@ stdcall SHCreateDirectoryExA(long str ptr)
@ stdcall SHCreateDirectoryExW(long wstr ptr)
@ stdcall SHCreateItemFromIDList(ptr ptr ptr)
...
...
dlls/shell32/shfldr.h
View file @
0a7a3be0
...
...
@@ -75,5 +75,9 @@ static inline int SHELL32_GUIDToStringW (REFGUID guid, LPWSTR str)
void
SHELL_FS_ProcessDisplayFilename
(
LPWSTR
szPath
,
DWORD
dwFlags
)
DECLSPEC_HIDDEN
;
BOOL
SHELL_FS_HideExtension
(
LPCWSTR
pwszPath
)
DECLSPEC_HIDDEN
;
HRESULT
SHELL_CreateContextMenu
(
HWND
hwnd
,
IContextMenu
*
system_menu
,
IShellFolder
*
folder
,
LPCITEMIDLIST
folder_pidl
,
LPCITEMIDLIST
*
apidl
,
UINT
cidl
,
const
HKEY
*
aKeys
,
UINT
cKeys
,
REFIID
riid
,
void
**
ppv
)
DECLSPEC_HIDDEN
;
DEFINE_GUID
(
CLSID_UnixFolder
,
0xcc702eb2
,
0x7dc5
,
0x11d9
,
0xc6
,
0x87
,
0x00
,
0x04
,
0x23
,
0x8a
,
0x01
,
0xcd
);
DEFINE_GUID
(
CLSID_UnixDosFolder
,
0x9d20aae8
,
0x0625
,
0x44b0
,
0x9c
,
0xa7
,
0x71
,
0x88
,
0x9c
,
0x22
,
0x54
,
0xd9
);
dlls/shell32/shlmenu.c
View file @
0a7a3be0
This diff is collapsed.
Click to expand it.
dlls/shell32/tests/shlfolder.c
View file @
0a7a3be0
...
...
@@ -4493,7 +4493,7 @@ static void test_SHCreateDefaultContextMenu(void)
{
'\\'
,
't'
,
'e'
,
's'
,
't'
,
'd'
,
'i'
,
'r'
,
'\\'
,
't'
,
'e'
,
's'
,
't'
,
'1'
,
'.'
,
't'
,
'x'
,
't'
,
0
};
if
(
!
pSHCreateDefaultContextMenu
)
{
todo_wine
win_skip
(
"SHCreateDefaultContextMenu missing.
\n
"
);
win_skip
(
"SHCreateDefaultContextMenu missing.
\n
"
);
return
;
}
...
...
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