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
49e993c6
Commit
49e993c6
authored
Oct 02, 2010
by
Andrew Talbot
Committed by
Alexandre Julliard
Oct 04, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explorerframe: Constify some variables.
parent
7cc3a677
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
explorerframe_main.c
dlls/explorerframe/explorerframe_main.c
+1
-1
nstc.c
dlls/explorerframe/nstc.c
+1
-1
No files found.
dlls/explorerframe/explorerframe_main.c
View file @
49e993c6
...
...
@@ -211,7 +211,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **ppv)
/*************************************************************************
* Register/Unregister DLL, based on shdocvw/factory.c
*/
static
HRESULT
reg_install
(
LPCSTR
section
,
STRTABLEA
*
strtable
)
static
HRESULT
reg_install
(
LPCSTR
section
,
const
STRTABLEA
*
strtable
)
{
HRESULT
(
WINAPI
*
pRegInstall
)(
HMODULE
hm
,
LPCSTR
pszSection
,
const
STRTABLEA
*
pstTable
);
HMODULE
hadvpack
;
...
...
dlls/explorerframe/nstc.c
View file @
49e993c6
...
...
@@ -422,7 +422,7 @@ static void collapse_all(NSTC2Impl *This, HTREEITEM node)
if
(
next
)
collapse_all
(
This
,
next
);
}
static
HTREEITEM
treeitem_from_point
(
NSTC2Impl
*
This
,
POINT
*
pt
,
UINT
*
hitflag
)
static
HTREEITEM
treeitem_from_point
(
NSTC2Impl
*
This
,
const
POINT
*
pt
,
UINT
*
hitflag
)
{
TVHITTESTINFO
tviht
;
tviht
.
pt
.
x
=
pt
->
x
;
...
...
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