Commit 7290dafc authored by Michael Karcher's avatar Michael Karcher Committed by Alexandre Julliard

include: Fix out string type from LPCSTR to LPSTR in shobjidl.idl.

parent a9abbf90
...@@ -1305,7 +1305,7 @@ interface INewShortcutHookA : IUnknown ...@@ -1305,7 +1305,7 @@ interface INewShortcutHookA : IUnknown
[in] LPCSTR pcszReferent, [in] LPCSTR pcszReferent,
[in] HWND hwnd); [in] HWND hwnd);
HRESULT GetReferent( HRESULT GetReferent(
[out] LPCSTR pcszReferent, [out] LPSTR pcszReferent,
[in] int cchReferent); [in] int cchReferent);
HRESULT SetFolder( HRESULT SetFolder(
[in] LPCSTR pcszReferent); [in] LPCSTR pcszReferent);
...@@ -1336,7 +1336,7 @@ interface INewShortcutHookW : IUnknown ...@@ -1336,7 +1336,7 @@ interface INewShortcutHookW : IUnknown
[in] LPCWSTR pcszReferent, [in] LPCWSTR pcszReferent,
[in] HWND hwnd); [in] HWND hwnd);
HRESULT GetReferent( HRESULT GetReferent(
[out] LPCWSTR pcszReferent, [out] LPWSTR pcszReferent,
[in] int cchReferent); [in] int cchReferent);
HRESULT SetFolder( HRESULT SetFolder(
[in] LPCWSTR pcszReferent); [in] LPCWSTR pcszReferent);
......
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