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
c333402b
Commit
c333402b
authored
Sep 10, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Sep 11, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Constify some variables.
parent
039beff4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
brsfolder.c
dlls/shell32/brsfolder.c
+1
-1
changenotify.c
dlls/shell32/changenotify.c
+1
-1
cpanelfolder.c
dlls/shell32/cpanelfolder.c
+1
-1
shell32_main.h
dlls/shell32/shell32_main.h
+1
-1
No files found.
dlls/shell32/brsfolder.c
View file @
c333402b
...
...
@@ -179,7 +179,7 @@ static void InitializeTreeView( browse_info *info )
IShellFolder_Release
(
lpsfParent
);
}
static
int
GetIcon
(
LPITEMIDLIST
lpi
,
UINT
uFlags
)
static
int
GetIcon
(
LP
C
ITEMIDLIST
lpi
,
UINT
uFlags
)
{
SHFILEINFOW
sfi
;
SHGetFileInfoW
((
LPCWSTR
)
lpi
,
0
,
&
sfi
,
sizeof
(
SHFILEINFOW
),
uFlags
);
...
...
dlls/shell32/changenotify.c
View file @
c333402b
...
...
@@ -105,7 +105,7 @@ static const char * DumpEvent( LONG event )
#undef DUMPEV
}
static
const
char
*
NodeName
(
LPNOTIFICATIONLIST
item
)
static
const
char
*
NodeName
(
const
NOTIFICATIONLIST
*
item
)
{
const
char
*
str
;
WCHAR
path
[
MAX_PATH
];
...
...
dlls/shell32/cpanelfolder.c
View file @
c333402b
...
...
@@ -917,7 +917,7 @@ static const IPersistFolder2Vtbl vt_PersistFolder2 =
ICPanel_PersistFolder2_GetCurFolder
};
HRESULT
CPanel_GetIconLocationW
(
LPITEMIDLIST
pidl
,
HRESULT
CPanel_GetIconLocationW
(
LP
C
ITEMIDLIST
pidl
,
LPWSTR
szIconFile
,
UINT
cchMax
,
int
*
piIndex
)
{
PIDLCPanelStruct
*
pcpanel
=
_ILGetCPanelPointer
(
pidl
);
...
...
dlls/shell32/shell32_main.h
View file @
c333402b
...
...
@@ -99,7 +99,7 @@ HRESULT WINAPI FolderShortcut_Constructor(IUnknown * pUnkOuter, REFIID riid, LPV
HRESULT
WINAPI
MyDocuments_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
WINAPI
RecycleBin_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riif
,
LPVOID
*
ppv
);
HRESULT
WINAPI
ShellFSFolder_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
);
extern
HRESULT
CPanel_GetIconLocationW
(
LPITEMIDLIST
,
LPWSTR
,
UINT
,
int
*
);
extern
HRESULT
CPanel_GetIconLocationW
(
LP
C
ITEMIDLIST
,
LPWSTR
,
UINT
,
int
*
);
HRESULT
WINAPI
CPanel_ExtractIconA
(
LPITEMIDLIST
pidl
,
LPCSTR
pszFile
,
UINT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIconSize
);
HRESULT
WINAPI
CPanel_ExtractIconW
(
LPITEMIDLIST
pidl
,
LPCWSTR
pszFile
,
UINT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIconSize
);
...
...
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