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
11c19c50
Commit
11c19c50
authored
Mar 05, 2003
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Mar 05, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add few SFGAO_CAN* attributes to supported list.
parent
3377a9c8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
shlfolder.c
dlls/shell32/shlfolder.c
+9
-1
No files found.
dlls/shell32/shlfolder.c
View file @
11c19c50
...
...
@@ -323,14 +323,22 @@ HRESULT SHELL32_GetDisplayNameOfChild (IShellFolder2 * psf,
* mycomputer: 0xb0000154 HASSUBFOLDER | FOLDER | FILESYSANCESTOR
* (seems to be default for shell extensions if no registry entry exists)
*
* win2k:
* folder: 0xF0400177 FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER
* file: 0x40400177 FILESYSTEM | CANMONIKER
* drive 0xF0400154 FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER | CANRENAME (LABEL)
*
* This functions does not set flags!! It only resets flags when nessesary.
*/
HRESULT
SHELL32_GetItemAttributes
(
IShellFolder
*
psf
,
LPITEMIDLIST
pidl
,
LPDWORD
pdwAttributes
)
{
GUID
const
*
clsid
;
DWORD
dwAttributes
;
DWORD
dwSupportedAttr
=
SFGAO_CANLINK
|
/*0x00000004 */
DWORD
dwSupportedAttr
=
SFGAO_CANCOPY
|
/*0x00000001 */
SFGAO_CANMOVE
|
/*0x00000002 */
SFGAO_CANLINK
|
/*0x00000004 */
SFGAO_CANRENAME
|
/*0x00000010 */
SFGAO_CANDELETE
|
/*0x00000020 */
SFGAO_HASPROPSHEET
|
/*0x00000040 */
SFGAO_DROPTARGET
|
/*0x00000100 */
SFGAO_READONLY
|
/*0x00040000 */
...
...
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