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
03a4b8d4
Commit
03a4b8d4
authored
Jun 23, 2008
by
Owen Rudge
Committed by
Alexandre Julliard
Jun 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add support for WantsForDISPLAY and HideAsDeletePerUser to the register_coclasses routine.
parent
c592c6e7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
regsvr.c
dlls/shell32/regsvr.c
+11
-3
No files found.
dlls/shell32/regsvr.c
View file @
03a4b8d4
...
...
@@ -80,8 +80,10 @@ struct regsvr_coclass
/* flags for regsvr_coclass.flags */
#define SHELLEX_MAYCHANGEDEFAULTMENU 0x00000001
#define SHELLFOLDER_WANTSFORPARSING 0x00000002
#define SHELLFOLDER_ATTRIBUTES 0x00000004
#define SHELLFOLDER_CALLFORATTRIBUTES 0x00000008
#define SHELLFOLDER_WANTSFORDISPLAY 0x00000004
#define SHELLFOLDER_ATTRIBUTES 0x00000008
#define SHELLFOLDER_CALLFORATTRIBUTES 0x00000010
#define SHELLFOLDER_HIDEASDELETE 0x00000020
static
HRESULT
register_coclasses
(
struct
regsvr_coclass
const
*
list
);
static
HRESULT
unregister_coclasses
(
struct
regsvr_coclass
const
*
list
);
...
...
@@ -133,9 +135,11 @@ static WCHAR const defaulticon_keyname[] = {
'D'
,
'e'
,
'f'
,
'a'
,
'u'
,
'l'
,
't'
,
'I'
,
'c'
,
'o'
,
'n'
,
0
};
static
char
const
tmodel_valuename
[]
=
"ThreadingModel"
;
static
char
const
wfparsing_valuename
[]
=
"WantsFORPARSING"
;
static
char
const
wfdisplay_valuename
[]
=
"WantsFORDISPLAY"
;
static
char
const
attributes_valuename
[]
=
"Attributes"
;
static
char
const
cfattributes_valuename
[]
=
"CallForAttributes"
;
static
char
const
localized_valuename
[]
=
"LocalizedString"
;
static
char
const
hideasdelete_valuename
[]
=
"HideAsDeletePerUser"
;
/***********************************************************************
* static helper functions
...
...
@@ -333,7 +337,7 @@ static HRESULT register_coclasses(struct regsvr_coclass const *list)
}
if
(
list
->
flags
&
(
SHELLFOLDER_WANTSFORPARSING
|
SHELLFOLDER_
ATTRIBUTES
|
SHELLFOLDER_CALLFORATTRIBUTES
))
(
SHELLFOLDER_WANTSFORPARSING
|
SHELLFOLDER_
WANTSFORDISPLAY
|
SHELLFOLDER_ATTRIBUTES
|
SHELLFOLDER_CALLFORATTRIBUTES
|
SHELLFOLDER_HIDEASDELETE
))
{
HKEY
shellfolder_key
;
...
...
@@ -343,6 +347,10 @@ static HRESULT register_coclasses(struct regsvr_coclass const *list)
if
(
res
!=
ERROR_SUCCESS
)
goto
error_close_clsid_key
;
if
(
list
->
flags
&
SHELLFOLDER_WANTSFORPARSING
)
res
=
RegSetValueExA
(
shellfolder_key
,
wfparsing_valuename
,
0
,
REG_SZ
,
(
const
BYTE
*
)
""
,
1
);
if
(
list
->
flags
&
SHELLFOLDER_WANTSFORDISPLAY
)
res
=
RegSetValueExA
(
shellfolder_key
,
wfdisplay_valuename
,
0
,
REG_SZ
,
(
const
BYTE
*
)
""
,
1
);
if
(
list
->
flags
&
SHELLFOLDER_HIDEASDELETE
)
res
=
RegSetValueExA
(
shellfolder_key
,
hideasdelete_valuename
,
0
,
REG_SZ
,
(
const
BYTE
*
)
""
,
1
);
if
(
list
->
flags
&
SHELLFOLDER_ATTRIBUTES
)
res
=
RegSetValueExA
(
shellfolder_key
,
attributes_valuename
,
0
,
REG_DWORD
,
(
const
BYTE
*
)
&
list
->
dwAttributes
,
sizeof
(
DWORD
));
...
...
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