mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
[WBEMPROX] Global variable compatibility update for gcc 10.
Imported Wine commit da21c305164c3e585e29e20242afc5a31f91989f Signed-off-by: Michael Cronenworth <mike@cchtml.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c6aac2bbfd
commit
93dcc8436c
2 changed files with 4 additions and 2 deletions
|
@ -35,6 +35,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(wbemprox);
|
|||
|
||||
static HINSTANCE instance;
|
||||
|
||||
struct list *table_list;
|
||||
|
||||
typedef HRESULT (*fnCreateInstance)( LPVOID *ppObj );
|
||||
|
||||
typedef struct
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
#include <winnls.h>
|
||||
#endif
|
||||
|
||||
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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue