Module: wine Branch: master Commit: da21c305164c3e585e29e20242afc5a31f91989f URL: https://source.winehq.org/git/wine.git/?a=commit;h=da21c305164c3e585e29e2024...
Author: Michael Cronenworth mike@cchtml.com Date: Thu Jan 23 17:05:27 2020 -0600
wbemprox: Global variable compatibility update for gcc 10.
Signed-off-by: Michael Cronenworth mike@cchtml.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/wbemprox/main.c | 2 ++ dlls/wbemprox/wbemprox_private.h | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/wbemprox/main.c b/dlls/wbemprox/main.c index d90f4f8cc6..0908441498 100644 --- a/dlls/wbemprox/main.c +++ b/dlls/wbemprox/main.c @@ -35,6 +35,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(wbemprox);
static HINSTANCE instance;
+struct list *table_list; + typedef HRESULT (*fnCreateInstance)( LPVOID *ppObj );
typedef struct diff --git a/dlls/wbemprox/wbemprox_private.h b/dlls/wbemprox/wbemprox_private.h index 9d39a7c92b..9096b392e3 100644 --- a/dlls/wbemprox/wbemprox_private.h +++ b/dlls/wbemprox/wbemprox_private.h @@ -20,8 +20,8 @@ #include "wine/heap.h" #include "wine/list.h"
-IClientSecurity client_security DECLSPEC_HIDDEN; -struct list *table_list DECLSPEC_HIDDEN; +extern IClientSecurity client_security DECLSPEC_HIDDEN; +extern struct list *table_list DECLSPEC_HIDDEN;
enum param_direction {