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
cbf06f4d
Commit
cbf06f4d
authored
Oct 28, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Constify some variables.
parent
656a11b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
shfldr.h
dlls/shell32/shfldr.h
+1
-1
shfldr_fs.c
dlls/shell32/shfldr_fs.c
+2
-2
No files found.
dlls/shell32/shfldr.h
View file @
cbf06f4d
...
...
@@ -70,7 +70,7 @@ static inline int SHELL32_GUIDToStringW (REFGUID guid, LPWSTR str)
}
void
SHELL_FS_ProcessDisplayFilename
(
LPWSTR
szPath
,
DWORD
dwFlags
);
BOOL
SHELL_FS_HideExtension
(
LPWSTR
pwszPath
);
BOOL
SHELL_FS_HideExtension
(
LP
C
WSTR
pwszPath
);
DEFINE_GUID
(
CLSID_UnixFolder
,
0xcc702eb2
,
0x7dc5
,
0x11d9
,
0xc6
,
0x87
,
0x00
,
0x04
,
0x23
,
0x8a
,
0x01
,
0xcd
);
DEFINE_GUID
(
CLSID_UnixDosFolder
,
0x9d20aae8
,
0x0625
,
0x44b0
,
0x9c
,
0xa7
,
0x71
,
0x88
,
0x9c
,
0x22
,
0x54
,
0xd9
);
dlls/shell32/shfldr_fs.c
View file @
cbf06f4d
...
...
@@ -712,7 +712,7 @@ static const WCHAR NeverShowExtW[] = { 'N','e','v','e','r','S','h','o','w','E',
* TRUE, if the filename's extension should be hidden
* FALSE, otherwise.
*/
BOOL
SHELL_FS_HideExtension
(
LPWSTR
szPath
)
BOOL
SHELL_FS_HideExtension
(
LP
C
WSTR
szPath
)
{
HKEY
hKey
;
DWORD
dwData
;
...
...
@@ -1170,7 +1170,7 @@ ISFHelper_fnAddFolder (ISFHelper * iface, HWND hwnd, LPCWSTR pwszName,
* Builds a list of paths like the one used in SHFileOperation from a table of
* PIDLs relative to the given base folder
*/
static
WCHAR
*
build_paths_list
(
LPCWSTR
wszBasePath
,
int
cidl
,
LPCITEMIDLIST
*
pidls
)
static
WCHAR
*
build_paths_list
(
LPCWSTR
wszBasePath
,
int
cidl
,
const
LPCITEMIDLIST
*
pidls
)
{
WCHAR
*
wszPathsList
;
WCHAR
*
wszListPos
;
...
...
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