Commit da21c305 authored by Michael Cronenworth's avatar Michael Cronenworth Committed by Alexandre Julliard

wbemprox: Global variable compatibility update for gcc 10.

parent 388348dd
......@@ -35,6 +35,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(wbemprox);
static HINSTANCE instance;
struct list *table_list;
typedef HRESULT (*fnCreateInstance)( LPVOID *ppObj );
typedef struct
......
......@@ -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
{
......
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