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