Module: wine Branch: master Commit: 7290dafc46ab93201751e6da19576d1a4aeffee0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7290dafc46ab93201751e6da19...
Author: Michael Karcher wine@mkarcher.dialup.fu-berlin.de Date: Thu Jan 1 11:40:13 2009 +0100
include: Fix out string type from LPCSTR to LPSTR in shobjidl.idl.
---
include/shobjidl.idl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/shobjidl.idl b/include/shobjidl.idl index 9d51361..b05adde 100644 --- a/include/shobjidl.idl +++ b/include/shobjidl.idl @@ -1305,7 +1305,7 @@ interface INewShortcutHookA : IUnknown [in] LPCSTR pcszReferent, [in] HWND hwnd); HRESULT GetReferent( - [out] LPCSTR pcszReferent, + [out] LPSTR pcszReferent, [in] int cchReferent); HRESULT SetFolder( [in] LPCSTR pcszReferent); @@ -1336,7 +1336,7 @@ interface INewShortcutHookW : IUnknown [in] LPCWSTR pcszReferent, [in] HWND hwnd); HRESULT GetReferent( - [out] LPCWSTR pcszReferent, + [out] LPWSTR pcszReferent, [in] int cchReferent); HRESULT SetFolder( [in] LPCWSTR pcszReferent);