Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
605f2f94
Commit
605f2f94
authored
Jan 17, 2013
by
Austin English
Committed by
Alexandre Julliard
Jan 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add a stub for SHGetSetFolderCustomSettings.
parent
02c199be
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
1 deletion
+35
-1
shell32.spec
dlls/shell32/shell32.spec
+1
-1
shlfolder.c
dlls/shell32/shlfolder.c
+11
-0
shlobj.h
include/shlobj.h
+23
-0
No files found.
dlls/shell32/shell32.spec
View file @
605f2f94
...
...
@@ -259,7 +259,7 @@
701 stdcall CDefFolderMenu_Create2(ptr ptr long ptr ptr ptr long ptr ptr)
704 stdcall -noname GUIDFromStringW(wstr ptr)
709 stdcall SHGetSetFolderCustomSettings(ptr str long)
714 stdcall @(ptr) SHELL32_714 # PathIsTemporaryW
727 stdcall SHGetImageList(long ptr ptr)
730 stdcall -noname RestartDialogEx(long wstr long long)
...
...
dlls/shell32/shlfolder.c
View file @
605f2f94
...
...
@@ -592,3 +592,14 @@ HRESULT WINAPI SHOpenFolderAndSelectItems( PCIDLIST_ABSOLUTE pidlFolder, UINT ci
FIXME
(
"%p %u %p 0x%x: stub
\n
"
,
pidlFolder
,
cidl
,
apidl
,
flags
);
return
E_NOTIMPL
;
}
/***********************************************************************
* SHGetSetFolderCustomSettings
*
* Only in XP (up to SP2) and Server 2003
*/
HRESULT
WINAPI
SHGetSetFolderCustomSettings
(
LPSHFOLDERCUSTOMSETTINGS
fcs
,
LPCSTR
path
,
DWORD
flag
)
{
FIXME
(
"%p %s 0x%x: stub
\n
"
,
fcs
,
path
,
flag
);
return
E_NOTIMPL
;
}
include/shlobj.h
View file @
605f2f94
...
...
@@ -1430,6 +1430,29 @@ int WINAPI SHCreateDirectoryExW(HWND, LPCWSTR, LPSECURITY_ATTRIBUTES);
#define SHCreateDirectoryEx WINELIB_NAME_AW(SHCreateDirectoryEx)
/****************************************************************************
* SHGetSetFolderCustomSettings API
*/
typedef
struct
{
DWORD
dwSize
;
DWORD
dwMask
;
SHELLVIEWID
*
pvid
;
LPWSTR
pszWebViewTemplate
;
DWORD
cchWebViewTemplate
;
LPWSTR
pszWebViewTemplateVersion
;
LPWSTR
pszInfoTip
;
DWORD
cchInfoTip
;
CLSID
*
pclsid
;
DWORD
dwFlags
;
LPWSTR
pszIconFile
;
DWORD
cchIconFile
;
int
iIconIndex
;
LPWSTR
pszLogo
;
DWORD
cchLogo
;
}
SHFOLDERCUSTOMSETTINGS
,
*
LPSHFOLDERCUSTOMSETTINGS
;
HRESULT
WINAPI
SHGetSetFolderCustomSettings
(
LPSHFOLDERCUSTOMSETTINGS
pfcs
,
LPCSTR
pszPath
,
DWORD
dwReadWrite
);
/****************************************************************************
* SHGetSpecialFolderLocation API
*/
HRESULT
WINAPI
SHGetSpecialFolderLocation
(
HWND
hwndOwner
,
int
nFolder
,
LPITEMIDLIST
*
ppidl
);
...
...
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