webservices: Global variable compatibility update for gcc 10.

Signed-off-by: Michael Cronenworth <mike@cchtml.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit bc51c5d589)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
stable
Michael Cronenworth 2020-01-23 17:05:28 -06:00 committed by Michael Stefaniuc
parent d03186481f
commit 8405a5ebba
1 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@
#include "winhttp.h"
_locale_t c_locale DECLSPEC_HIDDEN;
extern _locale_t c_locale DECLSPEC_HIDDEN;
#define STREAM_BUFSIZE 4096
@ -50,8 +50,8 @@ struct dictionary
ULONG current_sequence;
ULONG *sequence;
};
struct dictionary dict_builtin DECLSPEC_HIDDEN;
const struct dictionary dict_builtin_static DECLSPEC_HIDDEN;
extern struct dictionary dict_builtin DECLSPEC_HIDDEN;
extern const struct dictionary dict_builtin_static DECLSPEC_HIDDEN;
int find_string( const struct dictionary *, const unsigned char *, ULONG, ULONG * ) DECLSPEC_HIDDEN;
HRESULT insert_string( struct dictionary *, unsigned char *, ULONG, int, ULONG * ) DECLSPEC_HIDDEN;