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
ee7e4601
Commit
ee7e4601
authored
Apr 10, 1999
by
Juergen Schmied
Committed by
Alexandre Julliard
Apr 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ILLoadFromString and SHGetSettings implemented.
parent
ae2d9a72
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
27 deletions
+45
-27
shlobj.h
include/shlobj.h
+43
-25
shell32.spec
relay32/shell32.spec
+2
-2
No files found.
include/shlobj.h
View file @
ee7e4601
...
...
@@ -372,29 +372,6 @@ typedef struct _SHELLVIEWDATA /* idl */
DWORD
viewmode
;
/* NF_* enum */
}
SHELLVIEWDATA
,
*
LPSHELLVIEWDATA
;
/*
The shell keeps track of some per-user state to handle display
options that is of majorinterest to ISVs.
The key one requested right now is "DoubleClickInWebView".
*/
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
;
UINT
fRestFlags
:
3
;
}
SHELLFLAGSTATE
,
*
LPSHELLFLAGSTATE
;
DWORD
WINAPI
SHGetMalloc
(
LPMALLOC
*
lpmal
)
;
/****************************************************************************
...
...
@@ -432,8 +409,49 @@ typedef void (CALLBACK * LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST
#define ABM_SETAUTOHIDEBAR 0x00000008
#define ABM_WINDOWPOSCHANGED 0x00000009
#define ABS_AUTOHIDE 0x00000001
#define ABS_ALWAYSONTOP 0x00000002
/**********************************************************************
* SHGetSettings ()
*/
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
;
UINT
fRestFlags
:
3
;
}
SHELLFLAGSTATE
,
*
LPSHELLFLAGSTATE
;
void
WINAPI
SHGetSettings
(
LPSHELLFLAGSTATE
lpsfs
,
DWORD
dwMask
);
#define SSF_SHOWALLOBJECTS 0x0001
#define SSF_SHOWEXTENSIONS 0x0002
#define SSF_SHOWCOMPCOLOR 0x0008
#define SSF_SHOWSYSFILES 0x0020
#define SSF_DOUBLECLICKINWEBVIEW 0x0080
#define SSF_SHOWATTRIBCOL 0x0100
#define SSF_DESKTOPHTML 0x0200
#define SSF_WIN95CLASSIC 0x0400
#define SSF_DONTPRETTYPATH 0x0800
#define SSF_SHOWINFOTIP 0x2000
#define SSF_MAPNETDRVBUTTON 0x1000
#define SSF_NOCONFIRMRECYCLE 0x8000
#define SSF_HIDEICONS 0x4000
#define ABS_AUTOHIDE 0x00000001
#define ABS_ALWAYSONTOP 0x00000002
/**********************************************************************/
#undef PURE
#undef FAR
#undef THIS
...
...
relay32/shell32.spec
View file @
ee7e4601
...
...
@@ -31,7 +31,7 @@ init Shell32LibMain
23 stdcall ILIsParent (long long long) ILIsParent
24 stdcall ILFindChild (long long) ILFindChild
25 stdcall ILCombine(ptr ptr) ILCombine
26 st
ub ILLoadFromStream@8
26 st
dcall ILLoadFromStream (long long) ILLoadFromStream
27 stub ILSaveToStream@8
28 stdcall SHILCreateFromPath (long long long) SHILCreateFromPathAW
29 stdcall PathIsRoot(ptr) PathIsRootAW
...
...
@@ -73,7 +73,7 @@ init Shell32LibMain
65 stub InvalidateDriveType
66 stub IsNetDrive
67 stdcall Shell_MergeMenus (long long long long long long) Shell_MergeMenus
68 stdcall SHGetSettings(long long
long
) SHGetSettings
68 stdcall SHGetSettings(long long) SHGetSettings
69 stub SHGetNetResource
70 stub SHCreateDefClassObject
71 stdcall Shell_GetImageList(ptr ptr) Shell_GetImageList
...
...
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