diff --git a/dlls/shell32/ebrowser.c b/dlls/shell32/ebrowser.c index 45c62c85b33..0a6010d378e 100644 --- a/dlls/shell32/ebrowser.c +++ b/dlls/shell32/ebrowser.c @@ -1677,14 +1677,14 @@ static HRESULT WINAPI ICommDlgBrowser3_fnGetCurrentFilter(ICommDlgBrowser3 *ifac return S_OK; } -static HRESULT WINAPI ICommDlgBrowser3_fnOnPreviewCreated(ICommDlgBrowser3 *iface, +static HRESULT WINAPI ICommDlgBrowser3_fnOnPreViewCreated(ICommDlgBrowser3 *iface, IShellView *pshv) { ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface); TRACE("%p (%p)\n", This, pshv); if(This->pcdb3_site) - return ICommDlgBrowser3_OnPreviewCreated(This->pcdb3_site, pshv); + return ICommDlgBrowser3_OnPreViewCreated(This->pcdb3_site, pshv); return S_OK; } @@ -1701,7 +1701,7 @@ static const ICommDlgBrowser3Vtbl vt_ICommDlgBrowser3 = { ICommDlgBrowser3_fnGetViewFlags, ICommDlgBrowser3_fnOnColumnClicked, ICommDlgBrowser3_fnGetCurrentFilter, - ICommDlgBrowser3_fnOnPreviewCreated + ICommDlgBrowser3_fnOnPreViewCreated }; /************************************************************************** diff --git a/include/shobjidl.idl b/include/shobjidl.idl index 141ac78975b..5e4da5de28c 100644 --- a/include/shobjidl.idl +++ b/include/shobjidl.idl @@ -1489,7 +1489,7 @@ interface ICommDlgBrowser3 : ICommDlgBrowser2 [out, string, size_is(cchFileSpec)] LPWSTR pszFileSpec, [in] int cchFileSpec); - HRESULT OnPreviewCreated( + HRESULT OnPreViewCreated( [in] IShellView *ppshv); } @@ -1900,7 +1900,7 @@ interface ISearchContext : IUnknown HRESULT GetSearchText( [in] BSTR *pbstrSearchText); HRESULT GetSearchStyle( - [in] BSTR *pdwSearchStyle); + [in] DWORD *pdwSearchStyle); } @@ -2695,6 +2695,7 @@ interface INameSpaceTreeControlCustomDraw : IUnknown HRESULT ItemPrePaint( [in] HDC hdc, [in] RECT *prc, + [in] NSTCCUSTOMDRAW *pnstccdItem, [in, out] COLORREF *pclrText, [in, out] COLORREF *pclrTextBk, [out] LRESULT *plres); @@ -3239,7 +3240,7 @@ interface IFileDialogControlEvents : IUnknown HRESULT OnCheckButtonToggled( [in] IFileDialogCustomize *pfdc, - [in] BOOL dwIDCtl, + [in] DWORD dwIDCtl, [in] BOOL bChecked); HRESULT OnControlActivating( @@ -3557,7 +3558,7 @@ interface ITransferAdviseSink : IUnknown HRESULT ConfirmOverwrite([in] IShellItem *source, [in] IShellItem *dest_parent, [in, string] LPCWSTR name); - HRESULT ConfirmEncryptLoss([in] IShellItem *source); + HRESULT ConfirmEncryptionLoss([in] IShellItem *source); HRESULT FileFailure([in] IShellItem *item, [in, unique, string] LPCWSTR itemname, [in] HRESULT hr,