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
c0e2c5ae
Commit
c0e2c5ae
authored
Dec 03, 2002
by
Alberto Massari
Committed by
Alexandre Julliard
Dec 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SHGetSetSettings has now the right signature and the expected behavior
when the user is asking to get the current settings.
parent
25304d0a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
3 deletions
+47
-3
shell32.spec
dlls/shell32/shell32.spec
+1
-1
shellord.c
dlls/shell32/shellord.c
+9
-2
shlobj.h
include/shlobj.h
+37
-0
No files found.
dlls/shell32/shell32.spec
View file @
c0e2c5ae
...
...
@@ -59,7 +59,7 @@
65 stub InvalidateDriveType
66 stdcall IsNetDrive(long) IsNetDrive
67 stdcall Shell_MergeMenus (long long long long long long) Shell_MergeMenus
68 stdcall SHGetSetSettings(
long
long long) SHGetSetSettings
68 stdcall SHGetSetSettings(
ptr
long long) SHGetSetSettings
69 stub SHGetNetResource
70 stdcall SHCreateDefClassObject(long long long long long)SHCreateDefClassObject
71 stdcall Shell_GetImageList(ptr ptr) Shell_GetImageList
...
...
dlls/shell32/shellord.c
View file @
c0e2c5ae
...
...
@@ -174,9 +174,16 @@ BOOL WINAPI GetFileNameFromBrowse(
/*************************************************************************
* SHGetSetSettings [SHELL32.68]
*/
VOID
WINAPI
SHGetSetSettings
(
DWORD
x
,
DWORD
y
,
DWORD
z
)
VOID
WINAPI
SHGetSetSettings
(
LPSHELLSTATE
lpss
,
DWORD
dwMask
,
BOOL
bSet
)
{
FIXME
(
"0x%08lx 0x%08lx 0x%08lx
\n
"
,
x
,
y
,
z
);
if
(
bSet
)
{
FIXME
(
"%p 0x%08lx TRUE
\n
"
,
lpss
,
dwMask
);
}
else
{
SHGetSettings
((
LPSHELLFLAGSTATE
)
lpss
,
dwMask
);
}
}
/*************************************************************************
...
...
include/shlobj.h
View file @
c0e2c5ae
...
...
@@ -380,6 +380,43 @@ typedef struct _SHELLVIEWDATA /* idl */
DWORD
WINAPI
SHGetMalloc
(
LPMALLOC
*
lpmal
)
;
/**********************************************************************
* SHGetSetSettings ()
*/
typedef
struct
{
BOOL
fShowAllObjects
:
1
;
BOOL
fShowExtensions
:
1
;
BOOL
fNoConfirmRecycle
:
1
;
BOOL
fShowSysFiles
:
1
;
BOOL
fShowCompColor
:
1
;
BOOL
fDoubleClickInWebView
:
1
;
BOOL
fDesktopHTML
:
1
;
BOOL
fWin95Classic
:
1
;
BOOL
fDontPrettyPath
:
1
;
BOOL
fShowAttribCol
:
1
;
BOOL
fMapNetDrvBtn
:
1
;
BOOL
fShowInfoTip
:
1
;
BOOL
fHideIcons
:
1
;
BOOL
fWebView
:
1
;
BOOL
fFilter
:
1
;
BOOL
fShowSuperHidden
:
1
;
BOOL
fNoNetCrawling
:
1
;
DWORD
dwWin95Unused
;
UINT
uWin95Unused
;
LONG
lParamSort
;
int
iSortDirection
;
UINT
version
;
UINT
uNotUsed
;
BOOL
fSepProcess
:
1
;
BOOL
fStartPanelOn
:
1
;
BOOL
fShowStartPage
:
1
;
UINT
fSpareFlags
:
13
;
}
SHELLSTATE
,
*
LPSHELLSTATE
;
/**********************************************************************
* SHGetSettings ()
*/
typedef
struct
...
...
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