wbemprox: Global variable compatibility update for gcc 10.
Signed-off-by: Michael Cronenworth <mike@cchtml.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
388348ddbf
commit
da21c30516
|
@ -35,6 +35,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(wbemprox);
|
||||||
|
|
||||||
static HINSTANCE instance;
|
static HINSTANCE instance;
|
||||||
|
|
||||||
|
struct list *table_list;
|
||||||
|
|
||||||
typedef HRESULT (*fnCreateInstance)( LPVOID *ppObj );
|
typedef HRESULT (*fnCreateInstance)( LPVOID *ppObj );
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
|
@ -20,8 +20,8 @@
|
||||||
#include "wine/heap.h"
|
#include "wine/heap.h"
|
||||||
#include "wine/list.h"
|
#include "wine/list.h"
|
||||||
|
|
||||||
IClientSecurity client_security DECLSPEC_HIDDEN;
|
extern IClientSecurity client_security DECLSPEC_HIDDEN;
|
||||||
struct list *table_list DECLSPEC_HIDDEN;
|
extern struct list *table_list DECLSPEC_HIDDEN;
|
||||||
|
|
||||||
enum param_direction
|
enum param_direction
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue