shobjidl.idl: Fix some typo's.

Signed-off-by: Mark Jansen <mark.jansen@reactos.org>
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Mark Jansen 2018-01-04 21:14:45 +01:00 committed by Alexandre Julliard
parent 6ab10f2eb0
commit 61b89d2c84
2 changed files with 8 additions and 7 deletions

View File

@ -1677,14 +1677,14 @@ static HRESULT WINAPI ICommDlgBrowser3_fnGetCurrentFilter(ICommDlgBrowser3 *ifac
return S_OK; return S_OK;
} }
static HRESULT WINAPI ICommDlgBrowser3_fnOnPreviewCreated(ICommDlgBrowser3 *iface, static HRESULT WINAPI ICommDlgBrowser3_fnOnPreViewCreated(ICommDlgBrowser3 *iface,
IShellView *pshv) IShellView *pshv)
{ {
ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface); ExplorerBrowserImpl *This = impl_from_ICommDlgBrowser3(iface);
TRACE("%p (%p)\n", This, pshv); TRACE("%p (%p)\n", This, pshv);
if(This->pcdb3_site) if(This->pcdb3_site)
return ICommDlgBrowser3_OnPreviewCreated(This->pcdb3_site, pshv); return ICommDlgBrowser3_OnPreViewCreated(This->pcdb3_site, pshv);
return S_OK; return S_OK;
} }
@ -1701,7 +1701,7 @@ static const ICommDlgBrowser3Vtbl vt_ICommDlgBrowser3 = {
ICommDlgBrowser3_fnGetViewFlags, ICommDlgBrowser3_fnGetViewFlags,
ICommDlgBrowser3_fnOnColumnClicked, ICommDlgBrowser3_fnOnColumnClicked,
ICommDlgBrowser3_fnGetCurrentFilter, ICommDlgBrowser3_fnGetCurrentFilter,
ICommDlgBrowser3_fnOnPreviewCreated ICommDlgBrowser3_fnOnPreViewCreated
}; };
/************************************************************************** /**************************************************************************

View File

@ -1489,7 +1489,7 @@ interface ICommDlgBrowser3 : ICommDlgBrowser2
[out, string, size_is(cchFileSpec)] LPWSTR pszFileSpec, [out, string, size_is(cchFileSpec)] LPWSTR pszFileSpec,
[in] int cchFileSpec); [in] int cchFileSpec);
HRESULT OnPreviewCreated( HRESULT OnPreViewCreated(
[in] IShellView *ppshv); [in] IShellView *ppshv);
} }
@ -1900,7 +1900,7 @@ interface ISearchContext : IUnknown
HRESULT GetSearchText( HRESULT GetSearchText(
[in] BSTR *pbstrSearchText); [in] BSTR *pbstrSearchText);
HRESULT GetSearchStyle( HRESULT GetSearchStyle(
[in] BSTR *pdwSearchStyle); [in] DWORD *pdwSearchStyle);
} }
@ -2695,6 +2695,7 @@ interface INameSpaceTreeControlCustomDraw : IUnknown
HRESULT ItemPrePaint( HRESULT ItemPrePaint(
[in] HDC hdc, [in] HDC hdc,
[in] RECT *prc, [in] RECT *prc,
[in] NSTCCUSTOMDRAW *pnstccdItem,
[in, out] COLORREF *pclrText, [in, out] COLORREF *pclrText,
[in, out] COLORREF *pclrTextBk, [in, out] COLORREF *pclrTextBk,
[out] LRESULT *plres); [out] LRESULT *plres);
@ -3239,7 +3240,7 @@ interface IFileDialogControlEvents : IUnknown
HRESULT OnCheckButtonToggled( HRESULT OnCheckButtonToggled(
[in] IFileDialogCustomize *pfdc, [in] IFileDialogCustomize *pfdc,
[in] BOOL dwIDCtl, [in] DWORD dwIDCtl,
[in] BOOL bChecked); [in] BOOL bChecked);
HRESULT OnControlActivating( HRESULT OnControlActivating(
@ -3557,7 +3558,7 @@ interface ITransferAdviseSink : IUnknown
HRESULT ConfirmOverwrite([in] IShellItem *source, HRESULT ConfirmOverwrite([in] IShellItem *source,
[in] IShellItem *dest_parent, [in] IShellItem *dest_parent,
[in, string] LPCWSTR name); [in, string] LPCWSTR name);
HRESULT ConfirmEncryptLoss([in] IShellItem *source); HRESULT ConfirmEncryptionLoss([in] IShellItem *source);
HRESULT FileFailure([in] IShellItem *item, HRESULT FileFailure([in] IShellItem *item,
[in, unique, string] LPCWSTR itemname, [in, unique, string] LPCWSTR itemname,
[in] HRESULT hr, [in] HRESULT hr,