From 7290dafc46ab93201751e6da19576d1a4aeffee0 Mon Sep 17 00:00:00 2001
From: Michael Karcher <wine@mkarcher.dialup.fu-berlin.de>
Date: Thu, 1 Jan 2009 11:40:13 +0100
Subject: [PATCH] include: Fix out string type from LPCSTR to LPSTR in
 shobjidl.idl.

---
 include/shobjidl.idl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/shobjidl.idl b/include/shobjidl.idl
index 9d513617d7..b05adde65b 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);
-- 
2.32.0.93.g670b81a890