Commit 49e993c6 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

explorerframe: Constify some variables.

parent 7cc3a677
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment