comdlg32: Constify some variables.
This commit is contained in:
parent
918c9d9ac1
commit
65479a2424
|
@ -76,7 +76,7 @@ static const IServiceProviderVtbl IShellBrowserImpl_IServiceProvider_Vtbl;
|
||||||
* Local Prototypes
|
* Local Prototypes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, IShellView *ppshv);
|
static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, const IShellView *ppshv);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Helper functions
|
* Helper functions
|
||||||
|
@ -125,7 +125,7 @@ static void COMDLG32_DumpSBSPFlags(UINT uflags)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void COMDLG32_UpdateCurrentDir(FileOpenDlgInfos *fodInfos)
|
static void COMDLG32_UpdateCurrentDir(const FileOpenDlgInfos *fodInfos)
|
||||||
{
|
{
|
||||||
LPSHELLFOLDER psfDesktop;
|
LPSHELLFOLDER psfDesktop;
|
||||||
STRRET strret;
|
STRRET strret;
|
||||||
|
@ -895,7 +895,7 @@ static HRESULT WINAPI IShellBrowserImpl_ICommDlgBrowser_IncludeObject(ICommDlgBr
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* IShellBrowserImpl_ICommDlgBrowser_OnSelChange
|
* IShellBrowserImpl_ICommDlgBrowser_OnSelChange
|
||||||
*/
|
*/
|
||||||
static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, IShellView *ppshv)
|
static HRESULT IShellBrowserImpl_ICommDlgBrowser_OnSelChange(ICommDlgBrowser *iface, const IShellView *ppshv)
|
||||||
{
|
{
|
||||||
FileOpenDlgInfos *fodInfos;
|
FileOpenDlgInfos *fodInfos;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue