explorerframe: Constify some variables.
This commit is contained in:
parent
7cc3a6774c
commit
49e993c641
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue