Commit 6c073fe9 authored by Thomas Faber's avatar Thomas Faber Committed by Alexandre Julliard

include: Do not use out attribute for non-pointer parameters in shdeprecated.idl (MIDL).

parent f962c7e0
...@@ -400,8 +400,8 @@ interface IBrowserService2 : IBrowserService ...@@ -400,8 +400,8 @@ interface IBrowserService2 : IBrowserService
LRESULT WndProcBS( LRESULT WndProcBS(
[in] HWND hwnd, [in] HWND hwnd,
[in] UINT uMsg, [in] UINT uMsg,
[in, out] WPARAM wParam, [in] WPARAM wParam,
[in, out] LPARAM lParam); [in] LPARAM lParam);
HRESULT SetAsDefFolderSettings(); HRESULT SetAsDefFolderSettings();
...@@ -511,8 +511,8 @@ interface IBrowserService2 : IBrowserService ...@@ -511,8 +511,8 @@ interface IBrowserService2 : IBrowserService
[in] HWND hwndBar, [in] HWND hwndBar,
[in] BOOL fBroadcast, [in] BOOL fBroadcast,
[in] UINT uMsg, [in] UINT uMsg,
[in, out] WPARAM wParam, [in] WPARAM wParam,
[in, out] LPARAM lParam); [in] LPARAM lParam);
HRESULT GetFolderSetData( HRESULT GetFolderSetData(
[in, out] struct tagFolderSetData *pfsd); [in, out] struct tagFolderSetData *pfsd);
......
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