Michael Cronenworth : dsound: Global variable compatibility update for gcc 10.

Alexandre Julliard julliard at winehq.org
Tue Jun 2 08:11:14 CDT 2020


Module: wine
Branch: stable
Commit: e1e1c7ed4c0a683e9e0565e0fc8a8531a93e48f6
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e1e1c7ed4c0a683e9e0565e0fc8a8531a93e48f6

Author: Michael Cronenworth <mike at cchtml.com>
Date:   Thu Jan 23 17:05:20 2020 -0600

dsound: Global variable compatibility update for gcc 10.

Signed-off-by: Michael Cronenworth <mike at cchtml.com>
Signed-off-by: Andrew Eikum <aeikum at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit fba65a153759dd60f470fe9a787f074cbf0f7ea8)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 dlls/dsound/dsound_private.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/dsound/dsound_private.h b/dlls/dsound/dsound_private.h
index 69c4a2f390..930c3e92ec 100644
--- a/dlls/dsound/dsound_private.h
+++ b/dlls/dsound/dsound_private.h
@@ -188,9 +188,9 @@ HRESULT IDirectSoundBufferImpl_Duplicate(
     IDirectSoundBufferImpl **ppdsb,
     IDirectSoundBufferImpl *pdsb) DECLSPEC_HIDDEN;
 void secondarybuffer_destroy(IDirectSoundBufferImpl *This) DECLSPEC_HIDDEN;
-const IDirectSound3DListenerVtbl ds3dlvt DECLSPEC_HIDDEN;
-const IDirectSound3DBufferVtbl ds3dbvt DECLSPEC_HIDDEN;
-const IKsPropertySetVtbl iksbvt DECLSPEC_HIDDEN;
+extern const IDirectSound3DListenerVtbl ds3dlvt DECLSPEC_HIDDEN;
+extern const IDirectSound3DBufferVtbl ds3dbvt DECLSPEC_HIDDEN;
+extern const IKsPropertySetVtbl iksbvt DECLSPEC_HIDDEN;
 
 HRESULT IKsPrivatePropertySetImpl_Create(REFIID riid, void **ppv) DECLSPEC_HIDDEN;
 




More information about the wine-cvs mailing list